X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fspf.h;h=2a7c0409400b965df1fe7e2331583ce14e13a844;hb=5facbeaa3b5497692c2c4852056e08a2454f9437;hp=3e014bdafe30ae5587e7d314633d900c3d0badb0;hpb=6d06cf480f74aec15035066c615e68deeacca8b9;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/spf.h b/src/src/spf.h index 3e014bdaf..2a7c04094 100644 --- a/src/src/spf.h +++ b/src/src/spf.h @@ -1,18 +1,18 @@ -/* $Cambridge: exim/src/src/spf.h,v 1.6 2005/06/27 15:28:45 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 /* 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 +# define HAVE_NS_TYPE #endif #include @@ -26,6 +26,10 @@ typedef struct spf_result_id { /* prototypes */ int spf_init(uschar *,uschar *); -int spf_process(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