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