This commit is contained in:
Sean Whalen
2019-01-09 16:26:08 -05:00
parent 1792e868e2
commit c5f2e463c1
3 changed files with 21 additions and 2 deletions
+14
View File
@@ -1,3 +1,17 @@
5.2.0
-----
- More details in logging output
- And CLI options
```
--elasticsearch-use-ssl
Use SSL when connecting to Elasticsearch
--elasticsearch-ssl-cert-path ELASTICSEARCH_SSL_CERT_PATH
Path to the Elasticsearch SSL certificate
--elasticsearch-monthly-indexes
Use monthly Elasticsearch indexes instead of daily
indexes
```
5.1.3
-----
+6 -1
View File
@@ -38,7 +38,12 @@ 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__ = "5.1.3"
__version__ = "5.2.0"
logging.basicConfig(
format='%(asctime)s,%(msecs)d %(levelname)-8s [%(filename)s:%(lineno)d] '
'%(message)s',
datefmt='%Y-%m-%d:%H:%M:%S')
logger = logging.getLogger("parsedmarc")
logger.debug("parsedmarc v{0}".format(__version__))
+1 -1
View File
@@ -14,7 +14,7 @@ from setuptools import setup
from codecs import open
from os import path
__version__ = "5.1.3"
__version__ = "5.2.0"
description = "A Python package and CLI for parsing aggregate and " \
"forensic DMARC reports"