From: Vsevolod Stakhov Date: Fri, 27 Sep 2024 11:58:01 +0000 (+0100) Subject: [Minor] Make API consistent X-Git-Tag: 3.10.0~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6ed56a333ca7ef1b2a5a007d67fda0759af1a280;p=rspamd.git [Minor] Make API consistent --- diff --git a/rules/regexp/headers.lua b/rules/regexp/headers.lua index daa1e378d..44fa964e3 100644 --- a/rules/regexp/headers.lua +++ b/rules/regexp/headers.lua @@ -56,7 +56,7 @@ reconf['TO_NEEDS_ENCODING'] = { group = 'headers', } -if rspamd_config:is_mime_utf() then +if rspamd_config:is_mime_utf8() then -- Disable some of the rules preserving the underlying logic reconf['FROM_NEEDS_ENCODING'].condition = function() return false diff --git a/src/lua/lua_config.c b/src/lua/lua_config.c index e3f8b2e57..0b4d208b4 100644 --- a/src/lua/lua_config.c +++ b/src/lua/lua_config.c @@ -795,11 +795,11 @@ LUA_FUNCTION_DEF(config, get_cpu_flags); LUA_FUNCTION_DEF(config, has_torch); /*** - * @method rspamd_config:is_mime_utf() + * @method rspamd_config:is_mime_utf8() * Returns true if Rspamd is configured to use UTF for mime processing * @return {boolean} true if mime utf is enabled */ -LUA_FUNCTION_DEF(config, is_mime_utf); +LUA_FUNCTION_DEF(config, is_mime_utf8); /*** * @method rspamd_config:experimental_enabled() @@ -928,7 +928,7 @@ static const struct luaL_reg configlib_m[] = { LUA_INTERFACE_DEF(config, set_peak_cb), LUA_INTERFACE_DEF(config, get_cpu_flags), LUA_INTERFACE_DEF(config, has_torch), - LUA_INTERFACE_DEF(config, is_mime_utf), + LUA_INTERFACE_DEF(config, is_mime_utf8), LUA_INTERFACE_DEF(config, experimental_enabled), LUA_INTERFACE_DEF(config, load_ucl), LUA_INTERFACE_DEF(config, parse_rcl), @@ -4237,7 +4237,7 @@ lua_config_has_torch(lua_State *L) } static int -lua_config_is_mime_utf(lua_State *L) +lua_config_is_mime_utf8(lua_State *L) { LUA_TRACE_POINT; struct rspamd_config *cfg = lua_check_config(L, 1);