Add an openssl_options main configuration option, to allow administrators to
[exim.git] / src / src / spam.h
CommitLineData
cfe75fc3 1/* $Cambridge: exim/src/src/spam.h,v 1.3 2005/04/27 10:00:18 ph10 Exp $ */
8523533c
TK
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
7/* Copyright (c) Tom Kistner <tom@duncanthrax.net> 2003-???? */
8/* License: GPL */
9
10/* spam defines */
11
12#ifdef WITH_CONTENT_SCAN
13
cfe75fc3
PH
14/* timeout for reading and writing spamd */
15#define SPAMD_TIMEOUT 120
8523533c
TK
16
17/* maximum length of the spam bar */
18#define MAX_SPAM_BAR_CHARS 50
19
20/* SHUT_WR seems to be undefined on Unixware ? */
21#ifndef SHUT_WR
22#define SHUT_WR 1
23#endif
24
25typedef struct spamd_address_container {
26 uschar tcp_addr[24];
27 unsigned int tcp_port;
28} spamd_address_container;
29
30#endif