mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-08-04 06:32:17 +00:00
3.6.1 - Fix strip_attachment_payloads option
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
6.3.1
|
||||
-----
|
||||
|
||||
- Fix `strip_attachment_payloads` option
|
||||
|
||||
6.3.0
|
||||
-----
|
||||
|
||||
|
||||
+1
-1
@@ -131,7 +131,7 @@ The full set of configuration options are:
|
||||
- ``general``
|
||||
- ``save_aggregate`` - bool: Save aggregate report data to the Elasticsearch and/or Splunk
|
||||
- ``save_forensic`` - bool: Save forensic report data to the Elasticsearch and/or Splunk
|
||||
- ``strip_attachments_payloads`` - bool: Remove attachment payloads from results
|
||||
- ``strip_attachment_payloads`` - bool: Remove attachment payloads from results
|
||||
- ``output`` - str: Directory to place JSON and CSV files in
|
||||
- ``nameservers`` - str: A comma separated list of DNS resolvers (Default: `Cloudflare's public resolvers`_)
|
||||
- ``dns_timeout`` - float: DNS timeout period
|
||||
|
||||
+1
-1
@@ -232,7 +232,7 @@ def _main():
|
||||
config.read(args.config_file)
|
||||
if "general" in config.sections():
|
||||
general_config = config["general"]
|
||||
if "strip_attachments_payloads" in general_config:
|
||||
if "strip_attachment_payloads" in general_config:
|
||||
opts.strip_attachment_payloads = general_config[
|
||||
"strip_attachment_payloads"]
|
||||
if "output" in general_config:
|
||||
|
||||
Reference in New Issue
Block a user