use warning log level for cycle email issue

This commit is contained in:
Son NK 2020-08-27 10:15:40 +02:00
parent 828d9e4fe1
commit 26ecf38760
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ async def handle_forward(
for mb in alias.mailboxes:
# email send from a mailbox to alias
if mb.email.lower().strip() == mail_from:
LOG.exception("cycle email sent from %s to %s", mb, alias)
LOG.warning("cycle email sent from %s to %s", mb, alias)
handle_email_sent_to_ourself(alias, mb, msg, alias.user)
return [(True, "250 Message accepted for delivery")]