--- roundup.orig/mailer.py 2005-01-03 03:53:03.000000000 +0100 +++ roundup/mailer.py 2006-01-26 09:42:37.844166328 +0100 @@ -115,7 +115,7 @@ part = writer.nextpart() part.addheader('Content-Transfer-Encoding', 'quoted-printable') body = part.startbody('text/plain; charset=utf-8') - body.write('\n'.join(error)) + body.write(quopri.encodestring ('\n'.join(error))) # attach the original message to the returned message part = writer.nextpart()