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.

Author mmasztalerczuk
Recipients barry, mmasztalerczuk, r.david.murray, Константин Волков
Date 2016-10-18.15:57:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476806226.42.0.398115343508.issue28463@psf.upfronthosting.co.za>
In-reply-to
Content
I think that it is not bug. It is just rfc ;) Due to https://www.ietf.org/rfc/rfc2822.txt, 

A message consists of header fields, optionally followed by a message
   body.  Lines in a message MUST be a maximum of 998 characters
   excluding the CRLF, but it is RECOMMENDED that lines be limited to 78
   characters excluding the CRLF

Because you have the line with the size more then 78 chars (the header + value), the python is trying to break this line into two. 

Maybe there should be option to increase this value to something more then 78? (because max is 998 due to rfc)
History
Date User Action Args
2016-10-18 15:57:06mmasztalerczuksetrecipients: + mmasztalerczuk, barry, r.david.murray, Константин Волков
2016-10-18 15:57:06mmasztalerczuksetmessageid: <1476806226.42.0.398115343508.issue28463@psf.upfronthosting.co.za>
2016-10-18 15:57:06mmasztalerczuklinkissue28463 messages
2016-10-18 15:57:06mmasztalerczukcreate