diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-12-09 17:48:55 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-12-09 17:48:55 +0000 |
commit | 32170ed25521b59d4b88e3eb245c3afbc1b6e52d (patch) | |
tree | 4450a9634d34454b8f34ab5fcf5a60dc903b5ca5 | |
parent | bbacfde03e8158e9c225d8acfb521deb984822a7 (diff) | |
download | rspamd-32170ed25521b59d4b88e3eb245c3afbc1b6e52d.tar.gz rspamd-32170ed25521b59d4b88e3eb245c3afbc1b6e52d.zip |
[Minor] Spamassassin: Fix shadow results caching
-rw-r--r-- | src/plugins/lua/spamassassin.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/spamassassin.lua b/src/plugins/lua/spamassassin.lua index 2b0e5e44e..a0aac9dbe 100644 --- a/src/plugins/lua/spamassassin.lua +++ b/src/plugins/lua/spamassassin.lua @@ -1492,7 +1492,7 @@ local function post_process() return sopt ~= k end - if not already_processed then + if not already_processed[res_name or 'default'] then -- Execute symbol local function exec_symbol(cur_res) local res,trace = expression:process_traced(gen_process_atom_cb(cur_res, task)) |