diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-09-10 14:27:15 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-09-10 14:27:15 +0100 |
commit | ec85b5f367893a9cdc99b1543bbcde849d92e7ef (patch) | |
tree | c657d3963b526bf32d0f883f48da14b80d98327a /src/plugins/lua/greylist.lua | |
parent | e49a9382bee59c794293e036171be67f7016962e (diff) | |
download | rspamd-ec85b5f367893a9cdc99b1543bbcde849d92e7ef.tar.gz rspamd-ec85b5f367893a9cdc99b1543bbcde849d92e7ef.zip |
[Minor] Remove priorities from idempotent filters
Diffstat (limited to 'src/plugins/lua/greylist.lua')
-rw-r--r-- | src/plugins/lua/greylist.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/lua/greylist.lua b/src/plugins/lua/greylist.lua index ae2cd02f9..04e003a1b 100644 --- a/src/plugins/lua/greylist.lua +++ b/src/plugins/lua/greylist.lua @@ -515,12 +515,14 @@ if opts then type = 'postfilter', callback = greylist_set, priority = 6, + augmentations = {string.format("timeout=%f", redis_params.timeout or 0.0)}, }) local id = rspamd_config:register_symbol({ name = 'GREYLIST_CHECK', type = 'prefilter', callback = greylist_check, priority = 6, + augmentations = {string.format("timeout=%f", redis_params.timeout or 0.0)} }) rspamd_config:register_symbol({ name = settings.symbol, |