Browse Source

[Minor] Fix OMOGRAPH_URL for the changes in the phished flag

tags/3.0
Vsevolod Stakhov 3 years ago
parent
commit
ba5b6773e2
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      rules/misc.lua

+ 4
- 1
rules/misc.lua View File

@@ -399,7 +399,10 @@ rspamd_config.OMOGRAPH_URL = {
if u:is_phished() then

local h1 = u:get_host()
local h2 = u:get_phished():get_host()
local h2 = u:get_phished()
if h2 then -- Due to changes of the phished flag in 2.8
h2 = h2:get_host()
end
if h1 and h2 then
local selt = string.format('%s->%s', h1, h2)
if not seen[selt] and util.is_utf_spoofed(h1, h2) then

Loading…
Cancel
Save