From: Vsevolod Stakhov Date: Fri, 12 Jun 2020 09:31:14 +0000 (+0100) Subject: [Minor] Register some missing symbols X-Git-Tag: 2.6~329 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1c748c7439566b01ff96ae1e58b54c2e11600120;p=rspamd.git [Minor] Register some missing symbols --- 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