Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 0310
CommitLineData
afda344b
PH
1# Exim test configuration 0310
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13no_bounce_return_message
14
15# ----- Routers -----
16
17begin routers
18
19bounce:
20 driver = accept
21 senders = :
22 transport = bounce
23
24all:
25 driver = accept
26 transport = local_delivery
27
28
29# ----- Transports -----
30
31begin transports
32
33local_delivery:
34 driver = appendfile
35 file = DIR/test-mail/$local_part
36 quota = 5
37 user = CALLER
38
39bounce:
40 driver = appendfile
41 file = DIR/test-mail/$local_part
42 user = CALLER
43
44
45# End