From 58e07140a85ff68dbd4cb7b9327976ec1fb11885 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Fri, 20 Mar 2026 15:27:22 -0400 Subject: [PATCH] Update parsedmarc/cli.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- parsedmarc/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/parsedmarc/cli.py b/parsedmarc/cli.py index c1ab8a0..0946be5 100644 --- a/parsedmarc/cli.py +++ b/parsedmarc/cli.py @@ -279,10 +279,10 @@ def _parse_config_file(config_file, opts): opts.always_use_local_files = bool( general_config.getboolean("always_use_local_files") ) - if "reverse_dns_map_path" in general_config: - opts.reverse_dns_map_path = general_config["reverse_dns_path"] + if "local_reverse_dns_map_path" in general_config: + opts.reverse_dns_map_path = general_config["local_reverse_dns_map_path"] if "reverse_dns_map_url" in general_config: - opts.reverse_dns_map_url = general_config["reverse_dns_url"] + opts.reverse_dns_map_url = general_config["reverse_dns_map_url"] if "prettify_json" in general_config: opts.prettify_json = bool(general_config.getboolean("prettify_json"))