错误发生的环境 | 详细错误报告 |
| 能够从Outlook客户端向外发送邮件(如user@Sohu.com),但是从Outlook Express客户端却不能这么做 | OutlookExpress弹出一个错误对话框,说“处理所需任务时出错”。 错误描述: 由于服务器拒绝收件人之一,无法发送邮件。被拒绝的电子邮件地址是[email=“zhengyun_ustc@XXX.com]“zhengyun_ustc@XXX.com[/email]”。主题'test';账户:'mailserver',服务器:'mailserver',协议:SMTP,服务器响应:'550 5.7.1 Unable to relay for zhengyun_ustc@XXX.com',端口:25,安全(SSL):否,服务器错误:550,错误号:0x800CCC79 |
| 在VBScript脚本中,如果指定SMTP Server来向外发送邮件,会得到0X0804020F的错误号; 但是不指定SMTP Server,默认用Pickup方式,让本地的SMTP Service来向外发送邮件却是可以的 (脚本示范在附录A中) | 弹出一个标题为“Windows 脚本宿主”的错误对话框。错误描述为: 错误: the Server rejected one or more recipient address.The server response was:550 5.7.1 Unable to relay for zhengyun_ustc@XXX.com 代码: 8004020F |
| | 5.7.1错误号一般会伴随有应用程序日志的事件ID 1709和1710: Event Type: Warning Event Source: MSExchangeTransport Event Category: SMTP Protocol Event ID: 1709 Date: 9/6/2000 Time: 5:21:28 AM User: N/A Computer: SERVERNAME Description: An SMTP client did not authenticate before attempting to send mail. Access was denied. Data: 0000: 05 00 07 80 ...? Event Type: Warning Event Source: MSExchangeTransport Event Category: SMTP Protocol Event ID: 1710 Date: 9/5/2000 Time: 3:31:03 PM User: N/A Computer: SERVERNAME Description: An SMTP client authenticated as user "NT AUTHORITY\ANONYMOUS LOGON" attempted to send as "User.one@domain.edu". Access was denied because the authenticated client does not have permission to Send As this SMTP address. Data: 0000: 05 00 07 80 ...? |
| 向一个不允许中继的远程域发送邮件 | Non-Delivery Report (NDR)详细错误报告: The following recipient(s) could not be reached: User@Remotedomain.com on 1/6/00 7:58 PM The originator does not have permission to submit message dns;Wsilver.com failed 5.7.1 smtp;550 5.7.1 Unable to relay for User@Remotedomain.com |
Error Name | Value | Remarks |
| CDO_E_RECIPIENTS_REJECTED | 0x8004020FL | The server rejected one or more recipient addresses. The server response was: %1. |
| Dim objMessage set objMessage = CreateObject("CDO.Message") With objMessage .from = "User@XXX.com" .To = "zhengyun_ustc@XXX.com" .TextBody = "body" .Subject = "Subject" With .Configuration .Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'cdoSendUsingPort .Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mailserver.tomocorp.com" .Fields(cdoSMTPServerPort) = 25 .Fields.update End With End With objMessage.send |
| 欢迎光临 邮件服务器-邮件系统-邮件技术论坛(BBS) (http://bbs.5dmail.net/) | Powered by Discuz! X3.2 |