PIPE_CONNECT: fix feature-cache refresh
[exim.git] / test / confs / 4061
CommitLineData
ee8b8090
JH
1# test config 4061
2# Pipelining the early part of the SMTP conversation, tls-on-connect
3
4CONTROL=*
5
6keep_environment = PATH
7exim_path = EXIM_PATH
8host_lookup_order = bydns
9spool_directory = DIR/spool
10
11.ifdef SERVER
12log_file_path = DIR/spool/log/SERVER%slog
13.else
14log_file_path = DIR/spool/log/%slog
15.endif
16
17gecos_pattern = ""
18gecos_name = CALLER_NAME
19dns_cname_loops = 9
20chunking_advertise_hosts =
21tls_on_connect_ports = PORT_D
22tls_advertise_hosts = *
23tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
24
25# Avoid ECDHE key-exchange so that we can wireshark-decode
26.ifdef _HAVE_GNUTLS
27tls_require_ciphers = NORMAL:-KX-ALL:+RSA
28.endif
29
30pipelining_connect_advertise_hosts = *
31log_selector = +received_recipients +pipelining
32queue_only
33
34acl_smtp_rcpt = accept
35
36#
37begin routers
38
39server:
40 driver = redirect
41 condition = ${if eq {SERVER}{server}}
42 data = :blackhole:
43
44client:
45 driver = manualroute
e462483c 46 route_data = 127.0.0.1
ee8b8090
JH
47 self = send
48 transport = smtp
49
50#
51begin transports
52
53smtp:
54 driver = smtp
55 hosts_pipe_connect = CONTROL
56 protocol = smtps
e462483c 57 port = PORT_D
ee8b8090
JH
58 tls_verify_hosts =
59 tls_try_verify_hosts =
60