Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 0260
CommitLineData
afda344b
PH
1# Exim test configuration 0260
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15qualify_domain = test.ex
16
17# ----- Transports -----
18
19begin transports
20
21local_delivery:
22 driver = appendfile
23 file = DIR/test-mail/$local_part
24 user = CALLER
25
26bad_return:
27 driver = appendfile
28 batch_max = 100
29 file = DIR/test-mail/bad_return
30 user = CALLER
31 return_path = ${if
32
33bad_uid:
34 driver = appendfile
35 file = DIR/test-mail/bad_uid
36
37exp_fail:
38 driver = appendfile
39 file = DIR/test-mail/$local_part
40 user = CALLER
41 home_directory = ${if rhubarb
42
43# ----- Routers -----
44
45begin routers
46
47bad_return:
48 driver = accept
49 local_parts = bad.return : bad.return2
50 transport = bad_return
51
52bad_uid:
53 driver = accept
54 local_parts = bad.uid
55 transport = bad_uid
56
57exp_fail:
58 driver = accept
59 local_parts = exp.fail
60 transport = exp_fail
61
62good:
63 driver = accept
64 transport = local_delivery
65
66# ----- Retry -----
67
68begin retry
69
70* * F,5d,10s
71
72# End