X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/6372d4c990f39ba6ad84a91af0a3a61a63bd50a3..1d28cc061677bd07d9bed48dd84bd5c590247043:/src/src/dmarc.h diff --git a/src/src/dmarc.h b/src/src/dmarc.h index 3a3bc6d13..86d3b1e1c 100644 --- a/src/src/dmarc.h +++ b/src/src/dmarc.h @@ -3,13 +3,15 @@ *************************************************/ /* Experimental DMARC support. + Copyright (c) The Exim Maintainers 2021 - 2022 Copyright (c) Todd Lyons 2012 - 2014 License: GPL */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ /* Portions Copyright (c) 2012, 2013, The Trusted Domain Project; All rights reserved, licensed for use per LICENSE.opendmarc. */ -#ifdef EXPERIMENTAL_DMARC +#ifdef SUPPORT_DMARC # include "opendmarc/dmarc.h" # ifdef SUPPORT_SPF @@ -17,15 +19,13 @@ # endif /* SUPPORT_SPF */ /* prototypes */ +gstring * dmarc_version_report(gstring *); int dmarc_init(); int dmarc_store_data(header_line *); int dmarc_process(); uschar *dmarc_exim_expand_query(int); uschar *dmarc_exim_expand_defaults(int); -uschar *dmarc_auth_results_header(header_line *,uschar *); -static int dmarc_write_history_file(); -#define DMARC_AR_HEADER US"Authentication-Results:" #define DMARC_VERIFY_STATUS 1 #define DMARC_HIST_OK 1 @@ -58,4 +58,4 @@ static int dmarc_write_history_file(); #define ARES_RESULT_UNKNOWN 11 #define ARES_RESULT_DISCARD 12 -#endif /* EXPERIMENTAL_DMARC */ +#endif /* SUPPORT_DMARC */