summaryrefslogtreecommitdiffstats
path: root/src/spam.h
blob: cc36ffd3f7fd3bcd35e2bd007948be4d9622b3c8 (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
29
30
31
32
33
34
35
36
37
38
39
40
/*************************************************
*     Exim - an Internet mail transport agent    *
*************************************************/

/* Copyright (c) Tom Kistner <tom@duncanthrax.net> 2003 - 2015 */
/* Copyright (c) The Exim Maintainers 2021 */
/* License: GPL */

/* spam defines */

#ifdef WITH_CONTENT_SCAN

/* timeout for reading and writing spamd */
#define SPAMD_TIMEOUT 120

/* 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 ? */
#ifndef SHUT_WR
# define SHUT_WR 1
#endif

/* Defaults */
#define SPAMD_WEIGHT 1
#define SPAMD_PRIORITY 1

typedef struct spamd_address_container
{
  uschar * hostspec;
  int is_rspamd:1;
  int is_failed:1;
  unsigned int weight;
  unsigned int timeout;
  unsigned int retry;
  unsigned int priority;
} spamd_address_container;

#endif