Browse Source

[Minor] Do not punish OpenPGP/MIME attachments

Fixes #1655
tags/1.6.0
Julien Schmidt 7 years ago
parent
commit
df802d3790
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      rules/headers_checks.lua

+ 4
- 1
rules/headers_checks.lua View File

@@ -897,7 +897,10 @@ rspamd_config.CTYPE_MISSING_DISPOSITION = {
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
if ci or (#parts > 1 and (cd and cd:find('filename=.+%.asc') ~= nil))
then
return false
end
return true
end
end

Loading…
Cancel
Save