7eb19f7544128825d15605fa797be955ad7d1ae2
[exim.git] / test / confs / 5601
1 # Exim test configuration 5601
2 # OCSP stapling, client
3
4 SERVER =
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 primary_hostname = server1.example.com
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
16 # ----- Main settings -----
17
18 domainlist local_domains = test.ex : *.test.ex
19
20 acl_smtp_rcpt = check_recipient
21 acl_smtp_data = check_data
22
23 log_selector = +tls_peerdn
24 remote_max_parallel = 1
25
26 tls_advertise_hosts = *
27
28 # Set certificate only if server
29
30 tls_certificate = ${if eq {SERVER}{server}\
31 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
32 fail\
33 }
34
35 #{DIR/aux-fixed/exim-ca/example.com/CA/CA.pem}\
36
37 tls_privatekey = ${if eq {SERVER}{server}\
38 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
39 fail}
40
41 tls_ocsp_file = OCSP
42
43
44 # ------ ACL ------
45
46 begin acl
47
48 check_recipient:
49 accept domains = +local_domains
50 deny message = relay not permitted
51
52 check_data:
53 warn condition = ${if def:h_X-TLS-out:}
54 logwrite = client claims: $h_X-TLS-out:
55 accept
56
57 # ----- Routers -----
58
59 begin routers
60
61 client:
62 driver = accept
63 condition = ${if eq {SERVER}{server}{no}{yes}}
64 retry_use_local_part
65 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
66 {${if eq{$local_part}{norequire} {2} \
67 {${if eq{$local_part}{smtps} {4}{3}}} \
68 }}}
69
70 server:
71 driver = redirect
72 data = :blackhole:
73 #retry_use_local_part
74 #transport = local_delivery
75
76
77 # ----- Transports -----
78
79 begin transports
80
81 local_delivery:
82 driver = appendfile
83 file = DIR/test-mail/$local_part
84 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
85 user = CALLER
86
87 send_to_server1:
88 driver = smtp
89 allow_localhost
90 hosts = HOSTIPV4
91 port = PORT_D
92 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
93 hosts_require_tls = *
94 hosts_request_ocsp = :
95 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
96
97 send_to_server2:
98 driver = smtp
99 allow_localhost
100 hosts = HOSTIPV4
101 port = PORT_D
102 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
103 hosts_require_tls = *
104 # note no ocsp mention here
105 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
106
107 send_to_server3:
108 driver = smtp
109 allow_localhost
110 hosts = 127.0.0.1
111 port = PORT_D
112 helo_data = helo.data.changed
113 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
114 hosts_require_tls = *
115 hosts_require_ocsp = *
116 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
117
118 send_to_server4:
119 driver = smtp
120 allow_localhost
121 hosts = 127.0.0.1
122 port = PORT_D
123 helo_data = helo.data.changed
124 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
125 protocol = smtps
126 hosts_require_tls = *
127 hosts_require_ocsp = *
128 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
129
130
131 # ----- Retry -----
132
133
134 begin retry
135
136 * * F,5d,1s
137
138
139 # End