mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
19 lines
649 B
XML
19 lines
649 B
XML
<clientConfig version="1.1">
|
|
<emailProvider id="{{ domain }}">
|
|
<domain>{{ domain }}</domain>
|
|
<incomingServer type="imap">
|
|
<hostname>{{ domain }}</hostname>
|
|
<port>993</port>
|
|
<socketType>SSL</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILLOCALPART%</username>
|
|
</incomingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>{{ domain }}</hostname>
|
|
<port>587</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILLOCALPART%</username>
|
|
</outgoingServer>
|
|
</emailProvider>
|
|
</clientConfig>
|