From: Vsevolod Stakhov Date: Wed, 29 Apr 2015 14:57:16 +0000 (+0100) Subject: Fix hfilter rule. X-Git-Tag: 0.9.0~122 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=107f230637fbfe74fabc68a874b216944599de6c;p=rspamd.git Fix hfilter rule. --- diff --git a/conf/lua/hfilter.lua b/conf/lua/hfilter.lua index a9ff41f09..159b03a77 100644 --- a/conf/lua/hfilter.lua +++ b/conf/lua/hfilter.lua @@ -107,10 +107,6 @@ local config = { ['url_enabled'] = false } -local function trim1(s) - return (s:gsub("^%s*(.-)%s*$", "%1")) -end - local function check_regexp(str, regexp_text) local re = rspamd_regexp.create_cached(regexp_text, 'i') if re:match(str) then return true end @@ -241,7 +237,7 @@ local function hfilter(task) elseif text_parts_count == 1 and selected_text_part and selected_text_part:get_length() < 1024 then -- We got a single text part with the total length < 1024 symbols. local part_text = selected_text_part:get_content() - if part_text and not string.find(trim1(part_text), "\n") then + if part_text and part_text:get_lines_count() < 2 then task:insert_result('HFILTER_URL_ONELINE', 1.00) end end