From 890e7fe0e079b946c34986f5c65fbd05626486d0 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 7 Aug 2023 13:32:48 +0100 Subject: [Feature] Check for plugin configuration errors on `configtest` --- lualib/lua_cfg_utils.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'lualib/lua_cfg_utils.lua') diff --git a/lualib/lua_cfg_utils.lua b/lualib/lua_cfg_utils.lua index 141b497bc..e07a3ae05 100644 --- a/lualib/lua_cfg_utils.lua +++ b/lualib/lua_cfg_utils.lua @@ -19,6 +19,7 @@ limitations under the License. -- This module contains utility functions for configuration of Rspamd modules --]] +local rspamd_logger = require "rspamd_logger" local exports = {} --[[[ @@ -64,4 +65,20 @@ exports.push_config_error = function(module, err) 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 \ No newline at end of file -- cgit v1.2.3