From eb5092344780be868a753dedfdc00e296f0262ad Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Mon, 7 Nov 2016 16:05:16 +0200 Subject: [PATCH] [Minor] Remove one more global --- src/plugins/lua/maillist.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/lua/maillist.lua b/src/plugins/lua/maillist.lua index 1e4c104de..eb67a4f12 100644 --- a/src/plugins/lua/maillist.lua +++ b/src/plugins/lua/maillist.lua @@ -168,7 +168,7 @@ end -- RFC 2369 headers local function check_rfc2369(task) - header = task:get_header('List-Unsubscribe') + local header = task:get_header('List-Unsubscribe') if not header or not string.find(header, '<.+>') then return false end -- 2.39.5