Force message to be unicode to avoid encoding issues

This commit is contained in:
Michael Huang 2017-02-14 12:34:53 -08:00
parent 77978ec644
commit dc851fc557

View File

@ -260,7 +260,7 @@ def decode_mail_headers(string):
def ticket_from_message(message, queue, logger):
# 'message' must be an RFC822 formatted message.
message = email.message_from_string(message)
message = email.message_from_string(message.encode('utf-8'))
subject = message.get('subject', _('Created from e-mail'))
subject = decode_mail_headers(decodeUnknown(message.get_charset(), subject))
for affix in STRIPPED_SUBJECT_STRINGS: