From: Vsevolod Stakhov Date: Fri, 22 Jan 2016 16:50:38 +0000 (+0000) Subject: Erm, forgot to add the real fix to google groups X-Git-Tag: 1.1.2~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78600f0726e8a4e29e3ba9eaf6aca376d864ee57;p=thirdparty%2Frspamd.git Erm, forgot to add the real fix to google groups --- diff --git a/src/plugins/lua/maillist.lua b/src/plugins/lua/maillist.lua index b5adacc79a..51222f9b8a 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)