From 57af5103c746870061d05d541befcedc4b17af05 Mon Sep 17 00:00:00 2001 From: andryyy Date: Sat, 18 Jan 2020 16:32:27 +0100 Subject: [PATCH] [Rspamd] Ratelimit for bounces reduced, max_rcpt for ratelimit increased --- data/conf/rspamd/override.d/ratelimit.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/conf/rspamd/override.d/ratelimit.conf b/data/conf/rspamd/override.d/ratelimit.conf index f02d2d3c..744bc6b9 100644 --- a/data/conf/rspamd/override.d/ratelimit.conf +++ b/data/conf/rspamd/override.d/ratelimit.conf @@ -3,10 +3,10 @@ rates { to = "100 / 1s"; to_ip = "100 / 1s"; to_ip_from = "100 / 1s"; - bounce_to = "100 / 1s"; - bounce_to_ip = "100 / 1s"; + bounce_to = "10 / 1h"; + bounce_to_ip = "10 / 1h"; } whitelisted_rcpts = "postmaster,mailer-daemon"; -max_rcpt = 5; +max_rcpt = 25; custom_keywords = "/etc/rspamd/lua/ratelimit.lua"; info_symbol = "RATELIMITED";