This system supports autoconfig and autodiscover
- https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration
- http://msdn.microsoft.com/nl-nl/library/office/bb204278%28v=exchg.150%29.aspx
- [MS-OXDISCO] which tells you where to ask.
- [MS-OXDSCLI] which tells you what to ask for.
- SOAP api
- Rewrite guide
- my-service.com = The domain you run your "autodiscover" service on
- my-mail.com = The domain you want to activate autodiscover and autoconfig for
-
Add domain:
discover.my-service.com
-
Add Sites > Website with the following settings:
-
Domain:
discover.my-service.com
-
Auto-Subdomain
NONE
-
Options > Apache Directives:
ServerAlias autoconfig.*
RewriteEngine On
RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^discover\.my-service\.com$
RewriteRule ^(.*)$ https://discover.my-service.com$1 [R=301]
Optional:
- Do what you do to make the website (discover.my-service.com) work with SSL
-
for my-mail.com set
-
SRV
_autodiscover._tcp.my-mail.com
->1 10 443 discover.my-service.com
-
[SRV-Format on Route53: [priority] [weight] [port] [server host name]]
-
CNAME
autoconfig.my-mail.com
->discover.my-service.com
-
change
autodiscover.php
andconfig-v1.1.xml
to meet your configuration -
copy
.htaccess
tohttps://discover.my-service.com/autodiscover/.htaccess
-
copy
autodiscover.php
tohttps://discover.my-service.com/autodiscover/autodiscover.php
-
copy
config-v1.1.xml
tohttps://discover.my-service.com/mail/config-v1.1.xml
- Tutorial by Antal Delahaije (admxnl)
- Edited and modified by Christian Foellmann (cfoellmann)