Message 321579 - Python tracker

Message321579

Author r.david.murray
Recipients droz, r.david.murray
Date 2018-07-12.19:54:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531425275.54.0.56676864532.issue34104@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like the virus checkers are not doing robust decoding that the email RFCs recommend, and that thunderbird is.  This is obviously a bug in the virus scanners.  By default, like thunderbird, the email library does its best to decode attachments.  If you want your application to reject such attachments, then in python3 you can check for defects after doing the get_payload, or you can set the policy to 'strict' (that is, raise_on_defect=True) when parsing the email.
History
Date User Action Args
2018-07-12 19:54:35r.david.murraysetrecipients: + r.david.murray, droz
2018-07-12 19:54:35r.david.murraysetmessageid: <1531425275.54.0.56676864532.issue34104@psf.upfronthosting.co.za>
2018-07-12 19:54:35r.david.murraylinkissue34104 messages
2018-07-12 19:54:35r.david.murraycreate