Outlook Anywhere使用错误的URL

我们已经将Outlook 2010configuration为使用Outlook Anywhere,并且可以很好地对付SBS 2011 Std。 但是,在启动时,它会抱怨证书不匹配。

在用Fiddler2嗅探一下之后,我们了解到,尽pipe已经为Outlook Anywhere提供了support.ourdomain.com的URL(为此我们有一个合适的证书),但Outlook还是会去remote.ourdomain。 com在自动发现阶段 – 因此无效的证书警告。

为什么Outlook使用不同的URL进行自动发现,我们如何改变它以使用正确的?

感谢马克·亨德森提供的指针,我终于钉上了这一个。 我不得不在EMS中更换两个对象:

Set-WebServicesVirtualDirectory -identity "ourserver\ews (Default Web Site)" ` -InternalUrl https://support.ourdomain.au/EWS/Exchange.asmx ` -ExternalUrl https://support.ourdomain.au/EWS/Exchange.asmx Set-ClientAccessServer -identity ourserver ` -AutoDiscoverServiceInternalUri https://support.ourdomain.au/Autodiscover/Autodiscover.xml 

我也遇到过build议,设置如下:

 Set-AutodiscoverVirtualDirectory -identity "ourserver\Autodiscover (Default Web Site)" ` -InternalUrl https://support.ourdomain.au/Autodiscover/Autodiscover.xml ` -ExternalUrl https://support.ourdomain.au/Autodiscover/Autodiscover.xml 

但是在我们的情况下,这似乎没有必要(尽pipe我之后改变了它)。