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: decode message attachments in email.Message
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: customdesigned, jepler, loewis
Priority: normal Keywords: patch

Created on 2003-08-28 19:46 by customdesigned, last changed 2022-04-10 16:10 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pp customdesigned, 2003-09-08 20:00 Patches to Parser.py for python 2.2.2
Messages (4)
msg44527 - (view) Author: Stuart D. Gathman (customdesigned) Date: 2003-08-28 19:46
This is a fix for bug 794458.  It is not a complete fix
because although it correctly decodes message
attachments on input, the Generator doesn't obey the
encoding.  I'll fix Generator.py next.
msg44528 - (view) Author: Jeff Epler (jepler) Date: 2003-09-01 02:47
Logged In: YES 
user_id=2772

It looks like you failed to include the attachment/patch
msg44529 - (view) Author: Stuart D. Gathman (customdesigned) Date: 2003-09-08 20:00
Logged In: YES 
user_id=142072

I must have forgotten to check the checkbox . . .

It may not be necessary to modify Generator.  Any valid
rfc822 message 
would not need encoding as a message attachment.  If it is
desired to preserve the encoding, that is a simple patch to
Generator.py, and the Encoding would not be deleted as is
done in this patch.
msg44530 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-08-25 11:06
Logged In: YES 
user_id=21627

The patch is out of date, as the code has been rewritten
since. Also, on the bug itself, Barry claims that this is
also out of date (i.e. fixed). So I'm rejecting this patch
as out-of-date also. If you disagree, please update the
patch, resubmit it, and include an test case that gets
corrected with your patch.
History
Date User Action Args
2022-04-10 16:10:53adminsetgithub: 39143
2003-08-28 19:46:19customdesignedcreate