]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Make API consistent
authorVsevolod Stakhov <vsevolod@rspamd.com>
Fri, 27 Sep 2024 11:58:01 +0000 (12:58 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Fri, 27 Sep 2024 11:58:01 +0000 (12:58 +0100)
rules/regexp/headers.lua
src/lua/lua_config.c

index daa1e378d2c9d97e7fdb73fb9032ca920e385416..44fa964e39abbb703e8e9ad2eebcabaf52d72027 100644 (file)
@@ -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
index e3f8b2e573469f3b08e7cf956070a923685e1211..0b4d208b475ca1b0ae306c106ee6e1e720960b40 100644 (file)
@@ -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);