From: Vsevolod Stakhov Date: Tue, 24 Sep 2019 11:22:18 +0000 (+0100) Subject: [Minor] Rbl: Moar fixes to the registration logic X-Git-Tag: 2.0~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a86679574a9fddd6c174d260c8b477834f5677c;p=thirdparty%2Frspamd.git [Minor] Rbl: Moar fixes to the registration logic --- diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index 96d4425253..caaee4b970 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -28,7 +28,7 @@ rbl { rbls { spamhaus { - symbol = "RBL_SPAMHAUS"; + symbol = "SPAMHAUS"; # Augmented by prefixes rbl = "zen.spamhaus.org"; ipv6 = true; received = true; diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 5c007b6c3d..cf474f69c5 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -867,24 +867,24 @@ local function add_rbl(key, rbl, global_opts) local id if rbl.symbols_prefixes then - if not rbl.symbol:match('_CHECK$') then - rbl.symbol = rbl.symbol .. '_CHECK' - end - id = rspamd_config:register_symbol{ type = 'callback', callback = callback, - name = rbl.symbol, + name = rbl.symbol .. '_CHECK', flags = table.concat(flags_tbl, ',') } for _,prefix in pairs(rbl.symbols_prefixes) do + -- For unknown results... rspamd_config:register_symbol{ type = 'virtual', parent = id, name = prefix .. '_' .. rbl.symbol, } end + if not rbl.is_whitelist and rbl.ignore_whitelist == false then + table.insert(black_symbols, rbl.symbol .. '_CHECK') + end else id = rspamd_config:register_symbol{ type = 'callback', @@ -892,6 +892,9 @@ local function add_rbl(key, rbl, global_opts) name = rbl.symbol, flags = table.concat(flags_tbl, ',') } + if not rbl.is_whitelist and rbl.ignore_whitelist == false then + table.insert(black_symbols, rbl.symbol) + end end @@ -967,9 +970,6 @@ local function add_rbl(key, rbl, global_opts) end end - if not rbl.is_whitelist and rbl.ignore_whitelist == false then - table.insert(black_symbols, rbl.symbol) - end -- Process monitored if not rbl.disable_monitoring then if not monitored_addresses[rbl.rbl] then