Testsuite: build a generic tls enabled client: client-anytls
[exim.git] / test / confs / 0413
CommitLineData
afda344b
PH
1# Exim test configuration 0413
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8primary_hostname = mail.test.ex
9qualify_domain = test.ex
10
11acl_smtp_mail = mail
12
13
14# ----- ACL -----
15
16begin acl
17
18mail:
19 accept verify = sender/callout
20
21
22# ----- Routers -----
23
24begin routers
25
26r1:
27 local_parts = r1
28 driver = accept
29 transport = t1
30
31r2:
32 local_parts = r2
33 driver = manualroute
34 route_list = * HOSTIPV4
35 self = send
36 transport = t1
37
38r3:
39 local_parts = r3
40 driver = manualroute
41 route_list = * HOSTIPV4
42 self = send
43 transport = t2
44
45# ----- Transports -----
46
47begin transports
48
49t1:
50 driver = smtp
51 hosts = 127.0.0.1
52 allow_localhost
53 port = PORT_S
277b9979 54 hosts_try_fastopen = :
afda344b
PH
55
56t2:
57 driver = smtp
58 hosts = 127.0.0.1
59 hosts_override
60 allow_localhost
61 port = PORT_S
277b9979 62 hosts_try_fastopen = :
afda344b
PH
63
64
65# End