blob: 23ad325f17b854bc1a452545754cad72355ea132 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*************************************************
* Exim - an Internet mail transport agent *
*************************************************/
/* Experimental SPF support.
Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004
License: GPL
Copyright (c) The Exim Maintainers 2016
*/
#ifdef SUPPORT_SPF
/* Yes, we do have ns_type. spf.h redefines it if we don't set this. Doh */
#ifndef HAVE_NS_TYPE
# define HAVE_NS_TYPE
#endif
#include <spf2/spf.h>
#include <spf2/spf_dns_resolv.h>
#include <spf2/spf_dns_cache.h>
typedef struct spf_result_id {
uschar *name;
int value;
} spf_result_id;
/* prototypes */
BOOL spf_init(uschar *,uschar *);
int spf_process(const uschar **, uschar *, int);
#define SPF_PROCESS_NORMAL 0
#define SPF_PROCESS_GUESS 1
#define SPF_PROCESS_FALLBACK 2
#endif
|