aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2017-04-26 15:25:45 +0200
committerAndrew Lewis <nerf@judo.za.org>2017-04-26 15:25:45 +0200
commitc833ce3d8c6a715998a79db1191aab61982efbca (patch)
tree3d60137009907c3bcf04d2d370c15e1564cc0094
parentd3916dab9edae772f3da45159b6aafb54a286c4d (diff)
downloadrspamd-c833ce3d8c6a715998a79db1191aab61982efbca.tar.gz
rspamd-c833ce3d8c6a715998a79db1191aab61982efbca.zip
[Conf] Remove ratelimits from default configuration
-rw-r--r--conf/modules.d/ratelimit.conf28
1 files 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";