From 7f66a4fd9a4141c4fdfe172c03e94f8e2b0ab679 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 15 May 2018 17:11:57 +0100 Subject: [PATCH] [Minor] Fix R_MISSING_CHARSET for non text/plain parts --- rules/regexp/headers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/regexp/headers.lua b/rules/regexp/headers.lua index 75ed91fd1..5658608fb 100644 --- a/rules/regexp/headers.lua +++ b/rules/regexp/headers.lua @@ -119,7 +119,7 @@ reconf['R_RCVD_SPAMBOTS'] = { -- Charset is missing in message reconf['R_MISSING_CHARSET'] = { - re = string.format('!is_empty_body() & content_type_is_type(text) & !content_type_has_param(charset) & !%s', + re = string.format('!is_empty_body() & content_type_is_type(text) & content_type_is_subtype(plain) & !content_type_has_param(charset) & !%s', 'compare_transfer_encoding(7bit)'), score = 2.5, description = 'Charset is missing in a message', -- 2.39.5