]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Move hostname resolution up to cache it 4926/head
authorLucas Rolff <lucas@lucasrolff.com>
Wed, 17 Apr 2024 14:57:49 +0000 (22:57 +0800)
committerLucas Rolff <lucas@lucasrolff.com>
Wed, 17 Apr 2024 14:57:49 +0000 (22:57 +0800)
Instead of calling get_hostname() for every processed message, we instead reuse the variable value from rspamd boot time

lualib/lua_selectors/extractors.lua

index 7a7f41a2f06be9718665d74c114e4b3562aaf44d..97db6504452d357259a8e60d119759e407693bef 100644 (file)
@@ -25,6 +25,8 @@ local maps = require "lua_selectors/maps"
 local E = {}
 local M = "selectors"
 
+local HOSTNAME = rspamd_util.get_hostname()
+
 local url_flags_ts = ts.array_of(ts.one_of(lua_util.keys(rspamd_url.flags))):is_optional()
 
 local function gen_exclude_flags_filter(exclude_flags)
@@ -563,7 +565,7 @@ The first argument must be header name.]],
   },
   ['rspamd_hostname'] = {
     ['get_value'] = function(task)
-      return rspamd_util.get_hostname(), 'string'
+      return HOSTNAME, 'string'
     end,
     ['description'] = 'Get hostname of the filter server',
   },