From c833ce3d8c6a715998a79db1191aab61982efbca Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Wed, 26 Apr 2017 15:25:45 +0200 Subject: [PATCH] [Conf] Remove ratelimits from default configuration --- conf/modules.d/ratelimit.conf | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/conf/modules.d/ratelimit.conf b/conf/modules.d/ratelimit.conf index 863dc9a3d..49e4e93f9 100644 --- a/conf/modules.d/ratelimit.conf +++ b/conf/modules.d/ratelimit.conf @@ -14,20 +14,20 @@ # See https://rspamd.com/doc/tutorials/writing_rules.html for details ratelimit { - rates { - # Limit for all mail per recipient (burst 100, rate 2 per minute) - to = [100, 0.033333333]; - # Limit for all mail per one source ip (burst 30, rate 1.5 per minute) - to_ip = [30, 0.025]; - # Limit for all mail per one source ip and from address (burst 20, rate 1 per minute) - to_ip_from = [20, 0.01666666667]; - # Limit for all bounce mail (burst 10, rate 2 per hour) - bounce_to = [10, 0.000555556]; - # Limit for bounce mail per one source ip (burst 5, rate 1 per hour) - bounce_to_ip = [5, 0.000277778]; - # Limit for all mail per authenticated user (burst 20, rate 1 per minute) - user = [20, 0.01666666667]; - } + #rates { + # Limit for all mail per recipient (rate 2 per minute) + #to = "2 / 1m"; + # Limit for all mail per one source ip (rate 1.5 per minute) + #to_ip = "3 / 2m"; + # Limit for all mail per one source ip and from address (rate 1 per minute) + #to_ip_from = "1 / 1m"; + # Limit for all bounce mail (rate 2 per hour) + #bounce_to = "2 / 1h"; + # Limit for bounce mail per one source ip (rate 1 per hour) + #bounce_to_ip = "1 / 1h"; + # Limit for all mail per authenticated user (rate 1 per minute) + #user = "1 / 1m"; + #} # If symbol is specified, then it is inserted instead of setting result #symbol = "R_RATELIMIT"; whitelisted_rcpts = "postmaster,mailer-daemon"; -- 2.39.5