This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: smtplib.py patch for macmail esmtp auth
Type: Stage:
Components: Library (Lib) Versions: Python 2.2
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: loewis, mysticbob
Priority: normal Keywords: patch

Created on 2002-07-18 02:34 by mysticbob, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
smtplib.py.patch mysticbob, 2002-07-18 02:34 results of diff smtplib.py_orig smtplib.py_new
Messages (3)
msg40607 - (view) Author: bob kuehne (mysticbob) Date: 2002-07-18 02:34
i ran into a problem that i've seen several other people
describe where they can't authenticate to their particular
mail server. i dug into this (my mail server is smtp.mac.com)
and discovered that smtplib.py didn't support the specific
type of auth that this server required.

so, this patch,allows authentication to these specific
server types. i also reworked one token to make it
a bit more modular. the patch is attached, generated
of form: diff smtplib.py_orig smtplib.py_new

i'm new to python, and new to the whole patch process
on sourceforge, so  please let me know what i can do
to test, or how else i can work to get this in the next
python version. thank you!
bob
msg40608 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-07-23 22:03
Logged In: YES 
user_id=21627

On patches: Please always use context (-c) or unified (-u) 
diffs; those stay valid longer.

On AUTH=LOGIN: Can you please try

http://sourceforge.net/tracker/index.php?
func=detail&aid=572031&group_id=5470&atid=305470

This pre-RFC AUTH protocol is by far not an invention of 
smtp.mac.com (or specific to it) - it is originally a Netscape 
invention, and widely implemented.
msg40609 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-10-13 13:02
Logged In: YES 
user_id=21627

The auth=login patch has been applied, so this one should be
obsolete.
History
Date User Action Args
2022-04-10 16:05:30adminsetgithub: 36904
2002-07-18 02:34:36mysticbobcreate