aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf')
-rw-r--r--conf/lua/rspamd.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/lua/rspamd.lua b/conf/lua/rspamd.lua
index 87fac1dc1..1b06fdc1a 100644
--- a/conf/lua/rspamd.lua
+++ b/conf/lua/rspamd.lua
@@ -46,7 +46,7 @@ rspamd_config.DATE_IN_FUTURE = function(task)
local dm = task:get_date{format = 'message'}
local dt = task:get_date{format = 'connect'}
-- An hour
- if dm - dt > 3600 then
+ if dm - dt > 7200 then
return true
end
end