From dbd79ccd223d11da63c310a007640742805328f0 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Sat, 5 Aug 2017 11:13:44 +0300 Subject: [PATCH] [Minor] Fix time units in ratelimit.conf examples --- conf/modules.d/ratelimit.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/conf/modules.d/ratelimit.conf b/conf/modules.d/ratelimit.conf index 49e4e93f9..08109b820 100644 --- a/conf/modules.d/ratelimit.conf +++ b/conf/modules.d/ratelimit.conf @@ -16,17 +16,17 @@ ratelimit { #rates { # Limit for all mail per recipient (rate 2 per minute) - #to = "2 / 1m"; + #to = "2 / 1min"; # Limit for all mail per one source ip (rate 1.5 per minute) - #to_ip = "3 / 2m"; + #to_ip = "3 / 2min"; # Limit for all mail per one source ip and from address (rate 1 per minute) - #to_ip_from = "1 / 1m"; + #to_ip_from = "1 / 1min"; # 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"; + #user = "1 / 1min"; #} # If symbol is specified, then it is inserted instead of setting result #symbol = "R_RATELIMIT"; -- 2.39.5