Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 0283
CommitLineData
afda344b
PH
1# Exim test configuration 0283
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
15never_users = root
16
17# ----- Routers -----
18
19begin routers
20
21never:
22 driver = accept
23 local_parts = never
24 transport = t3
25
26caller:
27 driver = accept
28 local_parts = CALLER
29 transport = t2
30
31rest:
32 driver = accept
33 transport = t1
34
35# ----- Transports -----
36
37begin transports
38
39t1:
40 driver = pipe
41 command = DIR/bin/showids
42 return_output
43
44t2:
45 driver = appendfile
46 file = DIR/test-mail/$local_part
47 user = CALLER
48
49t3:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 user = root
53
54# ----- Retry -----
55
56begin retry
57
58* * F,1d,1d
59
60# End