Browse Source

[Minor] Remove obsoleted global function

tags/3.5
Vsevolod Stakhov 1 year ago
parent
commit
dd4e6a1cac
No account linked to committer's email address

+ 0
- 1
.luacheckrc View File

@@ -24,7 +24,6 @@ globals = {
'rspamd_redis_make_request',
'rspamd_str_split',
'rspamd_version',
'rspamd_map_add',
'rspamd_maps',
'rspamd_plugins_state',
'rspamadm',

+ 2
- 1
src/plugins/lua/clickhouse.lua View File

@@ -1389,7 +1389,8 @@ if opts then
rspamd_logger.infox(rspamd_config, 'no servers are specified, disabling module')
lua_util.disable_module(N, "config")
else
settings['from_map'] = rspamd_map_add('clickhouse', 'from_tables',
local lua_maps = require "lua_maps"
settings['from_map'] = lua_maps.map_add('clickhouse', 'from_tables',
'regexp', 'clickhouse specific domains')

settings.upstream = upstream_list.create(rspamd_config,

+ 2
- 1
src/plugins/lua/once_received.lua View File

@@ -196,7 +196,8 @@ if opts then
good_hosts = v
end
elseif n == 'whitelist' then
whitelist = rspamd_map_add('once_received', 'whitelist', 'radix',
local lua_maps = require "lua_maps"
whitelist = lua_maps.map_add('once_received', 'whitelist', 'radix',
'once received whitelist')
elseif n == 'symbol_mx' then
symbol_mx = v

+ 1
- 1
src/plugins/lua/reputation.lua View File

@@ -410,7 +410,7 @@ local function ip_reputation_init(rule)
local cfg = rule.selector.config

if cfg.asn_cc_whitelist then
cfg.asn_cc_whitelist = rspamd_map_add('reputation',
cfg.asn_cc_whitelist = lua_maps.map_add('reputation',
'asn_cc_whitelist',
'map',
'IP score whitelisted ASNs/countries')

Loading…
Cancel
Save