]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
Fix hfilter URL_ONELINE rule.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 1 May 2015 16:22:25 +0000 (17:22 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 1 May 2015 16:22:25 +0000 (17:22 +0100)
conf/lua/hfilter.lua

index 159b03a77383c6ad3edd841b6471ae2ee265d251..57361b3b89b3eb3b83eb2209dfb9bd75bfb6dc06 100644 (file)
@@ -235,9 +235,7 @@ local function hfilter(task)
             if total_url_len + 7 > total_parts_len then
               task:insert_result('HFILTER_URL_ONLY', 1.00)
             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 part_text:get_lines_count() < 2 then
+              if selected_text_part:get_lines_count() < 2 then
                 task:insert_result('HFILTER_URL_ONELINE', 1.00)
               end
             end