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