Fix CVE-2016-1531
[exim.git] / test / confs / 5100
1 # Exim test configuration 5100
2
3 IGNORE_QUOTA=FALSE
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 domainlist local_domains = test.ex : *.test.ex
17
18
19 # ----- Routers -----
20
21 begin routers
22
23 bounces:
24   driver = redirect
25   allow_defer
26   data = :blackhole:
27   retry_use_local_part
28   senders = :
29
30 smartuser:
31   driver = accept
32   retry_use_local_part
33   transport = lmtp
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 lmtp:
41   driver = lmtp
42   batch_max = 100
43   command = DIR/bin/mtpscript DIR/aux-fixed/TESTNUM.script.$h_script: +DIR/spool/log/mainlog
44   timeout = 1s
45   user = EXIMUSER
46   ignore_quota = IGNORE_QUOTA
47
48
49 # ----- Retry -----
50
51
52 begin retry
53
54 *  mail_4xx
55 *  rcpt_4xx   F,1d,1m
56 *  *          F,5d,1d
57
58
59 # End