summaryrefslogtreecommitdiffstats
path: root/rules/headers_checks.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rules/headers_checks.lua')
-rw-r--r--rules/headers_checks.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/rules/headers_checks.lua b/rules/headers_checks.lua
index cc28cab0b..585c97b0b 100644
--- a/rules/headers_checks.lua
+++ b/rules/headers_checks.lua
@@ -896,6 +896,8 @@ rspamd_config.CTYPE_MISSING_DISPOSITION = {
if (ct and ct:lower():match('^application/octet%-stream') ~= nil) then
local cd = p:get_header('Content-Disposition')
if (not cd) or (cd and cd:lower():find('^attachment') == nil) then
+ local ci = p:get_header('Content-ID')
+ if ci then return false end
return true
end
end
@@ -958,4 +960,4 @@ rspamd_config.INVALID_RCPT_8BIT = {
description = 'Invalid 8bit character in recipients headers',
score = 6.0,
group = 'headers'
-} \ No newline at end of file
+}