container-server/services/proxy/autoconfig/mail/config-v1.1.template.xml
Carsten Sprung ecfbce28d3 setup-docs (#1)
- Add documentation about host setup
- Refactor task files
- Improve documentation

Reviewed-on: carsten/docker-server#1
2022-11-13 00:10:26 +00: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>