forked from infra/ansible
42 lines
1.5 KiB
Django/Jinja
42 lines
1.5 KiB
Django/Jinja
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<clientConfig version="1.1">
|
|
<emailProvider id="binary-kitchen.de">
|
|
<domain>{{ mail_domain }}</domain>
|
|
<displayName>Binary Kitchen</displayName>
|
|
<displayShortName>Binary Kitchen</displayShortName>
|
|
<incomingServer type="imap">
|
|
<hostname>{{ mail_server }}</hostname>
|
|
<port>993</port>
|
|
<socketType>SSL</socketType>
|
|
<authentication>password-encrypted</authentication>
|
|
<username>%EMAILLOCALPART%</username>
|
|
</incomingServer>
|
|
<incomingServer type="imap">
|
|
<hostname>{{ mail_server }}</hostname>
|
|
<port>143</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-encrypted</authentication>
|
|
<username>%EMAILLOCALPART%</username>
|
|
</incomingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>{{ mail_server }}</hostname>
|
|
<port>465</port>
|
|
<socketType>SSL</socketType>
|
|
<authentication>password-encrypted</authentication>
|
|
<username>%EMAILLOCALPART%</username>
|
|
</outgoingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>{{ mail_server }}</hostname>
|
|
<port>587</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-encrypted</authentication>
|
|
<username>%EMAILLOCALPART%</username>
|
|
</outgoingServer>
|
|
<documentation url="https://www.binary-kitchen.de/wiki/infra:start#e-mail">
|
|
<descr lang="de">Beschreibung der Einstellungen</descr>
|
|
<descr lang="en">Generic settings description</descr>
|
|
</documentation>
|
|
</emailProvider>
|
|
</clientConfig>
|