cd4ccc59f25c5668af69e2c5d5859c066778942e
[exim.git] / test / confs / 5850
1 # Exim test configuration 5850
2 # DANE
3
4 SERVER=
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 rfc1413_query_timeout = 0s
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 acl_smtp_rcpt = accept
18
19 log_selector = +tls_peerdn
20
21 queue_only
22 queue_run_in_order
23
24 tls_advertise_hosts = *
25
26 # Set certificate only if server
27
28 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
29 #tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
30
31
32 # ----- Routers -----
33
34 begin routers
35
36 client:
37 driver = dnslookup
38 condition = ${if eq {SERVER}{server}{no}{yes}}
39 dnssec_request_domains = *
40 self = send
41 transport = send_to_server
42
43 server:
44 driver = redirect
45 data = :blackhole:
46
47
48 # ----- Transports -----
49
50 begin transports
51
52 send_to_server:
53 driver = smtp
54 allow_localhost
55 port = PORT_D
56
57 # hosts_try_dane = *
58 hosts_require_dane = *
59
60
61 # ----- Retry -----
62
63
64 begin retry
65
66 * * F,5d,10s
67
68
69 # End