使用配置文件的 MailSettings 进行 SMTP 身份验证
Posted
技术标签:
【中文标题】使用配置文件的 MailSettings 进行 SMTP 身份验证【英文标题】:SMTP Authentication with config file's MailSettings 【发布时间】:2011-04-06 23:26:10 【问题描述】:我将 MailSettings 存储在 web.config 中,但是当我发送邮件时,我的 SMTP 服务器报告我需要使用身份验证。我在配置文件中有我的用户名/密码,但仍然失败。
如果我执行以下操作,它会起作用,但这似乎是一个额外的步骤。它不应该只是从配置文件中获取并自动使用身份验证吗?
System.Configuration.Configuration config = WebConfigurationManager.OpenWebConfiguration(
HttpContext.Current.Request.ApplicationPath);
MailSettingsSectionGroup settings =
(MailSettingsSectionGroup) config.GetSectionGroup("system.net/mailSettings");
SmtpClient client = new SmtpClient();
client.Credentials = new NetworkCredential(
settings.Smtp.Network.UserName, settings.Smtp.Network.Password);
Web.config
<system.net>
<mailSettings>
<smtp from="me@xyz.com" deliveryMethod="Network">
<network host="mail.xyz.com" defaultCredentials="true"
userName="me@xyzcom" password="abc123" />
</smtp>
</mailSettings>
</system.net>
System.Net.Mail.SmtpException
超出存储分配。这 服务器响应是:请使用 smtp 验证。看 http://www.myISP.com/support/smtp-authentication.aspx
“超出的存储分配”让我们困惑了很长时间,我们现在忽略它。 “使用 smtp 身份验证”似乎很重要。
【问题讨论】:
【参考方案1】:编码方式和web.config only方式的区别在于后者设置了defaultCredentials="true"
。那是防止用户名和密码被用于验证,用这种方法。我认为可以通过将其设置为“false”(或完全删除它,因为“false”是默认值)来解决问题。
【讨论】:
更多关于使用上述设置的信息:smarterasp.net/support/kb/a380/… ;)【参考方案2】:SmtpClient 类应该使用 auth 参数,而无需从配置中显式读取用户名或密码。见http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.aspx
你能从你的配置中发布 System.Net 段吗?另外,您能否发布您从 SMTP 服务器收到的确切错误信息?
【讨论】:
以上是关于使用配置文件的 MailSettings 进行 SMTP 身份验证的主要内容,如果未能解决你的问题,请参考以下文章
如何对 mailSettings 文件执行 XML 变量替换?
加密web.config中的邮件配置mailSettings
如何从 Web.config 读取 system.net/mailSettings/smtp