我正在尝试编写一个简单的 Python 脚本来通过我公司的 SMTP 服务器发送电子邮件.我正在使用以下代码.
I am trying to write a simple Python script to send emails through my company's SMTP server. I am using the following piece of code.
#! /usr/local/bin/python
import sys,re,os,datetime
from smtplib import SMTP
#Email function
def sendEmail(message):
sender="SENDERID@COMPANY.com"
receivers=['REVEIVER1@COMPANY.com','RECEIVER2@COMPANY.com']
subject="Daily Report - " + datetime.datetime.now().strftime("%d %b %y")
header="""
From: %s
To: %s
Subject: %s
%s""" % (sender, ", ".join(receivers), subject, message)
smtp = SMTP()
smtp.set_debuglevel(1)
smtp.connect('X.X.X.X')
smtp.ehlo()
smtp.starttls()
smtp.ehlo()
try:
smtp.login('SENDERID@COMPANY.com', '********')
smtp.sendmail(sender,receivers,header)
smtp.quit()
except Exception, e:
print e
#MAIN
sendEmail("HAHHAHAHAHAH!!!")
运行这个程序,产生这个结果.
Running this program, yields this result.
connect: ('X.X.X.X', 25)
connect: ('X.X.X.X', 25)
reply: '220 COMPANY.com [ESMTP Server] service ready;ESMTP Server; 05/25/11 15:59:27
'
reply: retcode (220); Msg: COMPANY.com [ESMTP Server] service ready;ESMTP Server; 05/25/11 15:59:27
connect: COMPANY.com [ESMTP Server] service ready;ESMTP Server; 05/25/11 15:59:27
send: 'ehlo SERVER1.COMPANY.com
'
reply: '250-COMPANY.com
'
reply: '250-SIZE 15728640
'
reply: '250-8BITMIME
'
reply: '250 STARTTLS
'
reply: retcode (250); Msg: COMPANY.com
SIZE 15728640
8BITMIME
STARTTLS
send: 'STARTTLS
'
reply: '220 Ready to start TLS
'
reply: retcode (220); Msg: Ready to start TLS
send: 'ehlo SERVER2.COMPANY.com
'
reply: '250-COMPANY.com
'
reply: '250-SIZE 15728640
'
reply: '250 8BITMIME
'
reply: retcode (250); Msg: COMPANY.com
SIZE 15728640
8BITMIME
send: 'quit
'
reply: '221 [ESMTP Server] service closing transmission channel
'
reply: retcode (221); Msg: [ESMTP Server] service closing transmission channel
ERROR: Could not send email! Check the reason below.
SMTP AUTH extension not supported by server.
如何开始调试此服务器不支持 SMTP AUTH 扩展".错误?
How do I start debugging this "SMTP AUTH extension not supported by server." error?
P.S.:我知道 SMTP 详细信息和凭据是正确的,因为我有一个包含确切详细信息的工作 Java 类.
P.S.: I know the SMTP details and credentials are correct, as I have a working Java class with the exact details.
你得到的错误意味着你正在与之交谈的 SMTP 服务器不声称支持身份验证.如果您查看调试输出,您会发现对 EHLO
的响应均不包含 AUTH
的必要声明.如果它确实(正确)支持身份验证,则其中一个响应将类似于:
The error you get means the SMTP server you're talking to doesn't claim to support authentication. If you look at the debug output you'll see that none of the responses to your EHLO
s contain the necessary declaration for AUTH
. If it did (properly) support authentication, one of the responses would be something like:
250 AUTH GSSAPI DIGEST-MD5 PLAIN
(至少响应 STARTTLS
之后的 EHLO
.)因为不包括该响应,smtplib 假定服务器将无法处理AUTH
命令,会拒绝发送.如果你确定你的 SMTP 服务器确实支持 AUTH
命令,即使它没有做广告,你可以偷偷地说服 smtplib 它支持 AUTH
通过将其显式添加到功能集.您需要知道支持哪种身份验证方案,然后您可以这样做:
(at least in reponse to the EHLO
after the STARTTLS
.) Because that response isn't included, smtplib assumes the server won't be able to handle the AUTH
command, and will refuse to send it. If you're certain your SMTP server does support the AUTH
command even though it doesn't advertise it, you can sneakily convince smtplib that it supports AUTH
by explicitly adding it to the set of features. You'll need to know which kind of authentication schemes are supported, and then you can do:
smtp.starttls()
smtp.ehlo()
# Pretend the SMTP server supports some forms of authentication.
smtp.esmtp_features['auth'] = 'LOGIN DIGEST-MD5 PLAIN'
...当然,让 SMTP 服务器按照规范运行会是一个更好的主意 :)
... but of course making the SMTP server behave according to spec would be a better idea :)
这篇关于Python 的 SMTP AUTH 扩展问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!