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 zmk
Recipients zmk
Date 2012-03-30.11:12:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333105941.84.0.159307303218.issue14452@psf.upfronthosting.co.za>
In-reply-to
Content
SysLogHandler converts message to utf8 and adds BOM, supposedly
to conform with RFC5424, but the implementation is broken:
the RFC specifies that the BOM should prefix only unstructured
message part, but current Python implementation puts it in the
middle of structured part, thus confusing RFC-compliant receivers.

Simplest fix would be to just remove the BOM adding.
History
Date User Action Args
2012-03-30 11:12:21zmksetrecipients: + zmk
2012-03-30 11:12:21zmksetmessageid: <1333105941.84.0.159307303218.issue14452@psf.upfronthosting.co.za>
2012-03-30 11:12:21zmklinkissue14452 messages
2012-03-30 11:12:21zmkcreate