]> source.dussan.org Git - rspamd.git/commitdiff
Fix error in headers_checks.lua 4934/head
authorDmitriy Alekseev <1865999+dragoangel@users.noreply.github.com>
Fri, 19 Apr 2024 18:33:44 +0000 (21:33 +0300)
committerGitHub <noreply@github.com>
Fri, 19 Apr 2024 18:33:44 +0000 (21:33 +0300)
rules/headers_checks.lua

index 9a716288b31ebe52434ac116e93714b7ff2a4c89..905c8db62811c67e535120959e36ea7989ef7526 100644 (file)
@@ -254,7 +254,7 @@ local check_replyto_id = rspamd_config:register_symbol({
         then
           task:insert_result('REPLYTO_EQ_TO_ADDR', 1.0)
         end
-      elseif to[1].domain and rt[1].domain then
+      elseif (to and to[1] and to[1].domain and rt[1].domain) then
         if (util.strequal_caseless(to[1].domain, rt[1].domain)) then
           task:insert_result('REPLYTO_DOM_EQ_TO_DOM', 1.0)
         else