From 291b9a7d557bead50388131cc599fc0ed496e003 Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Thu, 31 Dec 2020 11:30:53 +0100 Subject: [PATCH] use warning level for reply message detected as spam --- email_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/email_handler.py b/email_handler.py index b1e76f6f..3e514678 100644 --- a/email_handler.py +++ b/email_handler.py @@ -853,7 +853,7 @@ def handle_reply(envelope, msg: Message, rcpt_to: str) -> (bool, str): is_spam, spam_status = get_spam_info(msg, max_score=MAX_REPLY_PHASE_SPAM_SCORE) if is_spam: - LOG.exception( + LOG.warning( "Reply phase - email sent from %s to %s detected as spam. %s", alias, contact,