[issue19806] smtpd crashes when a multi-byte UTF-8 sequence is split between consecutive data packets

Illirgway report at bugs.python.org
Wed Nov 27 13:34:08 CET 2013


Illirgway added the comment:

"base64", "quoted-printable" and "7bit" messages only use ASCII range of characters so raw_message.decode('ascii') == raw_message.decode('latin1') == etc. == raw_message.decode('utf-8') due to internal representation of utf-8 characters

P.S. Python 3.4.0 beta 1 Lib/smtpd has the same bug and needs the same patch to fix this issue

----------
nosy: +Illirgway
versions: +Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19806>
_______________________________________


More information about the Python-bugs-list mailing list