Skip to content

Commit

Permalink
8.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
seanthegeek committed Sep 3, 2024
1 parent 21180f4 commit 3ca3d64
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
Changelog
=========

8.14.1
------

- Fix processing of SMTP-TLS reports (#549)

8.14.0
------

- Fix processing of SMTP-TLS reports (#549)
- Skip invalid aggregate report rows without calling the whole report invalid
- Some providers such as GoDaddy will send reports with some rows missing a source IP address, while other rows are fine
- Fix Dovecot support by using the seperator provided by the IPMAP namespace when possible (PR #552 closes #551)
Expand Down
4 changes: 2 additions & 2 deletions parsedmarc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from parsedmarc.utils import parse_email
from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime

__version__ = "8.14.0"
__version__ = "8.14.1"

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

Expand Down Expand Up @@ -604,7 +604,7 @@ def extract_report(input_):
file_object = BytesIO(b64decode(input_))
except binascii.Error:
pass
else:
if file_object is None:
file_object = open(input_, "rb")
elif type(input_) is bytes:
file_object = BytesIO(input_)
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ elasticsearch-dsl>=7.4.0
opensearch-py>=2.4.2,<=3.0.0
kafka-python-ng>=2.2.2
mailsuite>=1.6.1
pygelf
nose>=1.3.7
wheel>=0.37.0
flake8>=3.7.8
Expand Down

0 comments on commit 3ca3d64

Please sign in to comment.