You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I use Parsedmarc for a long time and today I log almost 200 different domain names.
for some reason, I do not need to log some domains anymore and I would like to clean the database from these domains.
Does anyome could help me for this?
is there any elastic command that could clean the base from all entries generated by one specific domain?
Thanks for Your help
David
The text was updated successfully, but these errors were encountered:
The reason why you have to iterate through the indices is that parsedmarc stores the reports in separate indices based on the date of the reports.
The aggregate reports' indices will have dmarc_aggregate in their names, while forensic reports will have dmarc_forensic.
The above query checks the header_from field which is only present in aggregate reports, but not in forensic reports.
You may want to check for the envelope_from field as well (aggregate), also maybe envelope_to (aggregate), either separately, or as part of a composite query. Not sure what your deletion criteria "all entries generated by one specific domain" means.
If you need to delete forensic reports too, then you also need to run a deletion on the forensic indexes, matching the domain field, also maybe the dkim_domain one. Again, depends on your use case.
Hello,
I use Parsedmarc for a long time and today I log almost 200 different domain names.
for some reason, I do not need to log some domains anymore and I would like to clean the database from these domains.
Does anyome could help me for this?
is there any elastic command that could clean the base from all entries generated by one specific domain?
Thanks for Your help
David
The text was updated successfully, but these errors were encountered: