JSON lookup
[exim.git] / test / confs / 4060
CommitLineData
ee8b8090
JH
1# test config 4060
2# Pipelining the early part of the SMTP conversation, starttls
3
4CONTROL=*
5OPT=
6
7keep_environment = PATH
8exim_path = EXIM_PATH
9host_lookup_order = bydns
10spool_directory = DIR/spool
11
12.ifdef SERVER
13log_file_path = DIR/spool/log/SERVER%slog
14.else
15log_file_path = DIR/spool/log/%slog
16.endif
17
18gecos_pattern = ""
19gecos_name = CALLER_NAME
20dns_cname_loops = 9
21chunking_advertise_hosts = OPT
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
f6a1bb92
JH
28.else
29tls_require_ciphers = DEFAULT:!kECDHE
ee8b8090
JH
30.endif
31
32pipelining_connect_advertise_hosts = *
33log_selector = +received_recipients +pipelining
34queue_only
35
36acl_smtp_rcpt = accept
37
38#
39begin routers
40
41server:
42 driver = redirect
43 condition = ${if eq {SERVER}{server}}
44 data = :blackhole:
45
46client:
47 driver = manualroute
48 route_data = 127.0.0.1::PORT_D
49 self = send
50 transport = smtp
51
52#
53begin transports
54
55smtp:
56 driver = smtp
57 hosts_pipe_connect = CONTROL
58 tls_verify_hosts =
59 tls_try_verify_hosts =
60