From 1c748c7439566b01ff96ae1e58b54c2e11600120 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 12 Jun 2020 10:31:14 +0100 Subject: [PATCH] [Minor] Register some missing symbols --- src/plugins/lua/asn.lua | 1 + src/plugins/lua/greylist.lua | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/plugins/lua/asn.lua b/src/plugins/lua/asn.lua index 89bc0dc85..4c7d73dba 100644 --- a/src/plugins/lua/asn.lua +++ b/src/plugins/lua/asn.lua @@ -137,6 +137,7 @@ if configure_asn_module() then parent = id, type = 'virtual', flags = 'empty', + score = 0, }) end else diff --git a/src/plugins/lua/greylist.lua b/src/plugins/lua/greylist.lua index faeaaf897..152788175 100644 --- a/src/plugins/lua/greylist.lua +++ b/src/plugins/lua/greylist.lua @@ -497,11 +497,17 @@ if opts then callback = greylist_set, priority = 6, }) - rspamd_config:register_symbol({ + local id = rspamd_config:register_symbol({ name = 'GREYLIST_CHECK', type = 'prefilter', callback = greylist_check, priority = 6, }) + rspamd_config:register_symbol({ + name = settings.symbol, + type = 'virtual', + parent = id, + score = 0, + }) end end -- 2.39.5