ソースを参照

[Minor] SPOOF_REPLY_TO: mitigate some possible FPs on mailing list posts

tags/1.6.0
Andrew Lewis 7年前
コミット
f2c10417d9
1個のファイルの変更2行の追加0行の削除
  1. 2
    0
      rules/misc.lua

+ 2
- 0
rules/misc.lua ファイルの表示

@@ -570,6 +570,8 @@ rspamd_config.SPOOF_REPLYTO = {
-- SMTP recipients must contain From domain
to = task:get_recipients(1)
if not to then return false end
-- Try mitigate some possible FPs on mailing list posts
if #to == 1 and util.strequal_caseless(to[1].addr, from[1].addr) then return false end
local found_fromdom = false
for _, t in ipairs(to) do
if util.strequal_caseless(t.domain, from[1].domain) then

読み込み中…
キャンセル
保存