From: Alexander Moisseev Date: Thu, 17 Mar 2016 06:59:55 +0000 (+0300) Subject: [Minor] Raise `LONG_SUBJ` threshold X-Git-Tag: 1.2.0~21^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F559%2Fhead;p=thirdparty%2Frspamd.git [Minor] Raise `LONG_SUBJ` threshold --- diff --git a/rules/misc.lua b/rules/misc.lua index f3476ee810..87687720a3 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