Procházet zdrojové kódy

[Minor] Do not punish OpenPGP/MIME attachments

Fixes #1655
tags/1.6.0
Julien Schmidt před 7 roky
rodič
revize
df802d3790
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. 4
    1
      rules/headers_checks.lua

+ 4
- 1
rules/headers_checks.lua Zobrazit soubor

@@ -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

Načítá se…
Zrušit
Uložit