20 lines
802 B
Text
20 lines
802 B
Text
<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>
|