Explorar el Código

[Rules] Improve URL_COUNT_ODD rule

tags/1.6.0
Vsevolod Stakhov hace 7 años
padre
commit
acd5eaa40c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      rules/misc.lua

+ 1
- 1
rules/misc.lua Ver fichero

@@ -288,7 +288,7 @@ rspamd_config.URI_COUNT_ODD = {
local urls = task:get_urls() or {}
local nurls = fun.filter(function(url)
return not url:is_html_displayed()
end, urls):foldl(function(acc, val) return acc + 1 end, 0)
end, urls):foldl(function(acc, val) return acc + val:get_count() end, 0)

if nurls % 2 == 1 then
return true, 1.0, tostring(nurls)

Cargando…
Cancelar
Guardar