diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2016-03-17 09:59:55 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2016-03-17 09:59:55 +0300 |
commit | a6bb206c6ee2b0ddc3364a3b6da7e532dccaea33 (patch) | |
tree | 06aac5db7992289356c4a0eace26a0ef8d3e8533 /rules | |
parent | 095e129405958c6d1313b479d6ecd9d6c7b4a76d (diff) | |
download | rspamd-a6bb206c6ee2b0ddc3364a3b6da7e532dccaea33.tar.gz rspamd-a6bb206c6ee2b0ddc3364a3b6da7e532dccaea33.zip |
[Minor] Raise `LONG_SUBJ` threshold
Diffstat (limited to 'rules')
-rw-r--r-- | rules/misc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |