From: Alexey AL Date: Sat, 7 Feb 2015 15:46:31 +0000 (+0300) Subject: Fix: if not exist Date-header X-Git-Tag: 0.9.0~747^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b460a002a03231555a54383deb233df93661af92;p=rspamd.git Fix: if not exist Date-header --- diff --git a/conf/lua/rspamd.lua b/conf/lua/rspamd.lua index 1b06fdc1a..3aa032244 100644 --- a/conf/lua/rspamd.lua +++ b/conf/lua/rspamd.lua @@ -45,8 +45,8 @@ rspamd_config.DATE_IN_FUTURE = function(task) if rspamd_config:get_api_version() >= 5 then local dm = task:get_date{format = 'message'} local dt = task:get_date{format = 'connect'} - -- An hour - if dm - dt > 7200 then + -- An 2 hour + if dm > 0 and dm - dt > 7200 then return true end end @@ -58,7 +58,7 @@ rspamd_config.DATE_IN_PAST = function(task) local dm = task:get_date{format = 'message', gmt = true} local dt = task:get_date{format = 'connect', gmt = true} -- A day - if dt - dm > 86400 then + if dm > 0 and dt - dm > 86400 then return true end end