mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2025-04-03 14:24:31 +05:00
29 lines
865 B
XML
29 lines
865 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<clientConfig version="1.1">
|
|
<emailProvider id="@emailProviderId@">
|
|
@domains@
|
|
<displayName>@displayName@</displayName>
|
|
<displayShortName>@displayShortName</displayShortName>
|
|
@imapSslServer@
|
|
@imapServer@
|
|
@pop3SslServer@
|
|
@pop3Server@
|
|
<outgoingServer type="smtp">
|
|
<hostname>@fqdn@</hostname>
|
|
<port>587</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</outgoingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>@fqdn@</hostname>
|
|
<port>25</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</outgoingServer>
|
|
@extraEmailProvider@
|
|
</emailProvider>
|
|
</clientConfig>
|