summaryrefslogtreecommitdiffstats
path: root/rules/forwarding.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rules/forwarding.lua')
-rw-r--r--rules/forwarding.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/forwarding.lua b/rules/forwarding.lua
index c07574c61..cbbb62c53 100644
--- a/rules/forwarding.lua
+++ b/rules/forwarding.lua
@@ -23,7 +23,7 @@ rspamd_config.FWD_GOOGLE = {
if not (task:has_from(1) and task:has_recipients(1)) then
return false
end
- local envfrom = task:get_from(1)
+ local envfrom = task:get_from{'smtp', 'orig'}
local envrcpts = task:get_recipients(1)
-- Forwarding will only be to a single recipient
if #envrcpts > 1 then return false end