X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fspf.h;h=3e014bdafe30ae5587e7d314633d900c3d0badb0;hb=7a0743ebc40671a7093c235f7ee7d2030aa75fc3;hp=5ff251b6d440b5f5b4bb51197d0e56c665c0b189;hpb=8e669ac162fe3b1040297f1d021de10778dce9d9;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/spf.h b/src/src/spf.h index 5ff251b6d..3e014bdaf 100644 --- a/src/src/spf.h +++ b/src/src/spf.h @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/spf.h,v 1.3 2005/02/17 11:58:26 ph10 Exp $ */ +/* $Cambridge: exim/src/src/spf.h,v 1.6 2005/06/27 15:28:45 tom Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -10,7 +10,12 @@ #ifdef EXPERIMENTAL_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,19 +24,6 @@ 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 *);