X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fexim.h;h=53b70d9d4f894c2b00f1c1df58baf92aa7b55fd7;hb=c6e692d7701edfba04166fa67dcff9922a66972b;hp=96d634efeb0a74ac0df73be84b98115382a85852;hpb=059ec3d9952740285fb1ebf47961b8aca2eb1b4a;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/exim.h b/src/src/exim.h index 96d634efe..53b70d9d4 100644 --- a/src/src/exim.h +++ b/src/src/exim.h @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/exim.h,v 1.1 2004/10/07 10:39:01 ph10 Exp $ */ +/* $Cambridge: exim/src/src/exim.h,v 1.6 2004/12/29 16:24:03 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -278,6 +278,13 @@ header files. I don't suppose they have T_SRV either. */ #define T_SRV 33 #endif +/* We use the private type T_ZNS for retrieving the nameservers for the +enclosing zone of a domain, and the private type T_MXH for retrieving +the MX hostnames only (without their priorities). */ + +#define T_ZNS (-1) +#define T_MXH (-2) + /* The resolv.h header defines __P(x) on some Solaris 2.5.1 systems (without checking that it is already defined, in fact). This conflicts with other headers that behave likewise (see below), leading to compiler warnings. Arrange @@ -375,9 +382,10 @@ extern int ferror(FILE *); /* Exim includes are in several files. Note that local_scan.h #includes mytypes.h and store.h, so we don't need to mention them explicitly. */ +#include "config.h" + #include "local_scan.h" #include "macros.h" -#include "config.h" #include "dbstuff.h" #include "structs.h" #include "globals.h" @@ -385,6 +393,16 @@ mytypes.h and store.h, so we don't need to mention them explicitly. */ #include "dbfunctions.h" #include "osfunctions.h" +#ifdef EXPERIMENTAL_BRIGHTMAIL +#include "bmi_spam.h" +#endif +#ifdef EXPERIMENTAL_SPF +#include "spf.h" +#endif +#ifdef EXPERIMENTAL_SRS +#include "srs.h" +#endif + /* The following stuff must follow the inclusion of config.h because it requires various things that are set therein. */