summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-03-17 15:19:08 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2018-03-17 15:52:59 +0000
commitaea78c24dfc83958336dc3cb3418cea5ca8d221b (patch)
tree3686cd06f30a6ff632d175dd97bd2441e820dc0d
parentb9aa0a847979a8b7e917c25a734c4e176c52be59 (diff)
downloadexim4-aea78c24dfc83958336dc3cb3418cea5ca8d221b.tar.gz
DMARC: add variables to list of those now-unused at the tail of the SMTP per-message loop
-rw-r--r--src/src/smtp_in.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/src/smtp_in.c b/src/src/smtp_in.c
index a96b4e961..527d37066 100644
--- a/src/src/smtp_in.c
+++ b/src/src/smtp_in.c
@@ -2016,6 +2016,12 @@ prdr_requested = FALSE;
#ifdef EXPERIMENTAL_SPF
spf_header_comment = spf_received = spf_result = spf_smtp_comment = NULL;
#endif
+#ifdef EXPERIMENTAL_DMARC
+dmarc_has_been_checked = dmarc_disable_verify = dmarc_enable_forensic = FALSE;
+dmarc_ar_header = dmarc_domain_policy = dmarc_forensic_sender =
+dmarc_history_file = dmarc_status = dmarc_status_text =
+dmarc_tld_file = dmarc_used_domain = NULL;
+#endif
#ifdef SUPPORT_I18N
message_smtputf8 = FALSE;
#endif