X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fspf.h;h=23ad325f17b854bc1a452545754cad72355ea132;hb=f6a1bb920eebdba0d4a6c295c4d054307b49b2b1;hp=de7b741fdca78b7a4b5559c516e234b307d0fe39;hpb=8523533c08c018ac4b750b0e0fab6cfe611e8a49;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/spf.h b/src/src/spf.h index de7b741fd..23ad325f1 100644 --- a/src/src/spf.h +++ b/src/src/spf.h @@ -1,16 +1,21 @@ -/* $Cambridge: exim/src/src/spf.h,v 1.2 2004/12/16 15:11:47 tom Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ - + /* Experimental SPF support. Copyright (c) Tom Kistner 2004 - License: GPL */ + License: GPL + Copyright (c) The Exim Maintainers 2016 +*/ -#ifdef EXPERIMENTAL_SPF +#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 + #include #include @@ -19,21 +24,12 @@ typedef struct spf_result_id { int value; } spf_result_id; -/* must be kept in numeric order */ -static spf_result_id spf_result_id_list[] = { - { US"pass", 0 }, - { US"fail", 1 }, - { US"softfail", 2 }, - { US"neutral", 3 }, - { US"err_perm", 4 }, - { US"err_temp", 5 }, - { US"none", 6 } -}; - -static int spf_result_id_list_size = sizeof(spf_result_id_list)/sizeof(spf_result_id); - /* prototypes */ -int spf_init(uschar *,uschar *); -int spf_process(uschar **, uschar *); +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