mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
using "primary" to describe the domain of the box / mail server is confusing when working with multiple domains. Usually the box domain is different from the domain you want to host your mail for.
45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<?xml version="1.0"?>
|
|
<clientConfig version="1.1">
|
|
<emailProvider id="BOX_HOSTNAME">
|
|
<domain>BOX_HOSTNAME</domain>
|
|
|
|
<displayName>BOX_HOSTNAME (Mail-in-a-Box)</displayName>
|
|
<displayShortName>BOX_HOSTNAME</displayShortName>
|
|
|
|
<incomingServer type="imap">
|
|
<hostname>BOX_HOSTNAME</hostname>
|
|
<port>993</port>
|
|
<socketType>SSL</socketType>
|
|
<username>%EMAILADDRESS%</username>
|
|
<authentication>password-cleartext</authentication>
|
|
</incomingServer>
|
|
|
|
<outgoingServer type="smtp">
|
|
<hostname>BOX_HOSTNAME</hostname>
|
|
<port>465</port>
|
|
<socketType>SSL</socketType>
|
|
<username>%EMAILADDRESS%</username>
|
|
<authentication>password-cleartext</authentication>
|
|
<addThisServer>true</addThisServer>
|
|
<useGlobalPreferredServer>false</useGlobalPreferredServer>
|
|
</outgoingServer>
|
|
|
|
<documentation url="https://BOX_HOSTNAME/">
|
|
<descr lang="en">BOX_HOSTNAME website.</descr>
|
|
</documentation>
|
|
</emailProvider>
|
|
|
|
<webMail>
|
|
<loginPage url="https://BOX_HOSTNAME/mail/" />
|
|
<loginPageInfo url="https://BOX_HOSTNAME/mail/" >
|
|
<username>%EMAILADDRESS%</username>
|
|
<usernameField id="rcmloginuser" name="_user" />
|
|
<passwordField id="rcmloginpwd" name="_pass" />
|
|
<loginButton id="rcmloginsubmit" />
|
|
</loginPageInfo>
|
|
</webMail>
|
|
|
|
<clientConfigUpdate url="https://BOX_HOSTNAME/.well-known/autoconfig/mail/config-v1.1.xml" />
|
|
|
|
</clientConfig>
|