Fix CVE-2016-1531
[exim.git] / test / confs / 5608
1 # Exim test configuration 5601
2 # OCSP stapling, client, tpda
3
4 SERVER =
5
6 exim_path = EXIM_PATH
7 keep_environment = ^EXIM_TESTHARNESS_DISABLE_[O]CSPVALIDITYCHECK$
8 host_lookup_order = bydns
9 primary_hostname = server1.example.com
10 rfc1413_query_timeout = 0s
11 spool_directory = DIR/spool
12 log_file_path = DIR/spool/log/SERVER%slog
13 gecos_pattern = ""
14 gecos_name = CALLER_NAME
15
16
17 # ----- Main settings -----
18
19 domainlist local_domains = test.ex : *.test.ex
20
21 acl_smtp_rcpt = check_recipient
22 acl_smtp_data = check_data
23
24 log_selector = +tls_peerdn
25 remote_max_parallel = 1
26
27 tls_advertise_hosts = *
28
29 # Set certificate only if server
30
31 tls_certificate = ${if eq {SERVER}{server}\
32 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
33 fail\
34 }
35
36 #{DIR/aux-fixed/exim-ca/example.com/CA/CA.pem}\
37
38 tls_privatekey = ${if eq {SERVER}{server}\
39 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
40 fail}
41
42 tls_ocsp_file = OCSP
43
44
45 # ------ ACL ------
46
47 begin acl
48
49 check_recipient:
50   accept  domains = +local_domains
51   deny    message = relay not permitted
52
53 check_data:
54   warn    condition   = ${if def:h_X-TLS-out:}
55           logwrite = client claims: $h_X-TLS-out:
56   accept
57
58 logger:
59   warn  logwrite = client ocsp status: $tls_out_ocsp \
60     (${listextract {${eval:$tls_out_ocsp+1}} \
61                 {notreq:notresp:vfynotdone:failed:verified}})
62   accept
63
64 # ----- Routers -----
65
66 begin routers
67
68 client:
69   driver = accept
70   condition = ${if eq {SERVER}{server}{no}{yes}}
71   retry_use_local_part
72   transport = send_to_server${if eq{$local_part}{nostaple}{1} \
73                                 {${if eq{$local_part}{norequire} {2} \
74                                 {${if eq{$local_part}{smtps} {4}{3}}} \
75                              }}}
76
77 server:
78   driver = redirect
79   data = :blackhole:
80   #retry_use_local_part
81   #transport = local_delivery
82
83
84 # ----- Transports -----
85
86 begin transports
87
88 local_delivery:
89   driver = appendfile
90   file = DIR/test-mail/$local_part
91   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
92   user = CALLER
93
94 # nostaple: deliberately do not request cert-status
95 send_to_server1:
96   driver = smtp
97   allow_localhost
98   hosts = HOSTIPV4
99   port = PORT_D
100   tls_verify_certificates =     DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
101   hosts_require_tls =   *
102   hosts_request_ocsp =  :
103   headers_add =                 X-TLS-out: ocsp status $tls_out_ocsp
104   tpda_delivery_action =        ${acl {logger}}
105   tpda_host_defer_action =      ${acl {logger}}
106
107 # norequire: request stapling but do not verify
108 send_to_server2:
109   driver = smtp
110   allow_localhost
111   hosts = HOSTIPV4
112   port = PORT_D
113   tls_verify_certificates =     DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
114   hosts_require_tls =   *
115 # note no ocsp mention here
116   headers_add =                 X-TLS-out: ocsp status $tls_out_ocsp
117   tpda_delivery_action =        ${acl {logger}}
118   tpda_host_defer_action =      ${acl {logger}}
119
120 # (any other name): request and verify
121 send_to_server3:
122   driver = smtp
123   allow_localhost
124   hosts = 127.0.0.1
125   port = PORT_D
126   helo_data = helo.data.changed
127   tls_verify_certificates =     DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
128   hosts_require_tls =   *
129   hosts_require_ocsp =  *
130   headers_add =                 X-TLS-out: ocsp status $tls_out_ocsp
131   tpda_delivery_action =        ${acl {logger}}
132   tpda_host_defer_action =      ${acl {logger}}
133
134 # (any other name): request and verify, ssl-on-connect
135 send_to_server4:
136   driver = smtp
137   allow_localhost
138   hosts = 127.0.0.1
139   port = PORT_D
140   helo_data = helo.data.changed
141   tls_verify_certificates =     DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
142   protocol =           smtps
143   hosts_require_tls =  *
144   hosts_require_ocsp = *
145   headers_add =                 X-TLS-out: ocsp status $tls_out_ocsp
146   tpda_delivery_action =        ${acl {logger}}
147   tpda_host_defer_action =      ${acl {logger}}
148
149
150 # ----- Retry -----
151
152
153 begin retry
154
155 * * F,5d,1s
156
157
158 # End