Extra exiscan source files - first batch
[users/jgh/exim.git] / src / src / spam.h
1 /* $Cambridge: exim/src/src/spam.h,v 1.1.2.1 2004/11/26 09:13:34 tom Exp $ */
2
3 /*************************************************
4 *     Exim - an Internet mail transport agent    *
5 *************************************************/
6
7 /* This file is part of the exiscan-acl content scanner
8 patch. It is NOT part of the standard exim distribution. */
9
10 /* Copyright (c) Tom Kistner <tom@duncanthrax.net> 2003-???? */
11 /* License: GPL */
12
13 /* spam defines */
14
15 /* timeout for reading from spamd */
16 #define SPAMD_READ_TIMEOUT 3600
17
18 /* maximum length of the spam bar */
19 #define MAX_SPAM_BAR_CHARS 50
20
21 /* SHUT_WR seems to be undefined on Unixware ? */
22 #ifndef SHUT_WR
23 #define SHUT_WR 1
24 #endif
25
26 typedef struct spamd_address_container {
27   uschar tcp_addr[24];
28   unsigned int tcp_port;
29 } spamd_address_container;
30
31
32