Unterschiede zwischen den Revisionen 2 und 3
Revision 2 vom 2015-07-28 23:12:04
Größe: 1996
Autor: anonym
Kommentar:
Revision 3 vom 2022-11-25 21:22:36
Größe: 0
Autor: phil
Kommentar:
Gelöschter Text ist auf diese Art markiert. Hinzugefügter Text ist auf diese Art markiert.
Zeile 1: Zeile 1:
= allgemeine Doku =
 * https://developer.mozilla.org/de/docs/Mozilla/Thunderbird/Autoconfiguration
 * https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration/FileFormat/HowTo

= konkret auf systemausfall.org =
Beim Anlegen einer neuen Maildomain verhelfen folgende Schritte zum zukünftigen Autoconfig (zumindest bei thunderbird/icedove):

 * ''DOMA.IN durch den Namen der neuen Maildomain ersetzen''
 * neuen DNS A Eintrag setzen "autoconfig.DOMA.IN" -> systemausfall.org
 * die autconfig Subdomain in ''/etc/pound/domains.inc'' eintragen
 * in www.sao Eintrag ergänzen: /etc/apache2/sites-available/200-mailautoconfig.conf
 * config Datei erstellen:

{{{
<?xml version="1.0" encoding="UTF-8"?>

<clientConfig version="1.1">
  <emailProvider id="DOMA.IN">
    <domain>DOMA.IN</domain>
    <displayName>DOMA.IN</displayName>
    <displayShortName>DOMA.IN</displayShortName>
    <incomingServer type="imap">
      <hostname>mail.systemausfall.org</hostname>
      <port>993</port>
      <socketType>SSL</socketType>
      <authentication>password-cleartext</authentication>
      <username>%EMAILLOCALPART%</username>
    </incomingServer>
   <incomingServer type="pop3">
      <hostname>mail.systemausfall.org</hostname>
      <port>995</port>
      <socketType>SSL</socketType>
      <authentication>password-cleartext</authentication>
      <username>%EMAILLOCALPART%</username>
    </incomingServer>
    <outgoingServer type="smtp">
      <hostname>mail.systemausfall.org</hostname>
      <port>465</port>
      <socketType>SSL</socketType>
      <authentication>password-cleartext</authentication>
      <username>%EMAILLOCALPART%</username>
    </outgoingServer>
    <documentation url="https://systemausfall.org/wikis/hilfe">
      <descr lang="de">Hilfe zu den E-Mail Einstellungen</descr>
      <descr lang="en">helppages for e-mail configuration</descr>
    </documentation>
  </emailProvider>
</clientConfig>
}}}

Creative Commons Lizenzvertrag
This page is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.