diff options
| -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>'; +} |
