diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-11-14 15:54:21 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-11-14 15:54:21 +0200 |
commit | 3590c28e73e34649d15c401db7ee6f4142a8a753 (patch) | |
tree | 2f905347a97129679251cc77d53d72291061df4a /src/plugins/lua/maillist.lua | |
parent | aedd9207b6d7e03bb13fb3866a3d54d32982d12b (diff) | |
download | rspamd-3590c28e73e34649d15c401db7ee6f4142a8a753.tar.gz rspamd-3590c28e73e34649d15c401db7ee6f4142a8a753.zip |
[Minor] Lint Lua plugins & global functions
Diffstat (limited to 'src/plugins/lua/maillist.lua')
-rw-r--r-- | src/plugins/lua/maillist.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/lua/maillist.lua b/src/plugins/lua/maillist.lua index eb67a4f12..6a22fd1bf 100644 --- a/src/plugins/lua/maillist.lua +++ b/src/plugins/lua/maillist.lua @@ -17,7 +17,6 @@ limitations under the License. -- Module for checking mail list headers local symbol = 'MAILLIST' -local rspamd_logger = require "rspamd_logger" -- EZMLM -- Mailing-List: .*run by ezmlm -- Precedence: bulk @@ -219,7 +218,7 @@ local function check_ml_majordomo(task) return false end - local header = task:get_header('Precedence') + header = task:get_header('Precedence') if not header or (header ~= 'list' and header ~= 'bulk') then return false end |