]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Disable Received tokens 4070/head
authormoisseev <moiseev@mezonplus.ru>
Thu, 10 Feb 2022 08:53:58 +0000 (11:53 +0300)
committermoisseev <moiseev@mezonplus.ru>
Thu, 10 Feb 2022 08:53:58 +0000 (11:53 +0300)
lualib/lua_stat.lua

index 920f20205cc87fc164009a80ece50e3ed6532e1d..39eb21b0e61be554090a39e64b97df4c7566a84d 100644 (file)
@@ -771,6 +771,11 @@ local function get_meta_stat_tokens(task, res, i)
     i = i + 1
   end
 
+  --[[
+  -- Disabled.
+  -- 1. Depending on the source the message has a different set of Received
+  -- headers as the receiving MTA adds another Received header.
+  -- 2. The usefulness of the Received tokens is questionable.
   local rh = task:get_received_headers()
 
   if rh and #rh > 0 then
@@ -789,6 +794,7 @@ local function get_meta_stat_tokens(task, res, i)
       end
     end
   end
+  ]]--
 
   return i
 end