diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-11-18 13:16:26 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-11-18 13:16:26 +0000 |
commit | 3616d6326b5c3325e460e71f9e7b0c2e66402fa7 (patch) | |
tree | c13d517561ae7ea9aa4275fb6618fa39d361af97 | |
parent | fb4265765e0a2932c1d43c5167482feee8bc461a (diff) | |
download | rspamd-3616d6326b5c3325e460e71f9e7b0c2e66402fa7.tar.gz rspamd-3616d6326b5c3325e460e71f9e7b0c2e66402fa7.zip |
[Fix] Greylisting set phase is not idempotent
-rw-r--r-- | src/plugins/lua/greylist.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/greylist.lua b/src/plugins/lua/greylist.lua index 32338f7d5..11ab2a2de 100644 --- a/src/plugins/lua/greylist.lua +++ b/src/plugins/lua/greylist.lua @@ -429,7 +429,7 @@ if opts then else rspamd_config:register_symbol({ name = 'GREYLIST_SAVE', - type = 'idempotent', + type = 'postfilter', callback = greylist_set, priority = 6 }) |