Man kann die Autokonfiguration von Accounts in Thunderbird zentral steuern, indem man eine XML-Datei hinterlegt.
Am Beispiel für meine Domain:
<clientConfig version="1.1">
<emailProvider id="tumelum.de">
<domain>tumelum.de</domain>
<displayName>Tumelum Mail Server</displayName>
<displayShortName>Tumelum</displayShortName>
<incomingServer type="imap">
<hostname>tumelum.de</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>tumelum.de</hostname>
<port>25</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
</emailProvider>
</clientConfig>
Das ganze habe ich dann im Pfad http://tumelum.de/.well-known/autoconfig/mail/config-v1.1.xml abgelegt.
Und schon findet Thunderbird im Profil-Wizard die Daten fast von allein:

Coole Sache. Der Artikel "Autoconfiguration in Thunderbird" (https://developer.mozilla.org/en/Thunderbird/Autoconfiguration) zeigt die möglichen XML-Tags auf und auch die verschiedenen Ablagemöglichkeiten und Suchfunktionen, die unterstützt werden.







