container-server/proxy/autoconfig/mail/config-v1.1.template.xml
Carsten Sprung 45cdb03520 cleanup
+ remove unecessary DB configs
+ add readme
+ rename templates
2019-12-07 23:40:51 +01:00

20 lines
802 B
XML

<clientConfig version="1.1">
<emailProvider id="${BASE_DOMAIN}">
<domain>${BASE_DOMAIN}</domain>
<displayName>${BASE_DOMAIN} Mail</displayName>
<incomingServer type="imap">
<hostname>mail.${BASE_DOMAIN}</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mail.${BASE_DOMAIN}</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
</emailProvider>
</clientConfig>