描述
我正尝试使用“默认MAIL-SERVER”(端口2525)接收连接器作为已authentication的外部继电器。 我用邮箱“[email protected]”成功了,但是我无法用“[email protected]”来完成。
权限
命令
Get-ReceiveConnector -Identity "Default MAIL-SERVER" | Get-ADPermission -User administrator | ft AccessRights, ExtendedRights, Deny
产量
AccessRights ExtendedRights Deny ------------ -------------- ---- {ExtendedRight} {ms-Exch-SMTP-Submit} False {ExtendedRight} {Send-As} True {ExtendedRight} {Receive-As} True {GenericAll} False
事件查看器
在事件查看器中logging了以下错误;
帐户“域\pipe理员”提供了有效的凭据,但未被授权使用服务器; authentication失败
事件属性
客户端错误
尝试使用System.Net.Mail SmtpClient发送邮件时收到此错误
SMTP服务器需要安全的连接或者客户端没有被authentication。 服务器响应是:5.7.1客户端未被authentication
更新
我为接收连接器打开了“Verbose”ProtocolLogging,并在SmtpReceive标识了这个条目
入站身份validation失败,因为我们拒绝Domain \ administrator的知名帐户身份validation
如何在不使用SSL / TLS的情况下允许知名的帐户authentication?
你为什么使用pipe理员? 为此任务设置一个专用帐户,该帐户没有通过Internet传递的高级别权限,然后进行中继。 我不会梦想在外部使用pipe理员。