X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fspam.h;h=2fe73809ef5703f9ee78dfd03b673091827a8991;hb=fb5908b1bd30edd2e6ee226cd840d8da39d7377d;hp=50aed914535fd0fa5898095533c1904dd10dd5b2;hpb=fd4d887101c6b4075a477bc275e51c35b94fd4c2;p=exim.git diff --git a/src/src/spam.h b/src/src/spam.h index 50aed9145..2fe73809e 100644 --- a/src/src/spam.h +++ b/src/src/spam.h @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) Tom Kistner 2003-???? */ +/* Copyright (c) Tom Kistner 2003 - 2015 */ /* License: GPL */ /* spam defines */ @@ -12,7 +12,8 @@ /* timeout for reading and writing spamd */ #define SPAMD_TIMEOUT 120 -/* maximum length of the spam bar */ +/* maximum length of the spam bar, please update the + * spec, the max length is mentioned there */ #define MAX_SPAM_BAR_CHARS 50 /* SHUT_WR seems to be undefined on Unixware ? */ @@ -25,12 +26,13 @@ typedef struct spamd_address_container { - uschar * hostname; - unsigned short tcp_port; + uschar * hostspec; int is_rspamd:1; int is_failed:1; - int is_backup:1; unsigned int weight; + unsigned int timeout; + unsigned int retry; + unsigned int priority; } spamd_address_container; #endif