客户端outlook 自动配置用户邮箱
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了客户端outlook 自动配置用户邮箱相关的知识,希望对你有一定的参考价值。
当我们的邮箱平台属于第三方而非微软exchange时,客户端outlook如何自动配置用户邮箱类似于exchange邮件平台一样呢?
OK,按我的方法来做
第一、新建 一个autodiscover.xml文件内容如下(内容我暂不作解析了,假设邮件服务器域名为:mail.xx.com):
<?xml version="1.0" encoding="utf-8" ?>
<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>POP3</Type>
<Server>mail.xx.com</Server>
<Port>995</Port>
<DomainRequired>off</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
<Protocol>
<Type>SMTP</Type>
<Server>mail.xx.com</Server>
<Port>465</Port>
<DomainRequired>off</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
<UsePOPAuth>on</UsePOPAuth>
<SMTPLast>on</SMTPLast>
</Protocol>
<Protocol>
<Type>IMAP</Type>
<Server>mail.xx.com</Server>
<Port>993</Port>
<DomainRequired>off</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
</Response>
</Autodiscover>
第二、你得有一个https web站点把autodiscover.xml上传到站点主目录的autodiscover目录下
第三、在你的DNS系统里新建A记录 autodiscover.xx.com 指向你上面的 web服务器地址,让链接: https://autodiscover.xx.com/autodiscover/autodiscover.xml 是可以正常访问的
第四、在你的内部DNS系统的_tcp下新建一 服务(SRV)记录 ,内容为:
域(M):你自己的内部域 自动生成
服务(S):_autodiscover
协议(P):_tcp
优先级(O):0
权重(W):0
端口号(N):443
提供此服务的主机(H):autodiscover.xx.com
到此我们已经全部完成,在outlook自动配置完成后,请按下图位置勾选择上,以免发送邮件失败
敢快去试试吧?如果有什么问题可以给我留言
本文出自 “water-ice” 博客,请务必保留此出处http://windyma.blog.51cto.com/661702/1967956
以上是关于客户端outlook 自动配置用户邮箱的主要内容,如果未能解决你的问题,请参考以下文章