spf dynamic module
[exim.git] / src / src / miscmods / spf.h
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* SPF support.
6    Copyright (c) The Exim Maintainers 2016 - 2024
7    Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004
8    License: GPL
9    SPDX-License-Identifier: GPL-2.0-or-later
10 */
11
12 #ifdef SUPPORT_SPF
13
14 /* Yes, we do have ns_type. spf.h redefines it if we don't set this. Doh */
15 #if !defined(HAVE_NS_TYPE) && defined(NS_INADDRSZ)
16 # define HAVE_NS_TYPE
17 #endif
18 #include <spf2/spf.h>
19
20 #include <spf2/spf_dns_resolv.h>
21 #include <spf2/spf_dns_cache.h>
22
23 typedef struct spf_result_id {
24   uschar *name;
25   int    value;
26 } spf_result_id;
27
28 #define SPF_PROCESS_NORMAL  0
29 #define SPF_PROCESS_GUESS   1
30 #define SPF_PROCESS_FALLBACK    2
31
32 #endif