1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Experimental SPF support.
6 Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004
8 Copyright (c) The Exim Maintainers 2016
13 /* Yes, we do have ns_type. spf.h redefines it if we don't set this. Doh */
14 #if !defined(HAVE_NS_TYPE) && defined(NS_INADDRSZ)
19 #include <spf2/spf_dns_resolv.h>
20 #include <spf2/spf_dns_cache.h>
22 typedef struct spf_result_id {
28 BOOL spf_init(uschar *,uschar *);
29 int spf_process(const uschar **, uschar *, int);
31 #define SPF_PROCESS_NORMAL 0
32 #define SPF_PROCESS_GUESS 1
33 #define SPF_PROCESS_FALLBACK 2