mirror of
https://github.com/python/cpython.git
synced 2025-08-27 12:16:04 +00:00
Patch #572031: AUTH method LOGIN for smtplib
(most of the patch hides in rev. 1.59). Backported to 2.2.
This commit is contained in:
parent
b03fac2ded
commit
49c05d39e3
1 changed files with 1 additions and 1 deletions
|
@ -574,7 +574,7 @@ class SMTP:
|
||||||
"%s %s" % (AUTH_LOGIN, encode_base64(user, eol="")))
|
"%s %s" % (AUTH_LOGIN, encode_base64(user, eol="")))
|
||||||
if code != 334:
|
if code != 334:
|
||||||
raise SMTPAuthenticationError(code, resp)
|
raise SMTPAuthenticationError(code, resp)
|
||||||
(code, resp) = self.docmd(encode_base64(user, eol=""))
|
(code, resp) = self.docmd(encode_base64(password, eol=""))
|
||||||
elif authmethod is None:
|
elif authmethod is None:
|
||||||
raise SMTPException("No suitable authentication method found.")
|
raise SMTPException("No suitable authentication method found.")
|
||||||
if code not in [235, 503]:
|
if code not in [235, 503]:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue