mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-05-07 04:25:25 +00:00
6.5.2
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
6.5.2
|
||||
-----
|
||||
|
||||
- Merge PR #100 from michaeldavie
|
||||
- Correct a bug introduced in 6.5.1 that caused only the last record's data
|
||||
to be used for each row in an aggregate report's CSV version.
|
||||
- Use `mailsuite` 1.1.0 to fix issues with some IMAP servers (closes issue 103)
|
||||
- Always use ``/`` as the folder hierarchy separator, and convert to the
|
||||
server's hierarchy separator in the background
|
||||
- Always remove folder name characters that conflict with the server's
|
||||
hierarchy separators
|
||||
- Prepend the namespace to the folder path when required
|
||||
|
||||
6.5.1
|
||||
-----
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg
|
||||
from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime
|
||||
from parsedmarc.utils import parse_email
|
||||
|
||||
__version__ = "6.5.1"
|
||||
__version__ = "6.5.2"
|
||||
|
||||
logging.basicConfig(
|
||||
format='%(levelname)8s:%(filename)s:%(lineno)d:'
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ dateparser>=0.7.1
|
||||
elasticsearch>=6.3.1,<7.0.0
|
||||
elasticsearch-dsl>=6.3.1,<7.0.0
|
||||
kafka-python>=1.4.4
|
||||
mailsuite>=1.0.0
|
||||
mailsuite>=1.1.0
|
||||
nose
|
||||
pygments
|
||||
flake8
|
||||
|
||||
@@ -14,7 +14,7 @@ from setuptools import setup
|
||||
from codecs import open
|
||||
from os import path
|
||||
|
||||
__version__ = "6.5.1"
|
||||
__version__ = "6.5.2"
|
||||
|
||||
description = "A Python package and CLI for parsing aggregate and " \
|
||||
"forensic DMARC reports"
|
||||
@@ -97,7 +97,7 @@ setup(
|
||||
'urllib3<1.25,>=1.21.1', 'requests>=2.2.16.0',
|
||||
'imapclient>=2.1.0', 'mail-parser>=3.9.2',
|
||||
'dateparser>=0.7.1',
|
||||
'mailsuite>=1.0.0',
|
||||
'mailsuite>=1.1.0',
|
||||
'elasticsearch>=6.3.1,<7.0.0',
|
||||
'elasticsearch-dsl>=6.3.1,<7.0.0',
|
||||
'kafka-python>=1.4.4',
|
||||
|
||||
Reference in New Issue
Block a user