格雷格,
谢谢你的评论。我将其标记为在帖子中添加了一些有用的内容,因为它不是答案。
我花了一段时间才弄清楚如何获取 SMTP 成绩单。
对于阅读这篇文章的其他人,我是这样做的。适应你自己的情况。我能够停止/启动虚拟 SMTP 服务器,因为客户端给了我许可,因为它无论如何都没有完成设置的目的。
再次注意,即使在运行 IIS 7 时,IIS 6 也用于管理 SMTP 服务器。
- 打开“Internet 信息服务 (IIS) 6.0 管理器”
我在帮助菜单中找到了启用日志记录的说明:
To enable logging that uses an ASCII text format
... Select the SMTP virtual server, and then click Properties on the Action menu.
On the General tab, select Enable logging.
In the Active log format drop-down menu, select a log format.
Click Properties, and then on the General tab, specify the New log schedule.
If you select Hourly, Daily, Weekly, or Monthly, a new log file is created at those intervals.
If you select Unlimited file size, only a single log file is created.
If you select When file size reaches, you can specify the maximum size of the log file and a new log file is created when the current log file reaches that size.
On the General tab, under Log file directory, specify the location where the log files will be stored.
If you have selected the World Wide Web Consortium (W3C) Extended Logging format, click the Advanced tab, and then select the extended logging options you want to track.
我将我的日志记录目标设置为一个新文件夹,以确保它不会与其他日志记录混淆。
我打开了“高级”选项卡中的每个选项。然后我停止并启动了虚拟服务器。
我使用其中一个无法正常工作的网站功能发送了一封电子邮件(请求信息)
当我试图查看日志时,它说它正在使用中。所以我停止了虚拟 SMTP 服务器,复制了日志的内容,然后再次启动了虚拟 SMTP 服务器。
实际上,我发现客户端正在使用 mxlogic.net 进行垃圾邮件过滤。当垃圾邮件通过他们的服务时,他会定期与他们联系。我怀疑当他在 12 月 10 日联系他们时,他们阻止了他的地址,而不是冒犯性的垃圾邮件发送者。但这只是猜测。
他们承认他的 IP 地址在被封锁的 IP 范围内。他们在几分钟内修复了它,现在问题已经解决。
您可以在下面的脚本中看到第一个 OutboundConnectionResponse 正在启动与 mxlogic.net 服务器的对话。最后一行是关闭与 mxlogic.net 服务器的传输通道。在这之间你可以看到几条消息,“551+Mailhost+is+on+domain's+block+list”
#Software: Microsoft Internet Information Services 7.0
#Version: 1.0
#Date: 2013-01-03 17:29:41
#Fields: date time c-ip cs-username s-sitename s-computername s-ip s-port cs-method cs-uri-stem cs-uri-query sc-status sc-
win32-status sc-bytes cs-bytes time-taken cs-version cs-host cs(User-Agent) cs(Cookie) cs(Referer)
2013-01-03 17:29:41 127.0.0.1 mwd3.mwd.local SMTPSVC1 MWD3 127.0.0.1 0 HELO - +mwd3.mwd.local 250 0 38 19 0 SMTP - - - -
2013-01-03 17:29:41 127.0.0.1 mwd3.mwd.local SMTPSVC1 MWD3 127.0.0.1 0 MAIL - +FROM:+<webadmin@mywebdomain.com> 250 0 45 33 0 SMTP - - - -
2013-01-03 17:29:41 127.0.0.1 mwd3.mwd.local SMTPSVC1 MWD3 127.0.0.1 0 RCPT - +TO:+<info@mywebdomain.com> 250 0 29 27 0 SMTP - - - -
2013-01-03 17:29:41 127.0.0.1 mwd3.mwd.local SMTPSVC1 MWD3 127.0.0.1 0 DATA - +<20130103-11294182-2d84@mwd3.mwd.local> 250 0 123 456 63 SMTP - - - -
2013-01-03 17:29:41 127.0.0.1 mwd3.mwd.local SMTPSVC1 MWD3 127.0.0.1 0 QUIT - mwd3.mwd.local 240 78 63 4 0 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 220+p02c12m113.mxlogic.net+ESMTP+mxl_mta-6.16.0-0+[4d461940.13484498.00-2360];+Thu,+03+Jan+2013+10:29:41+-0700+(MST);+NO+UCE,+INBOUND 0 0 133 0 47 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 EHLO - mwd3.mwd.local 0 0 4 0 47 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 250-p02c12m113.mxlogic.net 0 0 26 0 63 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 MAIL - FROM:<webadmin@mywebdomain.com> 0 0 4 0 63 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 250+Sender+Ok 0 0 13 0 94 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 RCPT - TO:<info@mywebdomain.com> 0 0 4 0 94 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 551+Mailhost+is+on+domain's+block+list+(Mode:+normal) 0 0 53 0 188 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 RSET - - 0 0 4 0 188 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 250+Reset+Ok 0 0 12 0 219 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 RSET - - 0 0 4 0 266 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 250+Reset+Ok 0 0 12 0 297 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 MAIL - FROM:<> 0 0 4 0 297 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 250+Sender+Ok 0 0 13 0 312 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 RCPT - TO:<webadmin@mywebdomain.com> 0 0 4 0 312 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 551+Mailhost+is+on+domain's+block+list+(Mode:+normal) 0 0 53 0 406 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 RSET - - 0 0 4 0 406 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 250+Reset+Ok 0 0 12 0 422 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionCommand SMTPSVC1 MWD3 - 25 QUIT - - 0 0 4 0 437 SMTP - - - -
2013-01-03 17:29:41 208.65.145.12 OutboundConnectionResponse SMTPSVC1 MWD3 - 25 - - 221+p02c12m113.mxlogic.net+Service+closing+transmission+channel+[13484498.00] 0 0 77 0 453 SMTP - - - -