container-server/services/proxy/autoconfig/mail/config-v1.1.template.xml
2023-09-13 22:33:47 +02:00

22 lines
845 B
XML

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