Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 0299
CommitLineData
37ff4e03 1# Exim test configuration 0299
afda344b
PH
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
15log_selector = +delivery_size
16remote_max_parallel = 1
17
18
19# ------ Routers ------
20
21begin routers
22
23r1:
24 driver = accept
25 domains = test.ex
26 transport = t1
27
28r2:
29 driver = accept
30 transport = t2
31
32
33# ------ Transports ------
34
35begin transports
36
37t1:
38 driver = appendfile
39 file = DIR/test-mail/$local_part
40 user = CALLER
41 shadow_transport = t3
42
43t2:
44 driver = smtp
45 hosts = 127.0.0.1
46 port = PORT_S
47 allow_localhost
48 max_rcpt = 2
49
50t3:
51 driver = appendfile
52 file = /dev/null
53 user = CALLER
54
55# End