diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2015-06-06 19:57:45 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2015-06-06 20:00:59 +0200 |
commit | eec3df1652b37734f6d6cdd559e11ab700eb9761 (patch) | |
tree | d64bb1b582ab24ac95aced48a9f4eb250c6e6b5c | |
parent | e56f86369ddd6a51630269f38416768f27efdee6 (diff) |
Provide Thunderbird autoconfiguration.
References:
- https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration
- https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration/FileFormat/HowTo
- https://wiki.mozilla.org/Thunderbird:Autoconfiguration:ConfigFileFormat
-rw-r--r-- | website/.well-known/autoconfig/mail/config-v1.1.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/website/.well-known/autoconfig/mail/config-v1.1.xml b/website/.well-known/autoconfig/mail/config-v1.1.xml new file mode 100644 index 0000000..e70b0be --- /dev/null +++ b/website/.well-known/autoconfig/mail/config-v1.1.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<clientConfig version="1.1"> + <emailProvider id="fripost.org"> + <domain>fripost.org</domain> + + <displayName>Fripost &endash; demokratisk e-post</displayName> + <displayShortName>Fripost</displayShortName> + + <incomingServer type="imap"> + <hostname>imap.fripost.org</hostname> + <port>993</port> + <socketType>SSL</socketType> + <username>%EMAILADDRESS%</username> + <authentication>password-cleartext</authentication> + </incomingServer> + + <outgoingServer type="smtp"> + <hostname>smtp.fripost.org</hostname> + <port>587</port> + <socketType>STARTTLS</socketType> + <username>%EMAILADDRESS%</username> + <authentication>password-cleartext</authentication> + </outgoingServer> + + <documentation url="http://wiki.fripost.org/konfigurera/"> + <descr lang="en">Configure your email client for Fripost</descr> + <descr lang="sv">Konfigurerar din e-postklient för Fripost</descr> + </documentation> + </emailProvider> + + <webMail> + <loginPage url="https://mail.fripost.org/" /> + <loginPageInfo url="https://mail.fripost.org/"> + <username>%EMAILADDRESS%</username> + <usernameField id="rcmloginuser" name="_user" /> + <passwordField id="rcmloginpwd" name="_pass" /> + </loginPageInfo> + </webMail> +</clientConfig> |