From: Vsevolod Stakhov Date: Thu, 13 Jul 2017 18:18:12 +0000 (+0100) Subject: [Rules] Penalise R_BAD_CTE_7BIT for utf8 messages X-Git-Tag: 1.6.4~22^2~14 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a872704751932298d098f97d1d26172629ad532f;p=rspamd.git [Rules] Penalise R_BAD_CTE_7BIT for utf8 messages --- diff --git a/rules/misc.lua b/rules/misc.lua index bc9b044eb..2e4d25418 100644 --- a/rules/misc.lua +++ b/rules/misc.lua @@ -597,13 +597,26 @@ rspamd_config.R_BAD_CTE_7BIT = { for _,p in ipairs(tp) do local cte = p:get_mimepart():get_cte() or '' if cte ~= '8bit' and p:has_8bit_raw() then - return true,1.0,cte + local _,_,attrs = p:get_mimepart():get_type_full() + local mul = 1.0 + local params = {cte} + if attrs then + print(attrs.charset) + if attrs.charset and attrs.charset:lower() == "utf-8" then + -- Penalise rule as people don't know that utf8 is surprisingly + -- eight bit encoding + mul = 0.3 + table.insert(params, "utf8") + end + end + + return true,mul,params end end return false end, - score = 4.0, + score = 3.5, description = 'Detects bad content-transfer-encoding for text parts', group = 'header' }