28 lines
1.1 KiB
Cheetah
28 lines
1.1 KiB
Cheetah
<clientConfig version="1.1">
|
|
<emailProvider id="{{ .Domain }}">
|
|
<domain>{{ .Domain }}</domain>
|
|
<displayName>{{ .DisplayName }}</displayName>
|
|
<displayShortName>{{ .ShortDisplayName }}</displayShortName>
|
|
<incomingServer type="imap">
|
|
<hostname>{{ .ImapServer }}</hostname>
|
|
<port>993</port>
|
|
<socketType>SSL</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</incomingServer>
|
|
<incomingServer type="pop3">
|
|
<hostname>{{ .PopServer }}</hostname>
|
|
<port>995</port>
|
|
<socketType>SSL</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</incomingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>{{ .SmtpServer }}</hostname>
|
|
<port>587</port>
|
|
<socketType>STARTTLS</socketType>
|
|
<authentication>password-cleartext</authentication>
|
|
<username>%EMAILADDRESS%</username>
|
|
</outgoingServer>
|
|
</emailProvider>
|
|
</clientConfig> |