Make {bounce,warn}_message_file expanded. Bug 2522
[exim.git] / test / confs / 4065
CommitLineData
ee8b8090
JH
1# test config 4065
2# Early-pipe, AUTH, GnuTLS, tls-on-connect
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_on_connect_ports = PORT_D
20tls_advertise_hosts = *
21tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
22
23# Avoid ECDHE key-exchange so that we can wireshark-decode
24.ifdef _HAVE_GNUTLS
25tls_require_ciphers = NORMAL:-KX-ALL:+RSA
26.endif
27
590fd9ee
JH
28.ifdef _HAVE_DMARC
29dmarc_tld_file =
30.endif
31
ee8b8090
JH
32pipelining_connect_advertise_hosts = *
33auth_advertise_hosts = *
34
35log_selector = +received_recipients +pipelining
36queue_only
37
38acl_smtp_rcpt = accept
39
40#
41begin routers
42
43server:
44 driver = redirect
45 condition = ${if eq {SERVER}{server}}
46 data = :blackhole:
47
48client:
49 driver = manualroute
e462483c 50 route_data = 127.0.0.1
ee8b8090
JH
51 self = send
52 transport = smtp
53
54#
55begin transports
56
57smtp:
58 driver = smtp
59 hosts_pipe_connect = *
e462483c 60 port = PORT_D
047d31cb
JH
61 hosts_try_fastopen = :
62 protocol = smtps
ee8b8090
JH
63 tls_verify_hosts =
64 tls_try_verify_hosts =
65 hosts_require_auth = *
66
67#
68begin authenticators
69
70plain:
71 driver = plaintext
72 public_name = PLAIN
73
74 server_condition = "\
75 ${if and {{eq{$auth2}{userx}}{eq{$auth3}{secret}}}{yes}{no}}"
76 server_set_id = $auth2
77
78 client_send = ^userx^secret
79