commit ce9557e3f698364f47321de261990c54bd66fd27
parent 340655ab01c1f9e4789e84082a264bf65d1dd1e0
Author: Oscar Benedito <oscar@oscarbenedito.com>
Date:   Mon, 31 Aug 2020 17:34:59 +0200

Add email autoconfig

Diffstat:
Astatic/.well-known/autoconfig/mail/config-v1.1.xml | 58++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+), 0 deletions(-)

diff --git a/static/.well-known/autoconfig/mail/config-v1.1.xml b/static/.well-known/autoconfig/mail/config-v1.1.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<clientConfig version="1.1"> + <emailProvider id="mailbox.org"> + <domain>oscarbenedito.com</domain> + <displayName>oscarbenedito.com mailserver</displayName> + <displayShortName>oscarbenedito.com</displayShortName> + + <incomingServer type="imap"> + <hostname>imap.mailbox.org</hostname> + <port>993</port> + <socketType>SSL</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </incomingServer> + <incomingServer type="imap"> + <hostname>imap.mailbox.org</hostname> + <port>143</port> + <socketType>STARTTLS</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </incomingServer> + + <incomingServer type="pop3"> + <hostname>pop3.mailbox.org</hostname> + <port>995</port> + <socketType>SSL</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </incomingServer> + <incomingServer type="pop3"> + <hostname>pop3.mailbox.org</hostname> + <port>110</port> + <socketType>STARTTLS</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </incomingServer> + + <outgoingServer type="smtp"> + <hostname>smtp.mailbox.org</hostname> + <port>465</port> + <socketType>SSL</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </outgoingServer> + <outgoingServer type="smtp"> + <hostname>smtp.mailbox.org</hostname> + <port>587</port> + <socketType>STARTTLS</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </outgoingServer> + + <documentation url="http://www.mailbox.org/"> + <descr lang="de">FAQ und Support-Datenbank</descr> + <descr lang="en">Frequently Asked Questions (FAQ)</descr> + </documentation> + </emailProvider> +</clientConfig>