Linuxhotel Wiki

Wie ging das nochmal?

Benutzer-Werkzeuge

Webseiten-Werkzeuge


fortgeschrittene:thunderbird_autoconfig

Automatische Konfiguration von Thunderbird

Evolution and KMail and Kontact use it, too.

Mögliche Alternativen:

  • automx (funktioniert auch mit Outlook, MacOS und iOS, aber letzte Änderung 2016)

Voraussetzung

Apache konfigurieren

mit Alias

/etc/apache2/conf-available/autoconfig.conf
Alias /.well-known/autoconfig /var/www/autoconfig
 
<Directory /var/www/autoconfig/>
    Options FollowSymlinks
    Options -Indexes
    AllowOverride None
    Require all granted
</Directory>
a2enconf autoconfig

Alternativ: mit Virtual Host

apache2ctl graceful

Datei config-v1.1.xml hinterlegen

mkdir -p /var/www/autoconfig/mail
/var/www/autoconfig/mail/config-v1.1.xml
<?xml version="1.0" encoding="UTF-8"?>
 
<clientConfig version="1.1">
  <emailProvider id="z21.example.net">
    <domain>z21.example.net</domain>
    <displayName>z21 Mail</displayName>
    <displayShortName>z21</displayShortName>
    <incomingServer type="imap">
      <hostname>vm02.z21.example.net</hostname>
      <port>143</port>
      <socketType>STARTTLS</socketType>
      <authentication>password-cleartext</authentication>
      <username>%EMAILLOCALPART%</username>
    </incomingServer>
    <outgoingServer type="smtp">
      <hostname>vm02.z21.example.net</hostname>
      <port>25</port>
      <socketType>plain</socketType>
      <authentication>client-IP-address</authentication>
      <username>%EMAILLOCALPART%</username>
    </outgoingServer>
    <documentation url="https://vm02.z21.example.net/test.html">
      <descr lang="de">Allgemeine Beschreibung der Einstellungen</descr>
      <descr lang="en">Generic settings page</descr>
    </documentation>
  </emailProvider>
</clientConfig>

Testen: https://vm02.z21.example.net/.well-known/autoconfig/mail/config-v1.1.xml

Dokumentation

fortgeschrittene/thunderbird_autoconfig.txt · Zuletzt geändert: 2025/08/14 09:27 von ingo_wichmann