Fix filter noerror command. Bug 2318
[exim.git] / test / confs / 5822
CommitLineData
624f33df
JH
1# Exim test configuration 5822
2# DANE/GnuTLS
3
4SERVER=
5
6.include DIR/aux-var/tls_conf_prefix
7
8primary_hostname = myhost.test.ex
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = accept logwrite = "rcpt ACL"
13
14log_selector = +received_recipients +tls_peerdn +tls_certificate_verified
15
16queue_run_in_order
17
18tls_advertise_hosts = *
19# needed to force generation
20tls_dhparam = historic
21
22tls_certificate = ${if eq {SERVER}{server} {DIR/aux-fixed/cert1} fail}
23
24# ----- Routers -----
25
26begin routers
27
28client:
29 driver = dnslookup
30 condition = ${if eq {SERVER}{}}
31 dnssec_request_domains = *
32 self = send
33 transport = send_to_server
34 errors_to = ""
35
36server:
37 driver = redirect
38 condition = ${if !eq {SERVER}{}}
39 data = :blackhole:
40
41
42# ----- Transports -----
43
44begin transports
45
46send_to_server:
47 driver = smtp
48 allow_localhost
49 port = PORT_D
50
51 hosts_try_dane = *
52 hosts_require_dane = HOSTIPV4
53 tls_verify_cert_hostnames = :
54 tls_try_verify_hosts = thishost.test.ex
55# tls_verify_certificates = CDIR2/ca_chain.pem
56
57
58
59# ----- Retry -----
60
61
62begin retry
63
64* * F,5d,10s
65
66
67# End