mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
38 lines
1.4 KiB
Django/Jinja
38 lines
1.4 KiB
Django/Jinja
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<clientConfig version="1.1">
|
|
<emailProvider id="{{ config.domain_name }}">
|
|
<domain>{{ config.domain_name }}</domain>
|
|
<displayName>{{ config.domain_name }} chatmail</displayName>
|
|
<displayShortName>{{ config.domain_name }}</displayShortName>
|
|
<incomingServer type="imap">
|
|
<hostname>{{ config.domain_name }}</hostname>
|
|
<port>993</port>
|
|
<socketType>SSL</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</incomingServer>
|
|
<incomingServer type="imap">
|
|
<hostname>{{ config.domain_name }}</hostname>
|
|
<port>143</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</incomingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>{{ config.domain_name }}</hostname>
|
|
<port>465</port>
|
|
<socketType>SSL</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</outgoingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>{{ config.domain_name }}</hostname>
|
|
<port>587</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</outgoingServer>
|
|
</emailProvider>
|
|
</clientConfig>
|