Loading README.md +1 −0 Original line number Diff line number Diff line Loading @@ -125,6 +125,7 @@ CNAME | autoconfig.yourdomain.com | mail.yourdomain.com | CNAME | autodiscover.yourdomain.com | mail.yourdomain.com | - CNAME | spam.yourdomain.com | mail.yourdomain.com | - CNAME | welcome.yourdomain.com | mail.yourdomain.com | - CNAME | mta-sts.yourdomain.com | mail.yourdomain.com | - ================================================================================================================================= ================================================================================================================================= Loading config/autodiscover/xml/autodiscover-error.xml.tera 0 → 100644 +10 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> <Response> <Error Time="{{ time }}" Id="{{ id }}"> <ErrorCode>601</ErrorCode> <Message>Provider is not available</Message> <DebugData /> </Error> </Response> </Autodiscover> config/autodiscover/xml/autodiscover-mobilesync.xml.tera 0 → 100644 +19 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8" ?> <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006"> <Culture>en:en</Culture> <User> <DisplayName>{{ display_name }}</DisplayName> <EMailAddress>{{ email_address }}</EMailAddress> </User> <Action> <Settings> <Server> <Type>MobileSync</Type> <Url>https://example.org/TODOmobilesyncURL</Url> <Name>TODO: Mobile sync name</Name> </Server> </Settings> </Action> </Response> </Autodiscover> config/autodiscover/xml/autodiscover.xml.tera 0 → 100644 +32 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8" ?> <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a"> <Account> <AccountType>email</AccountType> <Action>settings</Action> <Protocol> <Type>IMAP</Type> <Server>{{ imap_hostname }}</Server> <Port>993</Port> <DomainRequired>on</DomainRequired> <DomainName>{{ domain }}</DomainName> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> <Protocol> <Type>SMTP</Type> <Server>{{ smtp_hostname }}</Server> <Port>587</Port> <DomainRequired>on</DomainRequired> <DomainName>{{ domain }}</DomainName> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> </Account> </Response> </Autodiscover> config/autodiscover/xml/config-v1.1.xml.tera 0 → 100644 +33 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="UTF-8"?> <clientConfig version="1.1"> <emailProvider id="{{ domain }}"> <domain>{{ domain }}</domain> <displayName>{{ display_name }}</displayName> <displayShortName>%EMAILLOCALPART%</displayShortName> <incomingServer type="imap"> <hostname>{{ imap_hostname }}</hostname> <port>993</port> <socketType>SSL</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </incomingServer> <incomingServer type="imap"> <hostname>{{ imap_hostname }}</hostname> <port>143</port> <socketType>STARTTLS</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </incomingServer> <outgoingServer type="smtp"> <hostname>{{ smtp_hostname }}</hostname> <port>587</port> <socketType>STARTTLS</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </outgoingServer> </emailProvider> </clientConfig> Loading
README.md +1 −0 Original line number Diff line number Diff line Loading @@ -125,6 +125,7 @@ CNAME | autoconfig.yourdomain.com | mail.yourdomain.com | CNAME | autodiscover.yourdomain.com | mail.yourdomain.com | - CNAME | spam.yourdomain.com | mail.yourdomain.com | - CNAME | welcome.yourdomain.com | mail.yourdomain.com | - CNAME | mta-sts.yourdomain.com | mail.yourdomain.com | - ================================================================================================================================= ================================================================================================================================= Loading
config/autodiscover/xml/autodiscover-error.xml.tera 0 → 100644 +10 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> <Response> <Error Time="{{ time }}" Id="{{ id }}"> <ErrorCode>601</ErrorCode> <Message>Provider is not available</Message> <DebugData /> </Error> </Response> </Autodiscover>
config/autodiscover/xml/autodiscover-mobilesync.xml.tera 0 → 100644 +19 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8" ?> <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006"> <Culture>en:en</Culture> <User> <DisplayName>{{ display_name }}</DisplayName> <EMailAddress>{{ email_address }}</EMailAddress> </User> <Action> <Settings> <Server> <Type>MobileSync</Type> <Url>https://example.org/TODOmobilesyncURL</Url> <Name>TODO: Mobile sync name</Name> </Server> </Settings> </Action> </Response> </Autodiscover>
config/autodiscover/xml/autodiscover.xml.tera 0 → 100644 +32 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8" ?> <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a"> <Account> <AccountType>email</AccountType> <Action>settings</Action> <Protocol> <Type>IMAP</Type> <Server>{{ imap_hostname }}</Server> <Port>993</Port> <DomainRequired>on</DomainRequired> <DomainName>{{ domain }}</DomainName> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> <Protocol> <Type>SMTP</Type> <Server>{{ smtp_hostname }}</Server> <Port>587</Port> <DomainRequired>on</DomainRequired> <DomainName>{{ domain }}</DomainName> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> </Account> </Response> </Autodiscover>
config/autodiscover/xml/config-v1.1.xml.tera 0 → 100644 +33 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="UTF-8"?> <clientConfig version="1.1"> <emailProvider id="{{ domain }}"> <domain>{{ domain }}</domain> <displayName>{{ display_name }}</displayName> <displayShortName>%EMAILLOCALPART%</displayShortName> <incomingServer type="imap"> <hostname>{{ imap_hostname }}</hostname> <port>993</port> <socketType>SSL</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </incomingServer> <incomingServer type="imap"> <hostname>{{ imap_hostname }}</hostname> <port>143</port> <socketType>STARTTLS</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </incomingServer> <outgoingServer type="smtp"> <hostname>{{ smtp_hostname }}</hostname> <port>587</port> <socketType>STARTTLS</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </outgoingServer> </emailProvider> </clientConfig>