SMTP 错误:尝试使用 python 和 postfix 发送电子邮件时出现“收件人地址被拒绝”
Posted
技术标签:
【中文标题】SMTP 错误:尝试使用 python 和 postfix 发送电子邮件时出现“收件人地址被拒绝”【英文标题】:SMTP error: "Recipient addressed refused" when trying to send an email using python and postfix 【发布时间】:2012-03-21 04:43:10 【问题描述】:我收到此错误:
提高 SMTPRecipientsRefused(senderrs) smtplib.SMTPRecipientsRefused: 'example@hotmail.com': (550, '5.1.1 : 收件人 地址被拒绝:hotmail.com')
在尝试运行我的 python 脚本时。
无论我输入什么收件人地址,它仍然会给我同样的错误。我已将 postfix 的配置安装为本地,它可以正确识别“localhost”,但不能识别任何发件人地址。这是我的代码:
import smtplib
def sendEmail(addressFrom, addressTo, msg):
server = smtplib.SMTP('localhost')
server.set_debuglevel(1)
server.sendmail(addressFrom, addressTo, msg)
server.quit()
msg = "This is the content of the email"
addressFrom = ""
addressTo = "example@hotmail.com"
sendEmail(addressFrom, addressTo, msg)
这是后缀的 main.cf 文件。现在看,mydestination 只设置为本地地址,会不会是这个问题?
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
# Debian specific: Specifying a file name will cause the first
# line of that file to be used as the name. The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
readme_directory = no
# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:$data_directory/smtpd_scache
smtp_tls_session_cache_database = btree:$data_directory/smtp_scache
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
myhostname = user-desktop
**mydomain = hotmail.com**
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
**mydestination = user-desktop, localhost.$mydomain www.$mydomain**
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = loopback-only
default_transport = error
relay_transport = error
inet_protocols = ipv4
提前谢谢你
【问题讨论】:
【参考方案1】:我在我的 python 脚本中遇到了类似的问题。
使用以下命令将 Postfix 的配置更改为 Internet Site
sudo dpkg-reconfigure postfix
将 Postfix 配置更改为 Internet 站点。这将解决您的问题,并且可以将邮件发送到任何邮件地址。
【讨论】:
【参考方案2】:您好,我遇到了类似的问题。我收到了错误:
(550, '5.7.1 客户端无权作为此发件人发送')
打开 TLS,添加 ehlo 命令明确为我解决了这个问题。希望能帮助到你。
def mail(msg):
email_server = "mail.some-server.com"
sender = "me@some-server.com"
to = "you@some-server.com"
subject = "How about those Mariners!"
headers = "From: %s\r\nTo: %s\r\nSubject: %s\r\n\r\n" % (sender, to, subject)
text = msg
message = headers + text
mailServer = smtplib.SMTP(email_server)
mailServer.set_debuglevel(1)
mailServer.ehlo()
mailServer.starttls()
mailServer.ehlo()
mailServer.login('user', 'pass')
mailServer.ehlo()
mailServer.sendmail(sender, to, message)
mailServer.quit()
【讨论】:
【参考方案3】:您的代码看起来不错。这很可能是 Postfix 的配置问题。
【讨论】:
真的吗?如果我发布配置文件会有帮助吗? "现在看,mydestination 只设置为本地地址,会不会是这个问题?"对,就是这样。见postfix.org/postconf.5.html#mydestination 感谢该链接,这绝对有帮助,我做了一些更改,但仍然收到相同的错误。此外,我希望能够向任何域发送电子邮件,而不仅仅是特定域。我觉得当前配置仅适用于特定域。 我也遇到过类似的问题。如果您使用的是基于 debian 的 linux 发行版(例如 Ubuntu),您可以使用sudo dpkg-reconfigure postfix
修复此问题,并将配置从“仅本地交付”更改为“互联网站点”。以上是关于SMTP 错误:尝试使用 python 和 postfix 发送电子邮件时出现“收件人地址被拒绝”的主要内容,如果未能解决你的问题,请参考以下文章
使用 smtp 和 Python 发送电子邮件时出现 SSL 错误
python==使用smtp发送邮件的源代码,解决554错误码的问题