Metainformationen zur Seite
  •  

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige ÜberarbeitungVorherige Überarbeitung
mail:automatische_konfiguration_von_mailkonten [2025/11/06 09:55] – [Autoconfig] Fix path 31.16.24.103mail:automatische_konfiguration_von_mailkonten [2026/01/08 07:15] (aktuell) – Microsoft Outlook unterstützt kein Autodiscover mehr 31.17.176.249
Zeile 4: Zeile 4:
  
 ^ Methode ^ Entwickler ^ Mail-Programme ^ ^ Methode ^ Entwickler ^ Mail-Programme ^
-| [[https://wiki.mozilla.org/Thunderbird:Autoconfiguration|Autoconfig]] | Mozilla | Thunderbird +| [[https://wiki.mozilla.org/Thunderbird:Autoconfiguration|Autoconfig]] | Mozilla | Thunderbird, K9 |
-| [[https://docs.microsoft.com/en-us/previous-versions/office/office-2010/cc511507(v=office.14)|Autodiscover]] | Microsoft | Outlook |+
 | [[https://www.rfc-editor.org/rfc/rfc6186#section-3|SRV-Eintrag]] | IETF | Claws Mail | | [[https://www.rfc-editor.org/rfc/rfc6186#section-3|SRV-Eintrag]] | IETF | Claws Mail |
  
Zeile 58: Zeile 57:
   </emailProvider>   </emailProvider>
 </clientConfig> </clientConfig>
-</code> 
- 
-===== Autodiscover ===== 
- 
-Autodiscover ist Outlooks Variate zum automatischen Konfigurieren von E-Mail-Konten. Autodiscover versucht die Informationen in einer festgelegten [[https://learn.microsoft.com/en-us/previous-versions/office/office-2010/cc511507(v=office.14)#autodiscover-transaction-summary|Reihenfolge]] zu erhalten: 
-  - Prüfung von Office 365 (Exchange Online) 
-  - Active Directory – Service Connection Point (SCP) 
-  - https://example.org/autodiscover/autodiscover.xml 
-  - https://autodiscover.example.org/autodiscover/autodiscover.xml 
-  - http://autodiscover.example.org/autodiscover/autodiscover.xml 
-  - SRV Record ''_autodiscover._txp.example.org'' 
-  - Lokale XML-Autodiscover-Datei 
- 
-Am einfachsten wird in den meisten Fällen die Auslieferung der Autodiscover-Datei über die Location ''/autodiscover'' sein. Dadurch erspart man sich ie Einrichtung eines DNS-Eintrages. Die Schritte im Einzelnen: 
-  * Richte deinen Webserver so ein, dass er die Datei ''autodiscover.xml'' korrekt ausliefert. Mit NGINX könnte das bspw. so aussehen:<code> 
-server { 
-    server_name example.org; 
-    listen 443 ssl; 
-    ssl_certificate /var/lib/dehydrated/certs/autoconfig.example.org/fullchain.pem; 
-    ssl_certificate_key /var/lib/dehydrated/certs/autoconfig.example.org/privkey.pem; 
-    ... 
-    location ~ ^/autodiscover { 
-        root /var/www/autodiscover.example.org; 
-    } 
-} 
-</code> 
-  * Erstelle nun die Datei ''/var/www/autodiscover/autodiscover''. Das Format ist [[https://learn.microsoft.com/en-us/previous-versions/office/office-2010/cc511507(v=office.14)#xml-response-schema|vorgegeben]]:<code XML> 
-<?xml version="1.0"?> 
- 
-<Autodiscover xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-    xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> 
-    <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a"> 
-        <Account> 
-            <AccountType>email</AccountType> 
-            <Action>settings</Action> 
-            <Protocol> 
-                <Type>IMAP</Type> 
-                <Server>imap.example.org</Server> 
-                <Port>993</Port> 
-                <SSL>on</SSL> 
-                <DomainRequired>on</DomainRequired> 
-                <SPA>off</SPA> 
-                <AuthRequired>on</AuthRequired> 
-            </Protocol> 
-            <Protocol> 
-                <Type>POP3</Type> 
-                <Server>pop.example.org</Server> 
-                <Port>995</Port> 
-                <SSL>on</SSL> 
-                 <DomainRequired>on</DomainRequired> 
-                <SPA>off</SPA> 
-                <AuthRequired>on</AuthRequired> 
-            </Protocol> 
-            <Protocol> 
-                <Type>SMTP</Type> 
-                <Server>smtp.example.org</Server> 
-                <Port>465</Port> 
-                <SSL>on</SSL> 
-                <DomainRequired>on</DomainRequired> 
-                <SPA>off</SPA> 
-                <AuthRequired>on</AuthRequired> 
-            </Protocol> 
-        </Account> 
-    </Response> 
-</Autodiscover> 
 </code> </code>