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