disable handle_bounce_reply_phase

This commit is contained in:
Son NK 2020-11-05 10:26:19 +01:00
parent d0ca773376
commit 5ef3ab4d74
1 changed files with 5 additions and 5 deletions

View File

@ -546,11 +546,11 @@ def handle_forward(envelope, msg: Message, rcpt_to: str) -> List[Tuple[bool, str
# bounce email initiated by Postfix
# can happen in case an email cannot be sent from an alias to a contact
# in this case Postfix will send a bounce report to original sender, which is the alias
if mail_from == "<>":
LOG.warning("Bounce email sent to %s", alias)
handle_bounce_reply_phase(alias, msg, user)
return [(False, "550 SL E24 Email cannot be sent to contact")]
# if mail_from == "<>":
# LOG.warning("Bounce email sent to %s", alias)
#
# handle_bounce_reply_phase(alias, msg, user)
# return [(False, "550 SL E24 Email cannot be sent to contact")]
try:
contact = get_or_create_contact(msg["From"], envelope.mail_from, alias)