-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
enhancementNew feature or requestNew feature or request
Description
A configuration to enable the automatic purge of all records over a certain age. I have experienced nginx timeouts when trying to run Open DMARC Analyser against an over-sized (4-year) dataset with data for hundreds of domains.
I recently ran a couple of queries on my database to clear out old records:
DELETE FROM report WHERE mindate < DATE_SUB(NOW(), INTERVAL 1 YEAR);
DELETE FROM rptrecord WHERE `serial` < (SELECT MIN(`serial`) FROM report);
An option to be able to purge records over a configurable age, automatically, would be great.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request