Testsuite: explicitly disable TFO in transports
[exim.git] / test / confs / 0464
1 # Exim test configuration 0464
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = rcpt
10
11 domainlist local_domains = test.ex
12 domainlist special_domains = lsearch;DIR/aux-fixed/TESTNUM.domains
13
14
15 # ----- ACLs -----
16
17 begin acl
18
19 rcpt:
20 require domains = +special_domains
21 verify = recipient
22
23 require domains = +special_domains
24 verify = recipient
25 accept
26
27
28 # ----- Routers -----
29
30 begin routers
31
32 r1:
33 driver = redirect
34 domains = +special_domains
35 data = $local_part@xxx.$domain
36
37 r2:
38 driver = accept
39 transport = smtp
40
41
42 # ----- Transports -----
43
44 begin transports
45
46 smtp:
47 driver = smtp
48 port = PORT_S
49 hosts_try_fastopen = :
50
51 # End