Files
cloudron-box/src/autoconfig.xml.ejs

36 lines
1.2 KiB
Plaintext
Raw Normal View History

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">
<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">
<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">
<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>