Autodiscover for multiple domain without changing single SSL cert
When you have multiple domains configured for your users. You must redirect your autodiscover functionality to your primary SMTP domain. You can use these different methods:
How does Outlook/Entourage check for autodiscover functionality?
- Autodiscover check https://<smtpdomain>/Autodiscover/Autodiscover.xml.
- Autodiscover check https://autodiscover.<smtpdomain>/Autodiscover/Autodiscover.xml.
- Autodiscover check http://autodiscover.<smtpdomain>/Autodiscover/Autodiscover.xml.
- Autodiscover check for SRV lookup for _autodiscover._tcp.<smtpdomain>.
1. DNS SRV Record (Service record)
When you use a SRV record your clients must have update 939184 installed for office 2007 clients. ((http://support.microsoft.com/kb/939184/ ) Description of the update rollup for Outlook 2007: June 27, 2007). It’s included in Service pack 1.
In your srv record you can redirect your autodicover srv record from your subdomain to your primairy domain. To do this you don’t need difficult certificate constructions. One certificate for your primaire domain is needed.
How configure a SRV record to redirect:
If you are using Windows DNS, the steps to create an SRV Record are as follows:
- Open the DNS Management MMC snap-in.
- Expand Forward Lookup Zones.
- Locate and right-click the external DNS zone, and then click Other New Records.
- Click Service Location (SRV).
- Enter the parameters by using the required values.
- Click OK.
SRV record
1. Service: _autodiscover
2. Protocol: _tcp
3. Port Number: 443
4. Host: autodiscover.<primairy smtp domain>.
Example
Redirect smtp domain contoso.nl to contoso.com
Make a new srv record: _autodiscover._tcp.contoso.nl. with these settings:
_autodiscover._tcp.contoso.nl. 0 0 443 autodiscover.contoso.com.
Remember that it must end with the .
Check your settings with nslookup
Nslookup->
Set type=all
_autodiscover._tcp.contoso.nl
_autodiscover._tcp.contoso.nl SRV service location:
priority = 0
weight = 0
port = 443
svr hostname = autodiscover.contoso.com
Categorised as: Exchange, Microsoft
Leave a Reply
You must be logged in to post a comment.