diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-22 16:50:38 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-22 16:50:38 +0000 |
commit | 78600f0726e8a4e29e3ba9eaf6aca376d864ee57 (patch) | |
tree | 83183011bd45a0411618c4adfe303eff8c787d5a /src/plugins | |
parent | 44e9d448e1b51921ca20a5591c506eab072b7e4c (diff) | |
download | rspamd-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.lua | 6 |
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) |