logging.handlers.SMTPHandler 引发 smtplib.SMTPAuthenticationError

Posted

技术标签:

【中文标题】logging.handlers.SMTPHandler 引发 smtplib.SMTPAuthenticationError【英文标题】:logging.handlers.SMTPHandler raises smtplib.SMTPAuthenticationError 【发布时间】:2015-08-26 13:40:11 【问题描述】:

我在 Verizon 和 Gmail 上试过这个。两台服务器都拒绝身份验证。 Gmail 给我发电子邮件说它拒绝登录尝试,因为连接没有使用“现代安全”。 我想知道如何通过这个日志处理程序使用现代安全性。

logging.handlers.SMTPHandler(mailhost=('', 25),
                             fromaddr='',
                             toaddrs='',
                             subject='',
                             credentials=('username','password'),
                             secure=())

【问题讨论】:

【参考方案1】:

对于任何回过头来的人,以下是我如何让 SMTPHandler 与 Gmail 一起使用:

eh = SMTPHandler(mailhost=('smtp.gmail.com', 587),
                fromaddr=from_addr,
                toaddrs=to_addrs,
                subject=subject,
                credentials=(username, password),
                secure=())

to_addrs 变量在我的示例中是一个字符串。我不确定它是否可以是一个数组或者应该是一个空格或逗号分隔的字符串。 username 变量包含域,如下所示:foo@gmail.com

大多数指南都说使用端口 465,如果您好奇,这里是 difference。但是,当我尝试使用端口 465 时,出现 SMTP 超时错误:

Traceback (most recent call last):
File "/usr/local/lib/python3.5/smtplib.py", line 386, in getreply
  line = self.file.readline(_MAXLINE + 1)
File "/usr/local/lib/python3.5/socket.py", line 571, in readinto
  return self._sock.recv_into(b)
socket.timeout: timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.5/logging/handlers.py", line 972, in emit
  smtp = smtplib.SMTP(self.mailhost, port, timeout=self.timeout)
File "/usr/local/lib/python3.5/smtplib.py", line 251, in __init__
  (code, msg) = self.connect(host, port)
File "/usr/local/lib/python3.5/smtplib.py", line 337, in connect
  (code, msg) = self.getreply()
File "/usr/local/lib/python3.5/smtplib.py", line 390, in getreply
  + str(e))
smtplib.SMTPServerDisconnected: Connection unexpectedly closed: timed out

我切换到 587 端口,Google 成功通过了身份验证。消息已发送。

【讨论】:

我需要添加 eh._timeout=30 以延长 5 秒的默认超时,然后才能可靠地工作。 端口 465 (SSL) 的问题是 CPython implementation 总是使用 smtplib.SMTP() 可选的 StartTLS 而不是 smtplib.SMTP_SSL()【参考方案2】:

Gmail 问题:

此处未提及。查看有关 Gmail 应用身份验证的其他答案。

威瑞森问题:

某些邮件提交服务器可能只接受端口 465 上的 SMTPS。有关详细信息,请参阅 What is the difference between ports 465 and 587?。 Verizon 邮件提交服务器smtp.verizon.net 就是这样一个例子。 SMTPHandler 默认不支持 SMTPS。您可以对该功能进行猴子补丁。

解决方案:

这会强制任何服务器使用 SMTPS。 更彻底的解决方法是编辑带有标志的类以启用 SMTPS。

    将编辑后的 ​​emit 函数从下方粘贴到相关文件中。

    然后设置

    logging.handlers.SMTPHandler.emit = emit
    

 

默认的 /logging/handlers.py logging.handlers.SMTPHandler.emit 函数

# Class SMTPHandler...
def emit(self, record):
    """
    Emit a record.

    Format the record and send it to the specified addressees.
    """
    try:
        import smtplib
        from email.utils import formatdate
        port = self.mailport
        if not port:
            port = smtplib.SMTP_PORT
        smtp = smtplib.SMTP(self.mailhost, port, timeout=self._timeout)
        msg = self.format(record)
        msg = "From: %s\r\nTo: %s\r\nSubject: %s\r\nDate: %s\r\n\r\n%s" % (
                        self.fromaddr,
                        ",".join(self.toaddrs),
                        self.getSubject(record),
                        formatdate(), msg)
        if self.username:
            if self.secure is not None:
                smtp.ehlo()
                smtp.starttls(*self.secure)
                smtp.ehlo()
            smtp.login(self.username, self.password)
        smtp.sendmail(self.fromaddr, self.toaddrs, msg)
        smtp.quit()
    except (KeyboardInterrupt, SystemExit):
        raise
    except:
        self.handleError(record)

 

编辑后的发射函数

def emit(self, record):
    """
    Overwrite the logging.handlers.SMTPHandler.emit function with SMTP_SSL.
    Emit a record.
    Format the record and send it to the specified addressees.
    """
    try:
        import smtplib
        from email.utils import formatdate
        port = self.mailport
        if not port:
            port = smtplib.SMTP_PORT
        smtp = smtplib.SMTP_SSL(self.mailhost, port, timeout=self._timeout)
        msg = self.format(record)
        msg = "From: %s\r\nTo: %s\r\nSubject: %s\r\nDate: %s\r\n\r\n%s" % (self.fromaddr, ", ".join(self.toaddrs), self.getSubject(record), formatdate(), msg)
        if self.username:
            smtp.ehlo()
            smtp.login(self.username, self.password)
        smtp.sendmail(self.fromaddr, self.toaddrs, msg)
        smtp.quit()
    except (KeyboardInterrupt, SystemExit):
        raise
    except:
        self.handleError(record)

【讨论】:

以上是关于logging.handlers.SMTPHandler 引发 smtplib.SMTPAuthenticationError的主要内容,如果未能解决你的问题,请参考以下文章