diff options
author | Andrew Lewis <nerf@judo.za.org> | 2023-11-03 17:26:53 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2023-11-03 17:26:53 +0200 |
commit | eeabb14d927ebbf5aa92da60f55651e0bd143276 (patch) | |
tree | 6682d30856c3a3a20ae47beb667a5c5d846d687b /lualib | |
parent | 5ac0eed7565e26621b5a376c37f875b60399e010 (diff) | |
download | rspamd-eeabb14d927ebbf5aa92da60f55651e0bd143276.tar.gz rspamd-eeabb14d927ebbf5aa92da60f55651e0bd143276.zip |
[Fix] rbl: fix `exclude_local`
Diffstat (limited to 'lualib')
-rw-r--r-- | lualib/plugins/rbl.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lualib/plugins/rbl.lua b/lualib/plugins/rbl.lua index 320fd7725..bf8bd3cfa 100644 --- a/lualib/plugins/rbl.lua +++ b/lualib/plugins/rbl.lua @@ -49,7 +49,6 @@ local default_options = { ['default_unknown'] = false, ['default_dkim_domainonly'] = true, ['default_emails_domainonly'] = false, - ['default_exclude_private_ips'] = true, ['default_exclude_users'] = false, ['default_exclude_local'] = true, ['default_no_ip'] = false, @@ -91,7 +90,6 @@ local rule_schema_tbl = { emails_domainonly = ts.boolean:is_optional(), enabled = ts.boolean:is_optional(), exclude_local = ts.boolean:is_optional(), - exclude_private_ips = ts.boolean:is_optional(), exclude_users = ts.boolean:is_optional(), from = ts.boolean:is_optional(), hash = ts.one_of { "sha1", "sha256", "sha384", "sha512", "md5", "blake2" }:is_optional(), |