mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +01:00
Try a real fix for #832, parse comma in email sender
This commit is contained in:
parent
6a73fd7cef
commit
981eb323c2
@ -325,8 +325,13 @@ def ticket_from_message(message, queue, logger):
|
|||||||
|
|
||||||
sender = message.get('from', _('Unknown Sender'))
|
sender = message.get('from', _('Unknown Sender'))
|
||||||
sender = decode_mail_headers(decodeUnknown(message.get_charset(), sender))
|
sender = decode_mail_headers(decodeUnknown(message.get_charset(), sender))
|
||||||
# sender_email = email.utils.parseaddr(sender)[1]
|
# to address bug #832, we wrap all the text in front of the email address in
|
||||||
sender_email = email.utils.getaddresses(sender)[1]
|
# double quotes by using replace() on the email string. Then,
|
||||||
|
# take first item of list, second item of tuple is the actual email address.
|
||||||
|
# Note that the replace won't work on just an email with no real name,
|
||||||
|
# but the getaddresses() function seems to be able to handle just unclosed quotes
|
||||||
|
# correctly. Not ideal, but this seems to work for now.
|
||||||
|
sender_email = email.utils.getaddresses(['\"' + sender.replace('<', '\" <')])[0][1]
|
||||||
|
|
||||||
cc = message.get_all('cc', None)
|
cc = message.get_all('cc', None)
|
||||||
if cc:
|
if cc:
|
||||||
|
Loading…
Reference in New Issue
Block a user