X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/fd4d887101c6b4075a477bc275e51c35b94fd4c2..8fac7a0b7c8bf8f8f3cde24aeb95ff03756d2633:/src/src/spam.h diff --git a/src/src/spam.h b/src/src/spam.h index 50aed9145..cc36ffd3f 100644 --- a/src/src/spam.h +++ b/src/src/spam.h @@ -2,7 +2,8 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) Tom Kistner 2003-???? */ +/* Copyright (c) Tom Kistner 2003 - 2015 */ +/* Copyright (c) The Exim Maintainers 2021 */ /* License: GPL */ /* spam defines */ @@ -12,7 +13,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 ? */ @@ -20,17 +22,19 @@ # define SHUT_WR 1 #endif -/* default weight */ +/* Defaults */ #define SPAMD_WEIGHT 1 +#define SPAMD_PRIORITY 1 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