Browse Source

Fix rule when SMTP from is unavailable

tags/1.1.3
Vsevolod Stakhov 8 years ago
parent
commit
91d772ab6f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      rules/misc.lua

+ 1
- 1
rules/misc.lua View File

@@ -195,7 +195,7 @@ rspamd_config.HEADER_FORGED_MDN = {
if header_mdn and not header_rp then return true end
if header_rp and not header_mdn then return false end

if header_mdn['addr'] ~= header_rp['addr'] then
if header_mdn and header_mdn['addr'] ~= header_rp['addr'] then
return true
end


Loading…
Cancel
Save