diff options
author | dehnli <dehnli@gmail.com> | 2017-02-12 20:37:10 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-12 20:37:10 +0400 |
commit | 2e59a01088786fec012792e383d5a006687aeebe (patch) | |
tree | 15b4346da91ad25700d3412b634965a12851facd /conf/modules.d/greylist.conf | |
parent | 5431466bc751f1fcaf9ed504c73771966ddcd976 (diff) | |
download | rspamd-2e59a01088786fec012792e383d5a006687aeebe.tar.gz rspamd-2e59a01088786fec012792e383d5a006687aeebe.zip |
[Minor] Fix `max_data_len`
Diffstat (limited to 'conf/modules.d/greylist.conf')
-rw-r--r-- | conf/modules.d/greylist.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/modules.d/greylist.conf b/conf/modules.d/greylist.conf index ecbd42aec..4d489a3fd 100644 --- a/conf/modules.d/greylist.conf +++ b/conf/modules.d/greylist.conf @@ -22,7 +22,7 @@ greylist { expire = 1d; # 1 day by default timeout = 5m; # 5 minutes by default key_prefix = "rg"; # default hash name - max_data_len = "10k"; # default data limit to hash + max_data_len = 10k; # default data limit to hash message = "Try again later"; # default greylisted message #symbol = 'GREYLIST'; # Symbol to insert action = "soft reject"; # default greylisted action |