You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new config variables were not correctly propagated in the code (8.11.0).
always_use_local_files - Disables the download of the reverse DNS map
local_reverse_dns_map_path - Overrides the default local file path to use for the reverse DNS map
reverse_dns_map_url - Overrides the default download URL for the reverse DNS map
i.e. If you set the config variable always_use_local_files = True in the parsedmarc.ini, it will always be False while parsing the reports using a mbox or mailbox
There are 2 specific calls to parse_report_email that need the new arguments to be passed (in __init__.py)
Without passing them, the default value (False or None) will always be applied.
After that, this code should be propagated back in the __init__.py and cli.py files
A pull request has been opened
The text was updated successfully, but these errors were encountered:
The new config variables were not correctly propagated in the code (8.11.0).
i.e. If you set the config variable
always_use_local_files = True
in theparsedmarc.ini
, it will always beFalse
while parsing the reports using ambox
ormailbox
There are 2 specific calls to
parse_report_email
that need the new arguments to be passed (in__init__.py
)Without passing them, the default value (
False
orNone
) will always be applied.After that, this code should be propagated back in the
__init__.py
andcli.py
filesA pull request has been opened
The text was updated successfully, but these errors were encountered: