fix message logging

This commit is contained in:
Son NK 2021-05-28 17:46:52 +02:00
parent aa667851e9
commit 1750ad45d5
1 changed files with 3 additions and 1 deletions

View File

@ -1626,7 +1626,9 @@ def handle(envelope: Envelope) -> str:
# but it's possible that some MTA don't send the bounce report correctly
# todo: to remove once this issue is understood
if mail_from == "<>":
LOG.exception("email from <> to reverse alias %s. \n%s", rcpt_to, msg)
LOG.e(
"email from <> to reverse alias %s. \n%s", rcpt_to, msg.as_string()
)
is_delivered, smtp_status = handle_reply(envelope, copy_msg, rcpt_to)
res.append((is_delivered, smtp_status))