blob: ba700c8b69e3174d10c1f6d0a0685486271fe330 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*************************************************
* Exim - an Internet mail transport agent *
*************************************************/
/* Copyright (c) Tom Kistner <tom@duncanthrax.net> 2003-???? */
/* License: GPL */
/* spam defines */
#ifdef WITH_CONTENT_SCAN
/* timeout for reading and writing spamd */
#define SPAMD_TIMEOUT 120
/* maximum length of the spam bar */
#define MAX_SPAM_BAR_CHARS 50
/* SHUT_WR seems to be undefined on Unixware ? */
#ifndef SHUT_WR
#define SHUT_WR 1
#endif
typedef struct spamd_address_container {
uschar tcp_addr[24];
unsigned int tcp_port;
} spamd_address_container;
#endif
|