From f34c1f555fd18978e6ce7ee93a4b7a0011042527 Mon Sep 17 00:00:00 2001 From: Son NK Date: Mon, 30 Mar 2020 22:37:41 +0200 Subject: [PATCH] quick workaround for prod --- email_handler.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/email_handler.py b/email_handler.py index 2ff502b8..0a903bfa 100644 --- a/email_handler.py +++ b/email_handler.py @@ -421,10 +421,11 @@ def handle_forward(envelope, smtp: SMTP, msg: Message, rcpt_to: str) -> (bool, s # Sometimes when user clicks on "reply all" # an email is sent to the same alias that the previous message is destined to - if envelope.mail_from == mailbox_email: - # nothing to do - LOG.d("Forward from %s to %s, nothing to do", envelope.mail_from, mailbox_email) - return False, "550 SL ignored" + # todo: uncomment this + # if envelope.mail_from == mailbox_email: + # # nothing to do + # LOG.d("Forward from %s to %s, nothing to do", envelope.mail_from, mailbox_email) + # return False, "550 SL ignored" contact = get_or_create_contact(msg["From"], alias)