PAM: fix crash in the pam expansion condition. Bug 2489
[exim.git] / test / confs / 5730
1 # Exim test configuration 5730
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
15 primary_hostname = server1.example.com
16
17 .ifdef _HAVE_DMARC
18 dmarc_tld_file =
19 .endif
20
21
22 # ----- Main settings -----
23
24 domainlist local_domains = test.ex : *.test.ex
25
26 acl_smtp_rcpt = check_recipient
27 acl_smtp_data = check_data
28
29 log_selector = +tls_peerdn
30 remote_max_parallel = 1
31
32 tls_advertise_hosts = *
33
34 # Set certificate only if server
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 tls_privatekey = ${if eq {SERVER}{server}\
40 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
41 fail}
42
43 # from cmdline define
44 tls_ocsp_file = OPT
45
46
47 # ------ ACL ------
48
49 begin acl
50
51 check_recipient:
52 accept domains = +local_domains
53 deny message = relay not permitted
54
55 check_data:
56 warn condition = ${if def:h_X-TLS-out:}
57 logwrite = client claims: $h_X-TLS-out:
58 accept
59
60 logger:
61 accept condition = ${if !eq {msg} {${listextract{1}{$event_name}}}}
62 warn logwrite = client ocsp status: $tls_out_ocsp \
63 (${listextract {${eval:$tls_out_ocsp+1}} \
64 {notreq:notresp:vfynotdone:failed:verified}})
65 accept
66
67
68 # ----- Routers -----
69
70 begin routers
71
72 client:
73 driver = accept
74 condition = ${if eq {SERVER}{server}{no}{yes}}
75 retry_use_local_part
76 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
77 {${if eq{$local_part}{norequire} {2} \
78 {${if eq{$local_part}{smtps} {4}{3}}} \
79 }}}
80
81 server:
82 driver = redirect
83 data = :blackhole:
84 #retry_use_local_part
85 #transport = local_delivery
86
87
88 # ----- Transports -----
89
90 begin transports
91
92 local_delivery:
93 driver = appendfile
94 file = DIR/test-mail/$local_part
95 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
96 user = CALLER
97
98 send_to_server1:
99 driver = smtp
100 allow_localhost
101 hosts = HOSTIPV4
102 port = PORT_D
103 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
104 tls_verify_cert_hostnames =
105 hosts_require_tls = *
106 hosts_request_ocsp = :
107 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
108 (${listextract {${eval:$tls_out_ocsp+1}} \
109 {notreq:notresp:vfynotdone:failed:verified}})
110 event_action = ${acl {logger}}
111
112 send_to_server2:
113 driver = smtp
114 allow_localhost
115 hosts = HOSTIPV4
116 port = PORT_D
117 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
118 tls_verify_cert_hostnames =
119 hosts_require_tls = *
120 # note no ocsp mention here
121 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
122 (${listextract {${eval:$tls_out_ocsp+1}} \
123 {notreq:notresp:vfynotdone:failed:verified}})
124 event_action = ${acl {logger}}
125
126 send_to_server3:
127 driver = smtp
128 allow_localhost
129 hosts = 127.0.0.1
130 port = PORT_D
131 helo_data = helo.data.changed
132 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
133 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
134 tls_try_verify_hosts =
135 tls_verify_cert_hostnames =
136 hosts_require_tls = *
137 hosts_require_ocsp = *
138 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
139 (${listextract {${eval:$tls_out_ocsp+1}} \
140 {notreq:notresp:vfynotdone:failed:verified}})
141 event_action = ${acl {logger}}
142
143 send_to_server4:
144 driver = smtp
145 allow_localhost
146 hosts = 127.0.0.1
147 port = PORT_D
148 helo_data = helo.data.changed
149 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
150 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
151 tls_verify_cert_hostnames =
152 protocol = smtps
153 hosts_require_tls = *
154 hosts_require_ocsp = *
155 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
156 (${listextract {${eval:$tls_out_ocsp+1}} \
157 {notreq:notresp:vfynotdone:failed:verified}})
158 event_action = ${acl {logger}}
159
160
161 # ----- Retry -----
162
163
164 begin retry
165
166 * * F,5d,1s
167
168
169 # End