Testsuite: ensure TFO not used when not wanted
[exim.git] / test / confs / 4056
CommitLineData
ee8b8090
JH
1# test config 4056
2# Early-pipe, AUTH (no TLS!)
3
4keep_environment = PATH
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7spool_directory = DIR/spool
8
9.ifdef SERVER
10log_file_path = DIR/spool/log/SERVER%slog
11.else
12log_file_path = DIR/spool/log/%slog
13.endif
14
15gecos_pattern = ""
16gecos_name = CALLER_NAME
17dns_cname_loops = 9
18chunking_advertise_hosts =
19tls_advertise_hosts =
20
590fd9ee
JH
21.ifdef _HAVE_DMARC
22dmarc_tld_file =
23.endif
24
ee8b8090
JH
25pipelining_connect_advertise_hosts = *
26auth_advertise_hosts = *
27log_selector = +pipelining
28queue_only
29
30acl_smtp_rcpt = accept
31
32#
33begin routers
34
35server:
36 driver = redirect
37 condition = ${if eq {SERVER}{server}}
38 data = :blackhole:
39
40client:
41 driver = manualroute
42 route_data = 127.0.0.1::PORT_D
43 self = send
44 transport = smtp
45
46#
47begin transports
48
49smtp:
50 driver = smtp
9039d82f 51 hosts_try_fastopen = :
ee8b8090
JH
52 hosts_pipe_connect = *
53 hosts_require_auth = *
54
55#
56begin authenticators
57
58plain:
59 driver = plaintext
60 public_name = PLAIN
61
62 server_condition = "\
63 ${if and {{eq{$auth2}{userx}}{eq{$auth3}{secret}}}{yes}{no}}"
64 server_set_id = $auth2
65
66 client_send = ^userx^secret
67