mirror of https://github.com/rspamd/rspamd.git
Rapid spam filtering system
https://rspamd.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.6 KiB
84 lines
2.6 KiB
--[[
|
|
Copyright (c) 2023, Vsevolod Stakhov <vsevolod@rspamd.com>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
]]--
|
|
|
|
--[[[
|
|
-- @module lua_cfg_utils
|
|
-- This module contains utility functions for configuration of Rspamd modules
|
|
--]]
|
|
|
|
local rspamd_logger = require "rspamd_logger"
|
|
local exports = {}
|
|
|
|
--[[[
|
|
-- @function lua_util.disable_module(modname, how[, reason])
|
|
-- Disables a plugin
|
|
-- @param {string} modname name of plugin to disable
|
|
-- @param {string} how 'redis' to disable redis, 'config' to disable startup
|
|
-- @param {string} reason optional reason for failure
|
|
--]]
|
|
exports.disable_module = function(modname, how, reason)
|
|
if rspamd_plugins_state.enabled[modname] then
|
|
rspamd_plugins_state.enabled[modname] = nil
|
|
end
|
|
|
|
if how == 'redis' then
|
|
rspamd_plugins_state.disabled_redis[modname] = {}
|
|
elseif how == 'config' then
|
|
rspamd_plugins_state.disabled_unconfigured[modname] = {}
|
|
elseif how == 'experimental' then
|
|
rspamd_plugins_state.disabled_experimental[modname] = {}
|
|
elseif how == 'failed' then
|
|
rspamd_plugins_state.disabled_failed[modname] = { reason = reason }
|
|
else
|
|
rspamd_plugins_state.disabled_unknown[modname] = {}
|
|
end
|
|
end
|
|
|
|
--[[[
|
|
-- @function lua_util.push_config_error(module, err)
|
|
-- Pushes a configuration error to the state
|
|
-- @param {string} module name of module
|
|
-- @param {string} err error string
|
|
--]]
|
|
exports.push_config_error = function(module, err)
|
|
if not rspamd_plugins_state.config_errors then
|
|
rspamd_plugins_state.config_errors = {}
|
|
end
|
|
|
|
if not rspamd_plugins_state.config_errors[module] then
|
|
rspamd_plugins_state.config_errors[module] = {}
|
|
end
|
|
|
|
table.insert(rspamd_plugins_state.config_errors[module], err)
|
|
end
|
|
|
|
exports.check_configuration_errors = function()
|
|
local ret = true
|
|
|
|
if type(rspamd_plugins_state.config_errors) == 'table' then
|
|
-- We have some errors found during the configuration, so we need to show them
|
|
for m, errs in pairs(rspamd_plugins_state.config_errors) do
|
|
for _, err in ipairs(errs) do
|
|
rspamd_logger.errx(rspamd_config, 'configuration error: module %s: %s', m, err)
|
|
ret = false
|
|
end
|
|
end
|
|
end
|
|
|
|
return ret
|
|
end
|
|
|
|
return exports
|