diff options
| author | Horus3 | 2015-06-07 23:44:15 +0200 |
|---|---|---|
| committer | Horus3 | 2015-06-07 23:44:15 +0200 |
| commit | 528dcbb6b3be8005c9e7b41294651fdc7b888f70 (patch) | |
| tree | 109fe3b08fcce6af7b9c2fafabbd297c067fca4f | |
| parent | 519da49c7e1b18d3f9bcf67c2ef25914717ca3e5 (diff) | |
| download | nginx_conf-528dcbb6b3be8005c9e7b41294651fdc7b888f70.tar.gz | |
| -rw-r--r-- | thunderbird-autoconfig.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/thunderbird-autoconfig.conf b/thunderbird-autoconfig.conf new file mode 100644 index 0000000..ff1a0b1 --- /dev/null +++ b/thunderbird-autoconfig.conf @@ -0,0 +1,36 @@ +location = /.well-known/autoconfig/mail/config-v1.1.xml { + return 200 '<?xml version="1.0" encoding="UTF-8"?> + + <clientConfig version="1.1"> + <emailProvider id="iamfabulous.de"> + <domain>iamfabulous.de</domain> + <displayName>Libremail @ iamfabulous.de</displayName> + <displayShortName>Libremail</displayShortName> + <incomingServer type="imap"> + <hostname>mx.iamfabulous.de</hostname> + <port>143</port> + <socketType>STARTTLS</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </incomingServer> + <incomingServer type="pop3"> + <hostname>mx.iamfabulous.de</hostname> + <port>110</port> + <socketType>STARTTLS</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </incomingServer> + <outgoingServer type="smtp"> + <hostname>mx.iamfabulous.de</hostname> + <port>587</port> + <socketType>STARTTLS</socketType> + <authentication>password-cleartext</authentication> + <username>%EMAILADDRESS%</username> + </outgoingServer> + <documentation url="https://libremail.iamfabulous.de"> + <descr lang="de">Libremail - Freier E-Mail Betrieb</descr> + <descr lang="en">Libremail - free email service</descr> + </documentation> + </emailProvider> + </clientConfig>'; +} |
