Merge branch 'master' into dane
[exim.git] / test / confs / 5820
1 # Exim test configuration 5800
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 # needed to force generation
26 tls_dhparam = historic
27
28 # Set certificate only if server
29
30 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
31 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
32
33 #tls_verify_hosts = *
34 #tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
35
36
37 # ----- Routers -----
38
39 begin routers
40
41 client:
42   driver = accept
43   condition = ${if eq {SERVER}{server}{no}{yes}}
44   retry_use_local_part
45   transport = send_to_server
46
47 server:
48   driver = redirect
49   data = :blackhole:
50
51
52 # ----- Transports -----
53
54 begin transports
55
56 send_to_server:
57   driver = smtp
58   allow_localhost
59   hosts = 127.0.0.1
60   port = PORT_D
61 #  tls_certificate = DIR/aux-fixed/cert2
62 #  tls_privatekey = DIR/aux-fixed/cert2
63 #  tls_verify_certificates = DIR/aux-fixed/cert2
64
65
66 # ----- Retry -----
67
68
69 begin retry
70
71 * * F,5d,10s
72
73
74 # End