diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-09-10 18:43:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-10 18:43:39 +0100 |
commit | 67c8b53122b6538f66cee813b9ec6d1cbe86211e (patch) | |
tree | fc74ffd84156b8ec9ba3a500adcf861c99252539 /src | |
parent | 4f96d783482b44137d4a263a216278424596c425 (diff) | |
parent | eaa05cc69af525ba74567b7790ebdc836099c20b (diff) | |
download | rspamd-67c8b53122b6538f66cee813b9ec6d1cbe86211e.tar.gz rspamd-67c8b53122b6538f66cee813b9ec6d1cbe86211e.zip |
Merge pull request #4594 from fatalbanana/symbols_prefixes
[Fix] rbl: really fix dependency registration when symbols_prefixes i…
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/rbl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index b0ea8c63e..6dce0e0f1 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -1094,7 +1094,7 @@ local function add_rbl(key, rbl, global_opts) lua_util.debugm(N, rspamd_config, 'rule dump for %s: %s', rbl.symbol, rbl) - local check_sym = rbl.symbol_prefixes and rbl.symbol .. '_CHECK' or rbl.symbol + local check_sym = rbl.symbols_prefixes and rbl.symbol .. '_CHECK' or rbl.symbol if rbl.dkim then rspamd_config:register_dependency(check_sym, 'DKIM_CHECK') |