Message105381
Hi,
I think the bug is also present in the function encode_quopri which should look like this :
def encode_quopri(msg):
"""Encode the message's payload in quoted-printable.
Also, add an appropriate Content-Transfer-Encoding header.
"""
orig = msg.get_payload()
encdata = _qencode(orig)
data = str(encdata, "ASCII")
msg.set_payload(data)
msg['Content-Transfer-Encoding'] = 'quoted-printable' |
|
Date |
User |
Action |
Args |
2010-05-09 11:54:47 | garazi111 | set | recipients:
+ garazi111, barry, beazley, vstinner, eric.araujo, r.david.murray, brotchie, stac, l0nwlf |
2010-05-09 11:54:46 | garazi111 | set | messageid: <1273406086.85.0.254231684926.issue4768@psf.upfronthosting.co.za> |
2010-05-09 11:54:44 | garazi111 | link | issue4768 messages |
2010-05-09 11:54:44 | garazi111 | create | |
|