From a6bb206c6ee2b0ddc3364a3b6da7e532dccaea33 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Thu, 17 Mar 2016 09:59:55 +0300 Subject: [PATCH] [Minor] Raise `LONG_SUBJ` threshold --- rules/misc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/misc.lua b/rules/misc.lua index f3476ee81..87687720a 100644 --- a/rules/misc.lua +++ b/rules/misc.lua @@ -127,7 +127,7 @@ rspamd_config.SUBJ_ALL_CAPS = { rspamd_config.LONG_SUBJ = { callback = function(task) local sbj = task:get_header('Subject') - if sbj and util.strlen_utf8(sbj) > 150 then + if sbj and util.strlen_utf8(sbj) > 200 then return true end return false -- 2.39.5