Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 3412
CommitLineData
afda344b
PH
1# Exim test configuration 3412
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
13bounce_sender_authentication = mailer-daemon@test.ex
14trusted_users = CALLER
15
16
17# ----- Authentication -----
18
19begin authenticators
20
21plain:
22 driver = plaintext
23 public_name = PLAIN
24 client_send = ^userx^secret
25
26
27# ----- Routers -----
28
29begin routers
30
31local:
32 driver = redirect
33 domains = test.ex
34 allow_fail
35 data = :fail: no deliveries made locally
36
37remote:
38 driver = accept
39 transport = smtp
40
41
42# ----- Transports -----
43
44begin transports
45
46smtp:
47 driver = smtp
48 allow_localhost
49 hosts = 127.0.0.1
50 port = PORT_S
51 hosts_try_auth = *
52
53# End