]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Dmarc_report: Improve dates detection
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 16 Aug 2021 09:59:16 +0000 (10:59 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 16 Aug 2021 10:24:20 +0000 (11:24 +0100)
lualib/rspamadm/dmarc_report.lua

index acc941400cb57e84444ace0c60b673e657552851..b6811df9869527f18e8770734ba4444cb9a49916 100644 (file)
@@ -663,7 +663,12 @@ local function handler(args)
   lua_util.debugm(N, 'previous last report date is %s', start_time)
 
   if not opts.date or #opts.date == 0 then
-    opts.date = {os.date('!%Y%m%d', os.time())}
+    local now = os.time()
+    opts.date = {}
+    while now >= start_time do
+      table.insert(opts.date, os.date('!%Y%m%d', now))
+      now = now - 86400
+    end
   end
 
   local ndates = 0
@@ -691,7 +696,7 @@ local function handler(args)
             ndates, nreports, nsuccess, nfail)
       end
       lua_redis.request(redis_params, redis_attrs,
-          {'SETEX', 'rspamd_dmarc_last_collection', dmarc_settings.reporting.keys_expire,
+          {'SETEX', 'rspamd_dmarc_last_collection', dmarc_settings.reporting.keys_expire * 2,
            tostring(os.time())})
     else
       logger.messagex('Reporting collection has finished %s dates processed, %s reports: %s completed, %s failed',