Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 3405
1 # Exim test configuration 3405
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13
14 # ----- Authentication -----
15
16
17 begin authenticators
18
19 plain:
20 driver = plaintext
21 public_name = PLAIN
22 client_send = ^userx^secret
23
24
25 # ----- Routers -----
26
27 begin routers
28
29 all:
30 driver = manualroute
31 headers_add = X-AID: >$authenticated_id<
32 route_list = * 127.0.0.1 byname
33 self = send
34 transport = smtp
35 no_more
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 smtp:
43 driver = smtp
44 headers_add = X-TAID: >$authenticated_id<
45 hosts_try_auth = *
46 port = PORT_S
47
48 # End