Fix dkim_verify_signers option. Bug 2366
[exim.git] / test / confs / 2113
CommitLineData
afda344b
PH
1# Exim test configuration 2113
2
3SERVER =
4
d4dc049f
JH
5.include DIR/aux-var/tls_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = accept
12
875512a3 13log_selector = +tls_peerdn+smtp_connection+incoming_port+received_recipients
afda344b
PH
14
15queue_only
16queue_run_in_order
17
18smtp_accept_max_nonmail = 0
19
20tls_advertise_hosts = *
21
22# Set certificate only if server
23
24tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
25tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
26
27
28# ----- Routers -----
29
30begin routers
31
2575efb7
JH
32.ifdef REQUIRE
33cl_override:
34 driver = manualroute
35 route_data = HOSTIPV4
36 retry_use_local_part
37 transport = send_to_server
38 self = send
39.endif
40
afda344b
PH
41client:
42 driver = accept
43 condition = ${if eq {SERVER}{server}{no}{yes}}
44 retry_use_local_part
45 transport = send_to_server
46
47server:
48 driver = accept
49 retry_use_local_part
50 transport = local_delivery
51
52
53# ----- Transports -----
54
55begin transports
56
57local_delivery:
58 driver = appendfile
59 file = DIR/test-mail/$local_part
60 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
61 user = CALLER
62
63send_to_server:
64 driver = smtp
65 allow_localhost
2575efb7 66 hosts_override
afda344b 67 hosts = 127.0.0.1
875512a3 68 hosts_noproxy_tls = :
afda344b 69 port = PORT_D
610ff438 70 tls_try_verify_hosts = :
afda344b
PH
71
72# End