2021-01-28 13:27:50 -08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<clientConfig version="1.1">
|
|
|
|
|
<emailProvider id="<%= domain %>">
|
|
|
|
|
<domain><%= domain %></domain>
|
|
|
|
|
<displayName>Cloudron Mail</displayName>
|
|
|
|
|
<displayShortName>Cloudron</displayShortName>
|
|
|
|
|
<incomingServer type="imap">
|
2023-08-04 21:37:38 +05:30
|
|
|
<hostname><%= fqdn %></hostname>
|
2021-01-28 13:27:50 -08:00
|
|
|
<port>993</port>
|
|
|
|
|
<socketType>SSL</socketType>
|
|
|
|
|
<authentication>password-cleartext</authentication>
|
|
|
|
|
<username>%EMAILADDRESS%</username>
|
|
|
|
|
</incomingServer>
|
|
|
|
|
<outgoingServer type="smtp">
|
2023-08-04 21:37:38 +05:30
|
|
|
<hostname><%= fqdn %></hostname>
|
2021-01-28 13:27:50 -08:00
|
|
|
<port>587</port>
|
|
|
|
|
<socketType>STARTTLS</socketType>
|
|
|
|
|
<authentication>password-cleartext</authentication>
|
|
|
|
|
<username>%EMAILADDRESS%</username>
|
|
|
|
|
<addThisServer>true</addThisServer>
|
|
|
|
|
</outgoingServer>
|
2021-09-29 11:57:41 -07:00
|
|
|
<incomingServer type="pop3">
|
2023-08-04 21:37:38 +05:30
|
|
|
<hostname><%= fqdn %></hostname>
|
2021-09-29 11:57:41 -07:00
|
|
|
<port>995</port>
|
|
|
|
|
<socketType>SSL</socketType>
|
|
|
|
|
<username>%EMAILADDRESS%</username>
|
|
|
|
|
<authentication>password-cleartext</authentication>
|
|
|
|
|
</incomingServer>
|
2021-01-28 13:27:50 -08:00
|
|
|
<documentation url="http://cloudron.io/email/#autodiscover">
|
|
|
|
|
<descr lang="en">Cloudron Email</descr>
|
|
|
|
|
</documentation>
|
|
|
|
|
|
|
|
|
|
</emailProvider>
|
|
|
|
|
</clientConfig>
|
|
|
|
|
|