increase greylisting threshold

This commit is contained in:
Son NK 2021-06-23 19:55:41 +02:00
parent 70b51b5002
commit e8cee6de80
3 changed files with 5 additions and 5 deletions

View File

@ -267,10 +267,10 @@ UPLOAD_DIR = None
# Greylisting features # Greylisting features
# nb max of activity (forward/reply) an alias can have during 1 min # nb max of activity (forward/reply) an alias can have during 1 min
MAX_ACTIVITY_DURING_MINUTE_PER_ALIAS = 5 MAX_ACTIVITY_DURING_MINUTE_PER_ALIAS = 10
# nb max of activity (forward/reply) a mailbox can have during 1 min # nb max of activity (forward/reply) a mailbox can have during 1 min
MAX_ACTIVITY_DURING_MINUTE_PER_MAILBOX = 10 MAX_ACTIVITY_DURING_MINUTE_PER_MAILBOX = 15
if LOCAL_FILE_UPLOAD: if LOCAL_FILE_UPLOAD:
print("Upload files to local dir") print("Upload files to local dir")

View File

@ -27,7 +27,7 @@ def greylisting_needed_for_alias(alias: Alias) -> bool:
) )
if nb_activity > MAX_ACTIVITY_DURING_MINUTE_PER_ALIAS: if nb_activity > MAX_ACTIVITY_DURING_MINUTE_PER_ALIAS:
LOG.d( LOG.w(
"Too much forward on alias %s. Nb Activity %s", "Too much forward on alias %s. Nb Activity %s",
alias, alias,
nb_activity, nb_activity,
@ -54,7 +54,7 @@ def greylisting_needed_for_mailbox(alias: Alias) -> bool:
) )
if nb_activity > MAX_ACTIVITY_DURING_MINUTE_PER_MAILBOX: if nb_activity > MAX_ACTIVITY_DURING_MINUTE_PER_MAILBOX:
LOG.d( LOG.w(
"Too much forward on mailbox %s, alias %s. Nb Activity %s", "Too much forward on mailbox %s, alias %s. Nb Activity %s",
alias.mailbox, alias.mailbox,
alias, alias,

View File

@ -902,7 +902,7 @@ def handle_reply(envelope, msg: Message, rcpt_to: str) -> (bool, str):
msg, contact.pgp_finger_print, contact.pgp_public_key msg, contact.pgp_finger_print, contact.pgp_public_key
) )
except PGPException: except PGPException:
LOG.exception( LOG.e(
"Cannot encrypt message %s -> %s. %s %s", alias, contact, mailbox, user "Cannot encrypt message %s -> %s. %s %s", alias, contact, mailbox, user
) )
# to not save the email_log # to not save the email_log