use warning for grey listing

This commit is contained in:
Son NK 2020-04-04 21:59:42 +02:00
parent 0657f3dbc2
commit c163bdc14f
1 changed files with 1 additions and 1 deletions

View File

@ -797,7 +797,7 @@ def handle(envelope: Envelope, smtp: SMTP) -> str:
# Whether it's necessary to apply greylisting
if greylisting_needed(envelope.mail_from, envelope.rcpt_tos):
LOG.error(
LOG.warning(
"Grey listing applied for %s %s", envelope.mail_from, envelope.rcpt_tos
)
return "421 SL Retry later"