From 78600f0726e8a4e29e3ba9eaf6aca376d864ee57 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 22 Jan 2016 16:50:38 +0000 Subject: [PATCH] Erm, forgot to add the real fix to google groups --- src/plugins/lua/maillist.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) -- 2.39.5