aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-01-22 16:50:38 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-01-22 16:50:38 +0000
commit78600f0726e8a4e29e3ba9eaf6aca376d864ee57 (patch)
tree83183011bd45a0411618c4adfe303eff8c787d5a /src/plugins
parent44e9d448e1b51921ca20a5591c506eab072b7e4c (diff)
downloadrspamd-78600f0726e8a4e29e3ba9eaf6aca376d864ee57.tar.gz
rspamd-78600f0726e8a4e29e3ba9eaf6aca376d864ee57.zip
Erm, forgot to add the real fix to google groups
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/lua/maillist.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/lua/maillist.lua b/src/plugins/lua/maillist.lua
index b5adacc79..51222f9b8 100644
--- a/src/plugins/lua/maillist.lua
+++ b/src/plugins/lua/maillist.lua
@@ -212,7 +212,11 @@ local function check_ml_googlegroup(task)
local header = task:get_header('X-Google-Loop')
if not header then
- return false
+ header = task:get_header('X-Google-Group-Id')
+
+ if not header then
+ return false
+ end
end
return check_rfc2919(task)