]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Greylist: Fix docs
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 2 Dec 2021 20:31:40 +0000 (20:31 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 2 Dec 2021 20:31:40 +0000 (20:31 +0000)
Issue: #3997

src/plugins/lua/greylist.lua

index 807859bff031b38f16042eef1ce87b1e3b164cc4..652452496ceca4116511395606298d2fa2a8a6f0 100644 (file)
@@ -40,19 +40,32 @@ if confighelp then
       "Performs adaptive greylisting using Redis",
       [[
 greylist {
-  expire = 1d; # Buckets expire (1 day by default)
-  timeout = 5m; # Greylisting timeout
-  key_prefix = 'rg'; # Redis prefix
-  max_data_len = 10k; # Use boy hash up to this value of bytes for greylisting
-  message = 'Try again later'; # Default greylisting message
-  symbol = 'GREYLIST'; # Append symbol
-  action = 'soft reject'; # Default action change (for Exim use `greylist`)
-  whitelist_symbols = []; # Skip greylisting if one of the following symbols has been found
-  ipv4_mask = 19; # Mask bits for ipv4
-  ipv6_mask = 64; # Mask bits for ipv6
-  report_time = false; # Tell when greylisting is expired (appended to `message`)
-  check_local = false; # Greylist local messages
-  check_authed = false; # Greylist authenticated users
+  # Buckets expire (1 day by default)
+  expire = 1d;
+  # Greylisting timeout
+  timeout = 5m;
+  # Redis prefix
+  key_prefix = 'rg';
+  # Use body hash up to this value of bytes for greylisting
+  max_data_len = 10k;
+  # Default greylisting message
+  message = 'Try again later';
+  # Append symbol on greylisting
+  symbol = 'GREYLIST';
+  # Default action change (for Exim use `greylist`)
+  action = 'soft reject';
+  # Skip greylisting if one of the following symbols has been found
+  whitelist_symbols = [];
+  # Mask bits for ipv4
+  ipv4_mask = 19;
+  # Mask bits for ipv6
+  ipv6_mask = 64;
+   # Tell when greylisting is expired (appended to `message`)
+  report_time = false;
+  # Greylist local messages
+  check_local = false;
+  # Greylist messages from authenticated users
+  check_authed = false;
 }
   ]])
   return