Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 0104
CommitLineData
afda344b
PH
1# Exim test configuration 0104
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = check_recipient
13acl_smtp_data = check_message
14
15domainlist local_domains = test.ex : n.t
16qualify_domain = test.ex
17
18
19# ----- Rewrite -----
20
21begin rewrite
22
23a.b@p.q yyy@test.ex
24
25# End
26
27
28# ----- Routers -----
29
30begin routers
31
32lookuphost:
33 driver = dnslookup
34 domains = ! +local_domains
35 transport = appendfile
36 widen_domains = test.ex
37 no_more
38
39all:
40 driver = accept
41 retry_use_local_part
42 transport = appendfile
43
44
45# ----- Transports -----
46
47begin transports
48
49appendfile:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 user = CALLER
53
54
55# End