我正在管理一个邮件服务器,并希望我的 Outlook 用户能够自动设置他们的邮件服务器信息。通常,这是通过自动发现文件完成的。以下是我理解的它的工作方式mymaildomain.com
(不是实际域):
- 在 (https) 上托管一个
mymaildomain.com/autodiscover/autodiscover.xml
包含正确信息的文件 - 用户输入
[email protected]
正确的密码 - 然后,Outlook 尝试从以下 URL 之一获取自动发现 XML:
- Outlook 使用该文件中的信息来填充正确的字段,如 IMAP、POP 和 SMTP 服务器名称、端口等。
我已经托管了文件(粘贴在下面),当我打开浏览器或使用 curlGET
或POST
URL 时,我得到了HTTP/200
XML 并且正确返回了。当我在 Outlook for Mac 15.17.1 中尝试它时,它不起作用。当我使用远程连接分析器时,它给了我以下错误:
The Microsoft Connectivity Analyzer is attempting to retrieve an XML Autodiscover response from URL
https://mymaildomain.com:443/Autodiscover/Autodiscover.xml for user
[email protected].
The Microsoft Connectivity Analyzer failed to obtain an Autodiscover XML response.
Additional Details
An HTTP 500 response was returned from Unknown.
HTTP Response Headers:
Connection: close
Accept-Ranges: bytes
Content-Length: 2524
Content-Type: text/html
Date: Thu, 17 Dec 2015 22:15:53 GMT
Server: ""
Elapsed Time: 582 ms.
令人困惑的是,我使用任何其他方法请求 autodiscover.xml 文件时,都能获取到它。那么为什么 Outlook 或远程连接分析器无法正确获取它呢?下面的 XML 文件。
谢谢
<Autodiscover 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.mymaildomain.com</Server>
<Port>993</Port>
<DomainRequired>on</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
<Protocol>
<Type>POP3</Type>
<Server>pop.mymaildomain.com</Server>
<Port>995</Port>
<DomainRequired>on</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
<Protocol>
<Type>SMTP</Type>
<Server>smtp.mymaildomain.com</Server>
<Port>465</Port>
<DomainRequired>on</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
<UsePOPAuth>on</UsePOPAuth>
<SMTPLast>on</SMTPLast>
</Protocol>
</Account>
</Response>
</Autodiscover>