container-server/services/proxy/autoconfig/mail/config-v1.1.template.xml

21 lines
807 B
XML
Raw Normal View History

2019-11-10 15:22:28 +01:00
<clientConfig version="1.1">
2019-11-26 21:20:43 +01:00
<emailProvider id="${BASE_DOMAIN}">
<domain>${BASE_DOMAIN}</domain>
<displayName>${BASE_DOMAIN} Mail</displayName>
2019-11-10 15:22:28 +01:00
<incomingServer type="imap">
2023-08-12 14:12:21 +02:00
<hostname>post.${BASE_DOMAIN}</hostname>
<port>143</port>
<socketType>STARTTLS</socketType>
2019-11-10 15:22:28 +01:00
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
2023-08-12 14:12:21 +02:00
<hostname>post.${BASE_DOMAIN}</hostname>
2019-11-10 15:22:28 +01:00
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
</emailProvider>
</clientConfig>