stash
This commit is contained in:
parent
1408aa1713
commit
fe15939f06
1 changed files with 3 additions and 0 deletions
|
@ -200,7 +200,10 @@ def receive_email(envelope, log=None):
|
||||||
subject = "No subject"
|
subject = "No subject"
|
||||||
subject = unescape_and_decode_quoted_printable(subject)
|
subject = unescape_and_decode_quoted_printable(subject)
|
||||||
subject = unescape_and_decode_base64(subject)
|
subject = unescape_and_decode_base64(subject)
|
||||||
|
log.info("search for {}".format(recipient))
|
||||||
|
log.info("known {}".format(["{} -> {}".format(x.address, x.event.slug) for x in EventAddress.objects.all()]))
|
||||||
target_event = find_target_event(recipient)
|
target_event = find_target_event(recipient)
|
||||||
|
log.info("found {}".format(target_event))
|
||||||
|
|
||||||
active_issue_thread, new = find_active_issue_thread(header_in_reply_to, recipient, subject)
|
active_issue_thread, new = find_active_issue_thread(header_in_reply_to, recipient, subject)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue