Squashed commit of PIPE_CONNECT
[exim.git] / test / confs / 4058
1 # test config 4058
2 # Early-pipelining with TCP Fast Open
3
4 OPT=
5
6 keep_environment = PATH
7 exim_path = EXIM_PATH
8 host_lookup_order = bydns
9 spool_directory = DIR/spool
10
11 .ifdef SERVER
12 log_file_path = DIR/spool/log/SERVER%slog
13 .else
14 log_file_path = DIR/spool/log/%slog
15 .endif
16 log_selector = +received_recipients +millisec +pipelining
17
18 gecos_pattern = ""
19 gecos_name = CALLER_NAME
20 dns_cname_loops = 9
21 chunking_advertise_hosts = OPT
22 tls_advertise_hosts =
23
24 pipelining_connect_advertise_hosts = *
25 queue_only
26
27 acl_smtp_rcpt = accept
28
29 #
30 begin routers
31
32 server:
33   driver =      redirect
34   condition =   ${if eq {SERVER}{server}}
35   data =        :blackhole:
36
37 client:
38   driver =      manualroute
39   route_data =  127.0.0.1::PORT_D
40   self =        send
41   transport =   smtp
42
43 #
44 begin transports
45
46 smtp:
47   driver =              smtp
48   hosts_try_fastopen =  *
49   hosts_pipe_connect =  *
50