Consider the following scenario:
You have an Exchange 2010 server for which we have a wildcard certificate. The SAN on the SSL cert is *.domain.com. That is fine However Outlook Anywhere, via autodiscovery, sets the required cert name to msstd:server.domain.com. This will appears to prevent the user from logging on via Outlook Anywhere. If you remove the requirement for a particular SSL in Outlooks proxy settings then things work fine.
to solve this issue please make sure to run the following:
Set-OutlookProvider EXPR -Server $null -CertPrincipalName none
Tricky!
Wednesday, June 16, 2010
Subscribe to:
Post Comments (Atom)
2 comments:
Or you can follow the online documentation and do this:
Set-OutlookProvider -Identity EXPR -CertPrincipalName msstd:*.domain.com
http://technet.microsoft.com/en-us/library/cc535023%28EXCHG.80%29.aspx
Outlook is a marvellous tool, but I have found it often lacks compatibility across the board. It seems the same is now with a wildcard certificate. There are enough work arounds and it isn't really a problem. Just more of an incovenience.
Post a Comment