Skip to content

Commit

Permalink
8.17.0
Browse files Browse the repository at this point in the history
- Ignore duplicate aggregate DMARC reports with the same `org_name` and `report_id` seen within the same hour ([#539](#539))
- Fix saving SMTP TLS reports to OpenSearch (PR #585 closed issue #576)
- Add 303 entries to `base_reverse_dns_map.csv`
  • Loading branch information
seanthegeek committed Jan 10, 2025
1 parent 7da57c6 commit 010f1f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
Changelog
=========

8.17.0
------

- Ignore duplicate aggregate DMARC reports with the same `org_name` and `report_id` seen within the same hour ([#539](https://github.com/domainaware/parsedmarc/issues/539))
- Fix saving SMTP TLS reports to OpenSearch (PR #585 closed issue #576)
- Add 303 entries to `base_reverse_dns_map.csv`

8.16.1
------

- Ignore aggregate DMARC reports seen within a period of one hour (#535)
- Failed attempt to ignore aggregate DMARC reports seen within a period of one hour (#535)

8.16.0
------
Expand Down
5 changes: 2 additions & 3 deletions parsedmarc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from parsedmarc.utils import parse_email
from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime

__version__ = "8.16.1"
__version__ = "8.17.0"

logger.debug("parsedmarc v{0}".format(__version__))

Expand Down Expand Up @@ -1666,8 +1666,7 @@ def get_dmarc_reports_from_mailbox(
aggregate_reports.append(parsed_email["report"])
else:
logger.debug(
"Skipping duplicate aggregate report "
f"with ID: {report_id}"
"Skipping duplicate aggregate report " f"with ID: {report_id}"
)
aggregate_report_msg_uids.append(msg_uid)
elif parsed_email["report_type"] == "forensic":
Expand Down
1 change: 0 additions & 1 deletion sortmaps.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python3

import os
import sys
import glob
import csv

Expand Down

0 comments on commit 010f1f8

Please sign in to comment.