New variable $config_dir, $config_file. Bug 1553
[exim.git] / test / scripts / 0000-Basic / 0002
1 # Common string expansions
2 #
3 # This is the main string expansion test that tests those expansions that will
4 # be present in the basic Exim binary which we require in order to run these
5 # tests at all. Specialized expansion tests also exist for optional features
6 # in other test scripts.
7 munge dnssec
8
9 exim -be
10
11 # These expansions can test variables in the configuration, but as there
12 # is no message being processed, there is no message-related data. But
13 # that of course gets tested in plenty of other places.
14
15 # Some fixed variables
16
17 exim_path: $exim_path
18 config_dir: $config_dir
19 config_file: $config_file
20 primary_hostname: $primary_hostname
21 primary_hostname: ${primary_hostname}
22 qualify_domain: $qualify_domain
23 bounce_return_size_limit: ${bounce_return_size_limit}
24 spool_directory: $spool_directory
25 unknown: ${unknown}
26 h_subject: $h_subject:(should be empty)
27 h_subject:$h_subject (should be empty)
28 header in curlies: ${header_subject:} (should fail)
29
30 # \$message_headers should be empty
31 message_headers: >$message_headers<
32
33 # Continuation
34 x\
35 y
36 x\
37 y
38
39 # Overlong names and overbig numbers
40
41 +$aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
42 +${aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
43 +$11111111111111111111111111111111111
44 +${11111111111111111111111111111111111}
45
46 # List operations
47
48 filter: "${filter{a:b:c}{eq{1}{1}}}"
49 filter: ${filter{a:b:c}{!eq{$item}{b}}}
50 filter: ${filter{<' a'b'c}{!eq{$item}{b}}}
51 filter: ${filter{<' ''a'b' ''c}{!eq{$item}{b}}}
52 filter: "${filter{}{!eq{$item}{b}}}"
53
54 map: "${map{}{$item}}"
55 map: ${map{a:b:c}{$item}}
56 map: ${map{a:b:c}{:$item:}}
57 map: ${if eq{1}{0}{${map{a:b:c}{:$item:}}}{fail string}}
58 map: ${map{:b:c}{[$item]}}
59
60 reduce: "${reduce{}{+}{$value$item}}"
61 reduce: ${reduce{a:b:c}{+}{$value$item}}
62 reduce: ${reduce {<, 1,2,3}{0}{${eval:$value+$item}}}
63 reduce: ${reduce {3:0:9:4:6}{0}{${if >{$item}{$value}{$item}{$value}}}}
64
65 listnamed: ${listnamed:dlist}
66 listnamed: ${listnamed:+dlist}
67 listnamed: ${listnamed:hlist}
68 listnamed: ${listnamed:elist}
69 listnamed: ${listnamed:flist}
70 listnamed: ${listnamed:nolist}
71 listnamed: ${listnamed_d:dlist}
72 listnamed: ${listnamed_d:hlist}
73 listnamed: ${listnamed_z:dlist}
74
75 listcount: ${listcount:a:b:c}
76 listcount: ${listcount:}
77 listcount: ${listcount:<;a;b;c}
78 listcount: ${listcount:${listnamed:dlist}}
79
80 listextract: ${listextract{ 2}{a:b:c:d}}
81 listextract: ${listextract{-2}{<,a,b,c,d}{X${value}X}}
82 listextract: ${listextract{ 5}{a:b:c:d}}
83 listextract: ${listextract{-5}{a:b:c:d}}
84 listextract: ${listextract{ 5}{a:b:c:d}{}{fail}}
85 listextract: ${listextract{ 5}{a:b:c:d}{}fail}
86
87 sort: ${sort{3:2:1:4}{<}{$item}}
88 sort: ${sort {<, 3,2,1,4}{>}{$item}}
89 sort: ${sort{c:B:a:aa}{lti}{$item}}
90 sort: ${sort{666 r99.ex.com:10 smtp.ex.com:100 r2.ex.com}{<}{${sg {$item}{([0-9]*).*\$}{\$1}}}}
91 sort: ${sort{666,r99.ex.com:10,smtp.ex.com:100,r2.ex.com}{<}{${listextract{1}{<,$item}}}}
92 sort: "${sort{}{<}{$item}}"
93
94 # Tests with iscntrl() and illegal separators
95
96 map: ${map{<\n a\n\nb\nc}{'$item'}}
97
98 reduce: ${reduce {<n 1\n2\n3}{0}{${eval:$value+$item}}}
99 reduce: ${reduce {<\n 1\n2\n3}{0}{${eval:$value+$item}}}
100 reduce: ${reduce { <\n 1\n 2 \n 3 }{0}{${eval:$value+$item}}}
101 reduce: ${reduce {<\x7f 1\x7f2\177 3}{0}{${eval:$value+$item}}}
102
103 # Operators
104
105 acl: ${acl
106 acl: ${acl}
107 acl: ${acl {a_nosuch}}
108 acl: ${acl {a_ret}}
109 acl: ${acl {a_ret}{person@dom.ain}}
110 acl: ${acl {a_ret}{firstarg}{secondarg}}
111 acl: ${acl {a_ret}{arg with spaces}}
112 acl: ${acl {a_none}}
113 acl: ${acl {a_none}{person@dom.ain}}
114 acl: ${acl {a_deny}}
115 acl: ${acl {a_deny}{person@dom.ain}}
116 acl: ${acl {a_defer}}
117 acl: ${acl {a_sub}{top_arg_1}{top_arg_2}{top_arg_3}}
118 acl: ${reduce {1:2:3:4} {} {$value ${acl {a_ret}{$item}}}}
119
120 addrss: ${address:local-part@dom.ain}
121 addrss: ${address:Exim Person <local-part@dom.ain> (that's me)}
122 domain: ${domain:local-part@dom.ain}
123 domain: ${domain:Exim Person <local-part@dom.ain> (that's me)}
124
125 addresses: ${addresses:>' 'abc@xyz, 'pqr@xyz}
126 addresses: ${addresses:Exim Person <local-part@dom.ain> (that's me)}
127 addresses: ${addresses:>+ Exim Person <local-part@dom.ain> (that's me),\
128 xyz@abc}
129 addresses: ${addresses:Exim Person <local-part@dom.ain> (that's me), \
130 xyz@abc, nullgroupname:;, group: p@q, r@s; }
131 addresses: ${addresses:local-part@dom.ain <local-part@dom.ain>}
132
133 escape: ${escape:B7·F2ò}
134 eval: ${eval:1+1}
135 eval: ${eval:1+2*3}
136 eval: ${eval:(1+2)*3}
137 eval: ${eval:3/2*4}
138 eval: ${eval:3*4/2}
139 eval: ${eval:42}
140 eval: ${eval:}
141 eval: ${eval:-2}
142 eval: ${eval:-2 - -3}
143 eval: ${eval:-2 - (-3)}
144 eval: ${eval:-2 - (-3}
145 eval: ${eval:-2 - -3)}
146 eval: ${eval:-2 --3}
147 eval: ${eval:-2 -+3}
148 eval: ${eval:-2 -+-3}
149 eval: ${eval:(2*(1+1))/2 + 40K}
150 eval: ${eval:077}
151 eval: ${eval:08}
152 eval10: ${eval10:077}
153 eval10: ${eval10:08}
154 eval10: ${eval10:0x1234}
155 eval: ${eval:2+42%5}
156 eval: ${eval:0xc&5}
157 eval: ${eval:0xc & 5 }
158 eval: ${eval:0x0c|5}
159 eval: ${eval:0xc^5}
160 eval: ${eval:0xc>>1}
161 eval: ${eval:0xc >> 2}
162 eval: ${eval:0xc >> 4 }
163 eval: ${eval:0xc<<1}
164 eval: ${eval:~255&0x1234}
165 eval: ${eval:~ 255&0x1234}
166 eval: ${eval: -(~255&0x1234)}
167
168 expand: \$primary_hostname ${expand:\$primary_hostname}
169 hash: ${hash_3:monty} ${hash_5:monty} ${hash_4_62:monty python}
170 hash: ${hash_3:abc}X ${hash_3:ab}X ${hash_3:a}X ${hash_3:}X
171 hex2b64:${hex2b64:12345678}
172 hex2b64:${hex2b64:abcdef}
173 hex2b64:${hex2b64:ABCDEF}
174 hex2b64:${hex2b64:1a2b3c4d5e6f}
175 hex2b64:${hex2b64:1a2b3c4d5e6}
176 hex2b64:${hex2b64:1a2b3c4d5e6g}
177 hex2b64:${hex2b64:${md5:the quick brown fox}}
178 hex2b64:${hex2b64:${sha1:the quick brown fox}}
179
180 The base62 operator is actually a base36 operator in the Darwin and Cygwin
181 environments. Write cunning tests that produce the same output in both cases,
182 while doing a reasonable check.
183
184 base62: ${if or {\
185 {eq {${base62:12345}}{0003D7}}\
186 {eq {${base62:12345}}{0009IX}}\
187 }{OK}{NOT OK}}
188 base62d: ${if or {\
189 {eq {${base62d:0003D7}}{12345}}\
190 {eq {${base62d:0009IX}}{12345}}\
191 }{OK}{NOT OK}}
192 base62d: ${if or {\
193 {eq {${base62d:3D7}}{12345}}\
194 {eq {${base62d:9IX}}{12345}}\
195 }{OK}{NOT OK}}
196 base62 error: ${base62:12345x}
197 base62d error:${base62d:0003D7.}
198
199 hmac: ${hmac{md5}{somesecret}{mail.example.com 2002-10-17 11:30:59}}
200 hmac: ${hmac{sha1}{somesecret}{mail.example.com 2002-10-17 11:30:59}}
201 md5: ${md5:the quick brown fox jumps over the lazy dog}
202 sha1: ${sha1:}
203 sha1: ${sha1:abc}
204 mask: ${mask:192.168.10.206/28}
205 mask: ${mask:192.168.10.206/32}
206 mask: ${mask:192.168.10.206/33}
207 mask: ${mask:192.168.10.206/0}
208 mask: ${mask:192.168.10.206}
209 mask: ${mask:a.b.c.d}
210 nhash: ${nhash_24:monty} ${nhash_8_63:monty python}
211 lc/uc: ${lc:The Quick} ${uc: Brown Fox}
212 length: ${length_10:The quick brown fox} ${l_10:abc}
213 lclpt: ${local_part:local-part@dom.ain}
214 lclpt: ${local_part:Exim Person <local-part@dom.ain> (that's me)}
215 quote: ${quote:aZ09_.-Q} ${quote:ab*cd} ${quote:ab\cd"ef}
216 quote: ${quote:nl(\n)}
217 quote: ${quote:cr(\r)}
218 quote: ${quote:tab(\t)}
219 quote: ${quote:xff(\xff)}
220 quote: Empty>${quote:}<
221 quote_local_part: ${quote_local_part:abcd}
222 quote_local_part: ${quote_local_part:O'Reilly}
223 quote_local_part: ${quote_local_part:a space}
224 quote_local_part: ${quote_local_part:.something}
225 quote_local_part: ${quote_local_part:something.}
226 quote_local_part: ${quote_local_part:joe.bloggs}
227 quote_local_part: ${quote_local_part:a!b}
228 quote_local_part: ${quote_local_part:x@y}
229 quote_local_part: ${quote_local_part:ab*cd}
230 quote_local_part: ${quote_local_part:x:y}
231 quote_local_part: ${quote_local_part:ab\cd"ef}
232 quote_local_part: ${quote_local_part:}
233 rxquote:${rxquote:aZ09_,-Q} ${rxquote:ab*cd} ${rxquote:ab\cd"ef}
234 hexquote: ${hexquote:\
235 \001\002\003\004\005\006\007 \010\011\012\013\014\015\016\017 \
236 \020\021\022\023\024\025\026\027 \030\031\032\033\034\035\036\037 \
237 \040\041\042\043\044\045\046\047 \050\051\052\053\054\055\056\057 \
238 \060\061\062\063\064\065\066\067 \070\071\072\073\074\075\076\077 \
239 \100\101\102\103\104\105\106\107 \110\111\112\113\114\115\116\117 \
240 \120\121\122\123\124\125\126\127 \130\131\132\133\134\135\136\137 \
241 \140\141\142\143\144\145\146\147 \150\151\152\153\154\155\156\157 \
242 \160\161\162\163\164\165\166\167 \170\171\172\173\174\175\176\177}
243 substr: ${substr_3_2:rhubarb} ${s_-5_2:1234567} ${s_-5_2:12} ${s_-3_2:12}
244 substr: ${s_3:rhubarb} ${s_-2:rhubarb}
245 substr: ${s_1:}
246 substr: ${substr_10:abc}
247 str2b64:${str2b64:abcd}
248 str2b64:${str2b64:The quick brown \n fox}
249 strlen: ${strlen:}
250 strlen: ${strlen:a}
251 strlen: ${strlen:abcdefgh}
252 time_eval: ${time_eval:10s}
253 time_eval: ${time_eval:2h}
254 time_eval: ${time_eval:1d5m}
255 time_eval: ${time_eval:1w2d3h4m5s}
256 time_eval: ${time_eval:14}
257 time_eval: ${time_eval:rhubarb}
258 time_interval: ${time_interval:0}
259 time_interval: ${time_interval:44}
260 time_interval: ${time_interval:999999}
261 time_interval: ${time_interval:-1}
262 time_interval: ${time_interval:rhubarb}
263
264 # stat is a bit tricky, but some of the fields of the aux-var directory
265 # should be the same on all systems
266
267 stat: ${extract{mode}{${stat:DIR/aux-var}}}
268 stat: ${extract{smode}{${stat:DIR/aux-var}}}
269 stat: ${stat:/a/non/existent/file}
270
271 # "Operators" that have expanded arguments
272
273 hash: ${hash{3}{monty}} ${hash{5}{monty}} ${hash{4}{62}{monty python}}
274 hash: ${hash{3}{abc}}X ${hash{3}{ab}}X ${hash{3}{a}}X ${hash{3}{}}X
275 nhash: ${nhash{24}{monty}} ${nhash{8}{63}{monty python}}
276 length: ${length{10}{The quick brown fox}} ${length{10}{abc}}
277 substr: ${substr{3}{2}{rhubarb}} ${substr{-5}{2}{1234567}} ${substr{-5}{2}{12}} ${substr{-3}{2}{12}}
278 substr: ${substr{${if eq{1}{1}{-8}}}{${if eq{1}{0}{25}{1}}}{abcde}}
279
280 # Error forms
281
282 ${hash{one}}
283 ${hash{nonnumber}{abcd}}
284 ${hash{3}{2}{4}{abcd}}
285 ${substr{-3}{-2}{abcd}}
286
287 # Skipped operators
288
289 addrss: ${if eq {1}{2}{${address:invalid}}{NO}}
290 domain: ${if eq {1}{2}{${domain:invalid}}{NO}}
291 escape: ${if eq {1}{2}{${escape:invalid}}{NO}}
292 expand: ${if eq {1}{2}{\$primary_hostname ${expand:\$invalid}}{NO}}
293 hash: ${if eq {1}{2}{${hash_3:invalid}}{NO}}
294 md5: ${if eq {1}{2}{${md5:invalid}}{NO}}
295 mask: ${if eq {1}{2}{${mask:invalid}}{NO}}
296
297 # Number suffixes in conditions
298 1k: ${if >{1}{1k}{n}{y}}
299 1K: ${if >{1}{1K}{n}{y}}
300 1M: ${if >{1}{1M}{n}{y}}
301 1G: ${if >{1}{1G}{n}{y}}
302
303 # Numeric overflow
304 # >32b should work, >64b not
305
306 1 > 2047M ${if >{1}{2047M}{y}{n}}
307 1 > 2048M ${if >{1}{2048M}{y}{n}}
308 1 > 4096000000 ${if >{1}{4096000000}{y}{n}}
309 1 > 4096M ${if >{1}{4096M}{y}{n}}
310 1 > 4611686018427387904 ${if >{1}{4611686018427387904} {y}{n}}
311 1 > 46116860184273879040 ${if >{1}{46116860184273879040}{y}{n}}
312
313 # Conditions
314
315 2=2: ${if ={2}{2}{y}{n}}
316 2==2: ${if =={2}{2}{y}{n}}
317 3=2: ${if ={3}{2}{y}{n}}
318 2==3: ${if =={2}{3}{y}{n}}
319 !2=2: ${if !={2}{2}{y}{n}}
320 !2==2: ${if !=={2}{2}{y}{n}}
321 !3=2: ${if !={3}{2}{y}{n}}
322 !2==3: ${if !=={2}{3}{y}{n}}
323 2>3: ${if >{2}{3}{y}{n}}
324 3>3: ${if >{3}{3}{y}{n}}
325 4>3: ${if >{4}{3}{y}{n}}
326 1>-1: ${if >{1}{-1}{y}{n}}
327 2>=3: ${if >={2}{3}{y}{n}}
328 3>=3: ${if >={3}{3}{y}{n}}
329 4>=3: ${if >={4}{3}{y}{n}}
330 2<3: ${if <{2}{3}{y}{n}}
331 3<3: ${if <{3}{3}{y}{n}}
332 4<3: ${if <{4}{3}{y}{n}}
333 2<=3: ${if <={2}{3}{y}{n}}
334 3<=3: ${if <={3}{3}{y}{n}}
335 4<=3: ${if <={4}{3}{y}{n}}
336 5<=3: ${if <={ 5 } { 3 } {y}{n}}
337 -3<=1: ${if <={-3}{1}{y}{n}}
338
339 5>3k: ${if >{5 } {3k }{y}{n}}
340 5>3m: ${if >{5 } {3m }{y}{n}}
341 5>3z: ${if >{5 } {3z }{y}{n}}
342 5>a: ${if >{ 5 } {a}{y}{n}}
343 5>bad: ${if >{5 } {${lookup{trick}lsearch{DIR/aux-fixed/0002.lsearch}}} {y}{n}}
344
345 >0: ${if > {}{0}{y}{n}}
346 =: ${if = {}{}{y}{n}}
347 -2<: ${if < {-2}{}{y}{n}}
348 08>07: ${if > {08}{07}{y}{n}}
349 011=11: ${if = {011}{11}{y}{n}}
350
351 def:y ${if def:tod_log{y}{n}}
352 def:n ${if def:host{y}{n}}
353 def:f ${if def:post{y}{n}}
354 def:h_f ${if def:h_xxx {y}{n}}
355 def:h_f ${if def:h_xxx:{y}{n}}
356 def:d: ${if def:tod_log:{y}{n}}
357
358 exists: ${if exists{/etc/passwd}{y}{n}}
359 exists: ${if exists{/doesnt}{y}{n}}
360
361 eq: ${if eq{abc}{abc}{y}{n}}
362 eq: ${if eq{abc}{xyz}{y}{n}}
363 !eq: ${if !eq{abc}{abc}{y}{n}}
364 !eq: ${if !eq{abc}{xyz}{y}{n}}
365
366 eqi: ${if eqi{abc}{abc}{y}{n}}
367 eqi: ${if eqi{abc}{ABC}{y}{n}}
368 eqi: ${if eqi{abc}{xyz}{y}{n}}
369 !eqi: ${if !eqi{abc}{abc}{y}{n}}
370 !eqi: ${if !eqi{abc}{aBc}{y}{n}}
371 !eqi: ${if !eqi{abc}{xyz}{y}{n}}
372
373 lt: ${if lt{ABC}{abc}{y}{n}}
374 lti: ${if lti{ABC}{abc}{y}{n}}
375 le: ${if le{ABC}{abc}{y}{n}}
376 lei: ${if lei{ABC}{abc}{y}{n}}
377 gt: ${if gt{ABC}{abc}{y}{n}}
378 gti: ${if gti{ABC}{abc}{y}{n}}
379 ge: ${if ge{ABC}{abc}{y}{n}}
380 gei: ${if gei{ABC}{abc}{y}{n}}
381
382 isip: ${if isip {1.2.3.4}{y}{n}} 1.2.3.4
383 isip4: ${if isip4{1.2.3.4}{y}{n}} 1.2.3.4
384 isip6: ${if isip6{1.2.3.4}{y}{n}} 1.2.3.4
385 isip: ${if isip {1:2:3:4}{y}{n}} 1:2:3:4
386 isip4: ${if isip4{1:2:3:4}{y}{n}} 1:2:3:4
387 isip6: ${if isip6{1:2:3:4}{y}{n}} 1:2:3:4
388 isip: ${if isip {::1}{y}{n}} ::1
389 isip4: ${if isip4{::1}{y}{n}} ::1
390 isip6: ${if isip6{::1}{y}{n}} ::1
391 isip: ${if isip {fe80::a00:20ff:fe86:a061}{y}{n}} fe80::a00:20ff:fe86:a061
392 isip4: ${if isip4{fe80::a00:20ff:fe86:a061}{y}{n}} fe80::a00:20ff:fe86:a061
393 isip6: ${if isip6{fe80::a00:20ff:fe86:a061}{y}{n}} fe80::a00:20ff:fe86:a061
394 isip: ${if isip {rhubarb}{y}{n}} rhubarb
395 isip4: ${if isip4{rhubarb}{y}{n}} rhubarb
396 isip6: ${if isip6{rhubarb}{y}{n}} rhubarb
397
398 match: ${if match{abcd}{\N^([ab]+)(\w+)$\N}{$2$1}fail}
399 match: ${if match{abcd}{^\N([ab]+)(\w+)$\N}{$2$1}fail}
400 match: ${if match{abcd}{^([ab]+)(\\w+)\$}{$2$1}fail}
401 match: ${if match{wxyz}{^([ab]+)(\\w+)\$}{$2$1}fail}
402 match: ${if match{abcd}{^([ab]+)(\\w+)\$}{$2[${if match{xyz}{(.*)}{$1}fail}]$1}fail}
403
404 match_domain: ${if match_domain{a.b.c}{x.y.z:a.b.c:p.q.r}{yes}{no}}
405 match_domain: ${if match_domain{a.b.c}{x.y.z:p.q.r}{yes}{no}}
406 match_domain: ${if match_domain{5.aa.bb}{+dlist}{yes}{no}}
407 match_domain: ${if match_domain{xxxyz}{+dlist}{yes}{no}}
408 match_domain: ${if match_domain{xyz}{+dlist}{yes}{no}}
409
410 ${if match{x@zz.aa.bb}{^(.*)} \
411 { \
412 >$1< \
413 ${if match_domain{${domain:$1}}{+dlist}{[$1]}} \
414 >$1< \
415 } \
416 { CAN'T HAPPEN}}
417
418 ${if match{x@xxxabc}{^(.*)} \
419 { \
420 >$1< \
421 ${if match_domain{${domain:$1}}{^\Nxxx(.*)\N}{[$1]}} \
422 >$1< \
423 } \
424 { CAN'T HAPPEN}}
425
426 match_address: ${if match_address{x@y.z}{p@q:*@y.z}{yes}{no}}
427 match_address: ${if match_address{x@y.z}{p@q:x@*.z}{yes}{no}}
428
429 match_local_part:${if match_local_part{jo}{jack:jill:jo:john}{yes}{no}}
430 match_local_part:${if match_local_part{jo}{\N^\w\N}{yes}{no}}
431
432 match_ip: 01 ${if match_ip{1.2.3.4}{4.5.6.7:1.2.3.4}}
433 match_ip: 02 ${if match_ip{1.2.3.4}{4.5.6.7:1.2.3.6}}
434 match_ip: 03 ${if match_ip{1.2.3.4}{4.5.6.7:1.2.3.6/24}}
435 match_ip: 04 ${if match_ip{1.2.3.4}{4.5.6.7:1.2.3.6:*}}
436 match_ip: 05 ${if match_ip{1.2.3.4}{4.5.6.7:1.2.3.6:name}}
437 match_ip: 06 ${if match_ip{1.2.3.4}{:4.5.6.7}}
438 match_ip: 07 ${if match_ip{}{:4.5.6.7}}
439 match_ip: 08 ${if match_ip{V4NET.11.12.13}{+hlist}}
440 match_ip: 09 ${if match_ip{V4NET.11.12.14}{+hlist}}
441 match_ip: 10 ${if match_ip{192.168.3.4}{+hlist}}
442 match_ip: 11 ${if match_ip{somename}{+hlist}}
443 match_ip: 12 ${if match_ip{1.2.3.4}{lsearch;DIR/aux-fixed/0002.matchip}}
444 match_ip: 13 ${if match_ip{1.2.3.4}{net-lsearch;DIR/aux-fixed/0002.matchip}}
445 match_ip: 14 ${if match_ip{5.6.7.8}{net24-lsearch;DIR/aux-fixed/0002.matchip}}
446 match_ip: 15 ${if match_ip{abcd::dcba}{net-iplsearch;DIR/aux-fixed/0002.matchip}}
447
448 queue_running: ${if queue_running{y}{n}}
449 first_delivery: ${if first_delivery{y}{n}}
450
451 queue_running after or: ${if or{{eq {0}{0}}{queue_running}}{y}{n}}
452 first_delivery after or: ${if or{{eq {0}{0}}{first_delivery}}{y}{n}}
453
454 # acl expansion condition
455 acl if: ${if acl {{a_ret}} {Y:$value}{N:$value}}
456 acl if: ${if acl {{a_ret}{argY}} {Y:$value}{N:$value}}
457 acl if: ${if acl {{a_deny}{argN}{arg2}} {Y:$value}{N:$value}}
458 acl if: ${if acl {{a_defer}{argN}{arg2}} {Y:$value}{N:$value}}
459
460 # Default values for both if strings
461
462 \${if eq{1}{1}} >${if eq{1}{1}}<
463 \${if eq{1}{2}} >${if eq{1}{2}}<
464
465 # Lookups: DIR is the testing directory. In this test we can only use the
466 # lookups that are required in all cases.
467
468 ${lookup{postmaster}lsearch{DIR/aux-fixed/0002.aliases}{$value}fail}
469
470 ${lookup{x@y}lsearch*@{DIR/aux-fixed/0002.starat}{$value}fail}
471 ${lookup{x@z}lsearch*{DIR/aux-fixed/0002.starat}{$value}fail}
472 ${lookup{x@z}lsearch*@{DIR/aux-fixed/0002.starat}{$value}fail}
473 ${lookup{x@w}lsearch*@{DIR/aux-fixed/0002.starat}{$value}fail}
474
475 ${lookup{a.b.c.d}partial-lsearch{DIR/aux-fixed/0002.domains}{$value}fail}
476 ${lookup{x.y.z}partial-lsearch{DIR/aux-fixed/0002.domains}{$value}{failed x.y.z}}
477 ${lookup{p.q}partial-lsearch{DIR/aux-fixed/0002.domains}{$value}fail}
478 ${lookup{o.p.q}partial-lsearch{DIR/aux-fixed/0002.domains}{$value}fail}
479 ${lookup{m.n.o.p.q}partial-lsearch{DIR/aux-fixed/0002.domains}{$value}fail}
480 ${lookup{x.y.z}partial1-lsearch{DIR/aux-fixed/0002.domains}{$value}fail}
481 ${lookup{x.y.z}partial0-lsearch{DIR/aux-fixed/0002.domains}{$value}fail}
482
483 q1: ${lookup{abc}lsearch{DIR/aux-fixed/0002.quoted}}
484 q2: ${lookup{xyz}lsearch{DIR/aux-fixed/0002.quoted}}
485 q3: ${lookup{pqr}lsearch{DIR/aux-fixed/0002.quoted}}
486 q4: ${lookup{a:b}lsearch{DIR/aux-fixed/0002.quoted}}
487 q5: ${lookup{"quoted"}lsearch{DIR/aux-fixed/0002.quoted}}
488 q6: ${lookup{white space}lsearch{DIR/aux-fixed/0002.quoted}}
489 q7: ${lookup{b\\s}lsearch{DIR/aux-fixed/0002.quoted}}
490
491 abc: ${lookup{abc}wildlsearch{DIR/aux-var/0002.wild}}
492 a.b.c: ${lookup{a.b.c}wildlsearch{DIR/aux-var/0002.wild}}
493 ab.c: ${lookup{ab.c}wildlsearch{DIR/aux-var/0002.wild}}
494 xyz: ${lookup{xyz}wildlsearch{DIR/aux-var/0002.wild}}
495 Xyz: ${lookup{Xyz}wildlsearch{DIR/aux-var/0002.wild}}
496 Zyz: ${lookup{Zyz}wildlsearch{DIR/aux-var/0002.wild}}
497 a b: ${lookup{a b}wildlsearch{DIR/aux-var/0002.wild}}
498 a b: ${lookup{a b}wildlsearch{DIR/aux-var/0002.wild}}
499 a:b: ${lookup{a:b}wildlsearch{DIR/aux-var/0002.wild}}
500 a.b: ${lookup{a.b}wildlsearch{DIR/aux-var/0002.wild}}
501 a..b: ${lookup{a..b}wildlsearch{DIR/aux-var/0002.wild}}
502 a9b: ${lookup{a9b}wildlsearch{DIR/aux-var/0002.wild}}
503 a99b: ${lookup{a99b}wildlsearch{DIR/aux-var/0002.wild}}
504
505 # Should give the same results as above because expansion does nothing
506
507 abc: ${lookup{abc}nwildlsearch{DIR/aux-var/0002.wild}}
508 a.b.c: ${lookup{a.b.c}nwildlsearch{DIR/aux-var/0002.wild}}
509 ab.c: ${lookup{ab.c}nwildlsearch{DIR/aux-var/0002.wild}}
510 xyz: ${lookup{xyz}nwildlsearch{DIR/aux-var/0002.wild}}
511 Xyz: ${lookup{Xyz}nwildlsearch{DIR/aux-var/0002.wild}}
512 Zyz: ${lookup{Zyz}nwildlsearch{DIR/aux-var/0002.wild}}
513 a b: ${lookup{a b}nwildlsearch{DIR/aux-var/0002.wild}}
514 a b: ${lookup{a b}nwildlsearch{DIR/aux-var/0002.wild}}
515 a:b: ${lookup{a:b}nwildlsearch{DIR/aux-var/0002.wild}}
516
517 # Should fail because of no expansion
518
519 a.b: ${lookup{a.b}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NO}}
520 a..b: ${lookup{a..b}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NO}}
521 a9b: ${lookup{a9b}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NO}}
522 a99b: ${lookup{a99b}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NO}}
523
524 # But these should succeed
525
526 a\\:b: ${lookup{a\\:b}nwildlsearch{DIR/aux-var/0002.wild}}
527 a\\:Xb: ${lookup{a\\:Xb}nwildlsearch{DIR/aux-var/0002.wild}}
528
529 # Some tests of case-(in)dependence
530
531 MiXeD-CD: ${lookup{MiXeD-CD}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NOT FOUND}}
532 MixeD-CD: ${lookup{MixeD-CD}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NOT FOUND}}
533 MiXeD-Ncd: ${lookup{MiXeD-Ncd}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NOT FOUND}}
534 MixeD-Ncd: ${lookup{MixeD-Ncd}nwildlsearch{DIR/aux-var/0002.wild}{$value}{NOT FOUND}}
535
536 # IP address (CIDR) lookups
537
538 1.2.3.4: ${lookup{1.2.3.4}iplsearch{DIR/aux-fixed/0002.iplsearch}}
539 1.2.3.5: ${lookup{1.2.3.5}iplsearch{DIR/aux-fixed/0002.iplsearch}}
540 1.2.3.5: ${lookup{1.2.3.5}iplsearch*{DIR/aux-fixed/0002.iplsearch}}
541 abcd::cdab: ${lookup{abcd::cdab}iplsearch{DIR/aux-fixed/0002.iplsearch}}
542 192.168.1.2: ${lookup{192.168.1.2}iplsearch{DIR/aux-fixed/0002.iplsearch}}
543 192.168.5.6: ${lookup{192.168.5.6}iplsearch{DIR/aux-fixed/0002.iplsearch}}
544 abcd:abcd:: ${lookup{abcd:abcd::}iplsearch{DIR/aux-fixed/0002.iplsearch}}
545 abcd:abcd:1:: ${lookup{abcd:abcd:1::}iplsearch{DIR/aux-fixed/0002.iplsearch}}
546 abcd:abcd::3 ${lookup{abcd:abcd::3}iplsearch{DIR/aux-fixed/0002.iplsearch}}
547 rhubarb ${lookup{rhubarb}iplsearch{DIR/aux-fixed/0002.iplsearch}}
548
549
550 # Nested Lookups - style 1
551
552 ${lookup{${lookup{key1}lsearch{DIR/aux-fixed/0002.rec}{$value}{key1f}}}lsearch{DIR/aux-fixed/0002.rec}{$value}fail}
553 ${lookup{${lookup{key3}lsearch{DIR/aux-fixed/0002.rec}{$value}{key1f}}}lsearch{DIR/aux-fixed/0002.rec}{$value}fail}
554
555 # Nested Lookups - style 2
556
557 ${lookup{key1}lsearch{DIR/aux-fixed/0002.rec}{${lookup{$value}lsearch{DIR/aux-fixed/0002.rec}{$value}{failed for $value}}}{failed for key1}}
558 ${lookup{key3}lsearch{DIR/aux-fixed/0002.rec}{${lookup{$value}lsearch{DIR/aux-fixed/0002.rec}{$value}{failed for $value}}}{failed for key1}}
559
560 # Other nesting tests
561
562 ${lookup{one}lsearch{DIR/aux-fixed/0002.alias1}{$value${lookup{one}lsearch{DIR/aux-fixed/0002.alias2}{,$value}}}{${lookup{one}lsearch{DIR/aux-fixed/0002.alias2}{$value}fail}}}
563 ${lookup{two}lsearch{DIR/aux-fixed/0002.alias1}{$value${lookup{two}lsearch{DIR/aux-fixed/0002.alias2}{,$value}}}{${lookup{two}lsearch{DIR/aux-fixed/0002.alias2}{$value}fail}}}
564 ${lookup{both}lsearch{DIR/aux-fixed/0002.alias1}{$value${lookup{both}lsearch{DIR/aux-fixed/0002.alias2}{,$value}}}{${lookup{both}lsearch{DIR/aux-fixed/0002.alias2}{$value}fail}}}
565 ${lookup{neither}lsearch{DIR/aux-fixed/0002.alias1}{$value${lookup{neither}lsearch{DIR/aux-fixed/0002.alias2}{,$value}}}{${lookup{neither}lsearch{DIR/aux-fixed/0002.alias2}{$value}fail}}}
566
567 # Lookup quotes for standardly expected lookups
568
569 lsearch ${quote_lsearch: !@#\$%^&*()_-+=|\\~`1234567890\{[\}]qwertyuiop:;"'asdfghjkl<,>.?/zxcvbnm}
570 xxx ${quote_xxx: !@#\$%^&*()_-+=|\\~`1234567890\{[\}]qwertyuiop:;"'asdfghjkl<,>.?/zxcvbnm}
571
572 # Extract
573
574 ${extract{B}{A=1 B=2 C=3}}
575 ${extract{ B }{A=1 B=2 C=3}{$value}{NOT FOUND}}
576 ${extract{2}{:}{1:2:3}}
577 ${extract{ 2 }{:}{1:2:3}{$value}{NOT FOUND}}
578 Empty:<${extract{D}{A=1 B=2 C=3}}>
579 Empty:<${extract{4}{:}{1:2:3}}>
580 ${extract{C}{A=1 B=2 C=3}{<$value>}}
581 ${extract{3}{:}{1:2:3}{<$value>}}
582 Empty:<${extract{Z}{A=1 B=2 C=3}{<$value>}}>
583 Empty:<${extract{4}{:}{1:2:3}{<$value>}}>
584 ${extract{Z}{A=1 B=2 C=3}{<$value>}{no Z}}
585 ${extract{4}{:}{1:2:3}{<$value>}{no 4}}
586 ${extract{Z}{A=1 B=2 C=3}{<$value>}fail}
587 ${extract{4}{:}{1:2:3}{<$value>}fail}
588 ${extract{K4}{${sg{1=A 4=D 3=C}{(\\d+)=}{K\$1=}}}}
589 ${extract{0}{:}{a:b:c:d:e}{$value}{FAIL}}
590 ${extract{1}{:}{a:b:c:d:e}{$value}{FAIL}}
591 ${extract{-1}{:}{a:b:c:d:e}{$value}{FAIL}}
592 ${extract{-5}{:}{a:b:c:d:e}{$value}{FAIL}}
593 ${extract{-6}{:}{a:b:c:d:e}{$value}{FAIL}}
594 ${extract{-3}{:,}{a,,b::c}}
595 ${extract{2}{:,}{a,,b::c}}
596 ${extract{3}{:,}{a,,b::c}}
597 ${extract{a-b}{X = "one two" a-b "three four" 5=99}}
598 ${extract{}{X=3}}
599 ${extract{ }{X=3}}
600 ${extract{ 2 }{ }{a b c}}
601
602 # Translation
603
604 abcdea aaa xyz ${tr{abcdea}{aaa}{xyz}}
605 abcdea a z ${tr{abcdea}{a}{z}}
606 abcdea a ${tr{abcdea}{a}{}}
607 abcdea abc z ${tr{abcdea}{abc}{z}}
608
609 # Boolean
610 "TrUe" ${if bool{TrUe}{true}{false}} EXPECT: true
611 "FALSE" ${if bool{FALSE}{true}{false}} EXPECT: false
612 " yes" ${if bool{ yes}{true}{false}} EXPECT: true
613 " no" ${if bool{ no}{true}{false}} EXPECT: false
614 "yes " ${if bool{yes }{true}{false}} EXPECT: true
615 "-1" ${if bool{-1}{true}{false}} EXPECT: true
616 "0" ${if bool{0}{true}{false}} EXPECT: false
617 "1" ${if bool{1}{true}{false}} EXPECT: true
618 " 0 " ${if bool{ 0 }{true}{false}} EXPECT: false
619 " 1 " ${if bool{ 1 }{true}{false}} EXPECT: true
620 "1111111111111111111" ${if bool{1111111111111111111}{true}{false}} EXPECT: true
621 "9" ${if bool{9}{true}{false}} EXPECT: true
622 " " ${if bool{ }{true}{false}} EXPECT: false
623 "text" ${if bool{text}{true}{false}} EXPECT: error
624 " text" ${if bool{ text}{true}{false}} EXPECT: error
625 "-text" ${if bool{-text}{true}{false}} EXPECT: error
626 "text " ${if bool{text }{true}{false}} EXPECT: error
627 " text " ${if bool{ text }{true}{false}} EXPECT: error
628 "00" ${if bool{00}{true}{false}} EXPECT: false
629 "!true" ${if !bool{true}{true}{false}} EXPECT: false
630 "!false" ${if !bool{false}{true}{false}} EXPECT: true
631
632 "TrUe" ${if bool_lax{TrUe}{true}{false}} EXPECT: true
633 "FALSE" ${if bool_lax{FALSE}{true}{false}} EXPECT: false
634 " yes" ${if bool_lax{ yes}{true}{false}} EXPECT: true
635 " no" ${if bool_lax{ no}{true}{false}} EXPECT: false
636 "yes " ${if bool_lax{yes }{true}{false}} EXPECT: true
637 "-1" ${if bool_lax{-1}{true}{false}} EXPECT: true
638 "0" ${if bool_lax{0}{true}{false}} EXPECT: false
639 "1" ${if bool_lax{1}{true}{false}} EXPECT: true
640 " 0 " ${if bool_lax{ 0 }{true}{false}} EXPECT: false
641 " 1 " ${if bool_lax{ 1 }{true}{false}} EXPECT: true
642 "1111111111111111111" ${if bool_lax{1111111111111111111}{true}{false}} EXPECT: true
643 "9" ${if bool_lax{9}{true}{false}} EXPECT: true
644 " " ${if bool_lax{ }{true}{false}} EXPECT: false
645 "text" ${if bool_lax{text}{true}{false}} EXPECT: true
646 " text" ${if bool_lax{ text}{true}{false}} EXPECT: true
647 "text " ${if bool_lax{text }{true}{false}} EXPECT: true
648 " text " ${if bool_lax{ text }{true}{false}} EXPECT: true
649 "00" ${if bool_lax{00}{true}{false}} EXPECT: true
650 "!true" ${if !bool_lax{true}{true}{false}} EXPECT: false
651 "!false" ${if !bool_lax{false}{true}{false}} EXPECT: true
652
653 # RFC 2047
654
655 abcd ${rfc2047:abcd}
656 <:abcd:> ${rfc2047:<:abcd:>}
657 <:ab cd:> ${rfc2047:<:ab cd:>}
658 Long: ${rfc2047: here we go: a string that is going to be encoded: it will go over the 75-char limit}
659 Long: ${rfc2047: here we go: a string that is going to be encoded: it will go over the 75-char limit by a long way; in fact this one will go over the 150 character limit}
660
661 # RFC 2047 decode
662
663 ${rfc2047d:abcd abcd}
664 ${rfc2047d:<:abcd:> =?iso-8859-8?Q?=3C=3Aabcd=3A=3E?=}
665 ${rfc2047d:<:ab cd:> =?iso-8859-8?Q?=3C=3Aab_cd=3A=3E?=}
666 ${rfc2047d:Long: =?iso-8859-8?Q?_here_we_go=3A_a_string_that_is_going_to_be_encoded=3A_i?= =?iso-8859-8?Q?t_will_go_over_the_75-char_limit?=}
667 ${rfc2047d:Long: =?iso-8859-8?Q?_here_we_go=3A_a_string_that_is_going_to_be_encoded=3A_i?= =?iso-8859-8?Q?t_will_go_over_the_75-char_limit_by_a_long_way=3B_in_fac?= =?iso-8859-8?Q?t_this_one_will_go_over_the_150_character_limit?=}
668
669 # UTF-8
670
671 abcd ${from_utf8:abcd}
672 aÀÿd ${from_utf8:aÃ\80ÿd}
673 toobig ${from_utf8:aĀd}
674
675 # Substitution
676
677 \${sg{abcdefabcdef}{abc}{xyz}} =${sg{abcdefabcdef}{abc}{xyz}}
678 \${sg{ab:xy::z}{:}{::}} =${sg{ab:xy::z}{:}{::}}
679 \${sg{abcdefabcdef}{(..)[^c]}{>\$1<}} =${sg{abcdefabcdef}{(..)[^c]}{>$1<}}
680 \${sg{abcdefabcdef}{(..)[^c]}{>\\\$1<}} =${sg{abcdefabcdef}{(..)[^c]}{>\$1<}}
681 \${sg{abcdefabcdef}{(..)[^c]}{>\\N\$1\\N<}}=${sg{abcdefabcdef}{(..)[^c]}{>\N$1\N<}}
682 \${sg{abbab}{a*}{+}} =${sg{abbab}{a*}{+}}
683
684 # File insertion
685
686 ${readfile}
687 ${readfile{DIR/aux-fixed/0002.readfile}}
688 ${readfile{DIR/aux-fixed/0002.readfile}{}}
689 ${readfile{DIR/aux-fixed/0002.readfile}{:}}
690 ${readfile{DIR/aux-fixed/0002.readfile}{ - }}
691 ${readfile{/non/exist/file}}
692 ${if exists{/non/exist/file}{${readfile{/non/exist/file}}}{non-exist}}
693 >${readfile{DIR/aux-fixed/0002.readfile}{!}}\
694 <
695
696 # Calling a command
697
698 ${run{DIR/aux-fixed/0002.runfile 0}}
699 RC=$runrc
700 ${run{DIR/aux-fixed/0002.runfile 0}{1}{2}}
701 RC=$runrc
702 ${run{DIR/aux-fixed/0002.runfile 0}{$value}{2}}
703 RC=$runrc
704 ${run{DIR/aux-fixed/0002.runfile 1}{$value}{2}}
705 RC=$runrc
706 ${run{DIR/aux-fixed/0002.runfile 1}{$value}{$value}}
707 RC=$runrc
708 ${run{DIR/test-nonexist}{Y}{N}}
709 RC=$runrc
710 >>${run{DIR/bin/iefbr14}}<<
711 RC=$runrc
712 ${if eq{1}{2}{${run{/non/exist}}}{1!=2}}
713 RC=$runrc
714
715 # PRVS
716
717 ${prvs{userx@test.ex}{secret}}
718 ${prvs{userx@test.ex}{secret}{1}}
719 ${prvs{userx@test.ex}{secret}{8}}
720
721 # Syntax errors
722
723 ${prvs{userx@test.ex}{secret}{12}}
724 ${prvs{userx@test.ex}{secret}{rhubarb}}
725 ${prvs{userx@test.ex}{secret}{}}
726
727 # Correct checks; can't put explicit addresses in the tests, because they
728 # will change over time.
729
730 ${prvscheck{${prvs{userx@test.ex}{secret}}}{secret}}
731 result=$prvscheck_result
732
733 ${prvscheck{${prvs{userx@test.ex}{secret}{1}}}{secret}\
734 {>$prvscheck_result< >$prvscheck_address< >$prvscheck_keynum<}}
735 result=$prvscheck_result
736
737 ${prvscheck{${prvs{userx@test.ex}{secret}{8}}}{secret}{}}
738 result=$prvscheck_result
739
740 # Incorrect secret
741
742 ${prvscheck{${prvs{userx@test.ex}{secret}}}{socrot}}
743 result=$prvscheck_result
744
745 ${prvscheck{${prvs{userx@test.ex}{secret}}}{socrot}{$prvscheck_keynum}}
746 result=$prvscheck_result
747
748 # Non-prvs address
749
750 >>${prvscheck{userx@test.ex}{secret}}<<
751 result=$prvscheck_result
752
753 # Syntax errors
754
755 ${tod_log
756 ${tod_log+6
757 ${expand:abcd
758 ${expand:abcd${tod_log}
759 ${hmac{xxx}{a}{b}}
760 ${if and {xyz}{a}{b}}
761 ${if and {{xya}}{a}{b}}
762 ${if and {{${lookup{x}lsearch{/a/b}}}}{a}{b}}
763 ${if eq {$h_xyz}{1}{y}{n}}
764 ${if eq {$h_xyz:}{1}{y}{n}
765 ${if def:h_xyz}{y}{n}}
766 ${if or {eq {}{}{yes}{no}}
767 ${if or {{eq {}{}{yes}{no}}
768 ${if or {{eq {}{}}{yes}{no}}
769 ${substr_1_:12345}
770 ${substr__3:12345}
771
772 # Iterations: forany and forall
773
774 ${if forany{a:b:c}{eq{$item}{a}}{yes}{no}}
775 ${if forany{a:b:c}{eq{$item}{b}}{yes}{no}}
776 ${if forany{a:b:c}{eq{$item}{c}}{yes}{no}}
777 ${if forany {a:b:c} {eq {$item} {z}} {yes} {no}}
778 ${if !forany{a:b:c}{eq{$item}{z}}{yes}{no}}
779 ${if !forany{a:b:c}{eq{$item}{a}}{yes}{no}}
780 ${if forany{}{eq{$item}{a}}{yes}{no}}
781 ${if !forany{}{eq{$item}{a}}{yes}{no}}
782 ${if forany{<, $primary_hostname,foo,bar}{eq{$item}{$primary_hostname}}{yes}{no}}
783
784 ${if forany{}{yes}{no}}
785 ${if forany{a:b:c}{gt{$item}{a}{yes}{no}}
786
787 ${if forall{a:b:c}{match{$item}{^[a-c]\$}}{yes}{no}}
788 ${if forall{q:b:c}{match{$item}{^[a-c]\$}}{yes}{no}}
789 ${if forall{a:b:z}{match{$item}{^[a-c]\$}}{yes}{no}}
790 ${if forall{}{match{$item}{^[a-c]\$}}{yes}{no}}
791
792 ${if !forall{a:b:c}{match{$item}{^[a-c]\$}}{yes}{no}}
793 ${if !forall{q:b:c}{match{$item}{^[a-c]\$}}{yes}{no}}
794 ${if !forall{a:b:z}{match{$item}{^[a-c]\$}}{yes}{no}}
795 ${if !forall{}{match{$item}{^[a-c]\$}}{yes}{no}}
796
797 # Expect yes
798 ${if forany{a:b:c}\
799 {\
800 eq\
801 {$item: ${if forall{x:y:z}{match{$item}{^[x-z]\$}}{true}{false}}}\
802 {$item: true}\
803 }\
804 {outer=yes}{outer=no}} item='$item' (unset)
805
806 # Expect no
807 ${if forany{a:b:c}\
808 {\
809 eq\
810 {$item: ${if !forall{x:y:z}{match{$item}{^[x-z]\$}}{true}{false}}}\
811 {$item: true}\
812 }\
813 {outer=yes}{outer=no}}
814
815 # Error inside nest - check message is helpful
816 ${if forany{a:b:c}\
817 {\
818 eq\
819 {$item: ${if forall{x:y:z}{match{$item}{^[x-z]\$}{true}{false}}}\
820 {$item: true}\
821 }\
822 {outer=yes}{outer=no}}
823
824
825 # Miscellaneous (for bug fixes, etc)
826
827 ${if ={1}{1} {true}{${if ={1}{1} {true}{${if ={1}{1}{true}fail}}}}}
828
829 ****
830 # Test "escape" with print_topbitchars
831 exim -be -DPTBC=print_topbitchars
832 escape: ${escape:B7·F2ò}
833 ****
834 # Checkout expansion debugging
835 exim -d-all+expand -be
836 primary_hostname: $primary_hostname
837 match: ${if match{abcd}{\N^([ab]+)(\w+)$\N}{$2$1}fail}
838 match: ${if match{wxyz}{\N^([ab]+)(\w+)$\N}{$2$1}fail}
839 ${if eq {1}{1}{yes}{${lookup{xx}lsearch{/non/exist}}}}
840 match_address: ${if match_address{a.b.c}{a.b.c}{yes}{no}}
841 ****
842 # Sender host name and address etc, all unset
843 exim -be
844 -oMa sender_host_address = $sender_host_address
845 sender_host_port = $sender_host_port
846 -oMaa sender_host_authenticated = $sender_host_authenticated
847 -oMai authenticated_id = $authenticated_id
848 -oMas authenticated_sender = $authenticated_sender
849 -oMi interface_address = $interface_address
850 interface_port = $interface_port
851 -oMr received_protocol = $received_protocol
852 -oMs sender_host_name = $sender_host_name
853 -oMt sender_ident = $sender_ident
854 ****
855 # Sender host name and address etc, all set except host name.
856 exim -d-all+expand -be -oMa V4NET.0.0.1.1234 -oMaa AAA -oMai philip -oMas xx@yy.zz -oMi 1.1.1.1.99 -oMr special -oMt me
857 -oMa sender_host_address = $sender_host_address
858 sender_host_port = $sender_host_port
859 -oMaa sender_host_authenticated = $sender_host_authenticated
860 -oMai authenticated_id = $authenticated_id
861 -oMas authenticated_sender = $authenticated_sender
862 -oMi interface_address = $interface_address
863 interface_port = $interface_port
864 -oMr received_protocol = $received_protocol
865 -oMt sender_ident = $sender_ident
866 ****
867 # Sender host name explicitly set
868 exim -be -oMa V4NET.0.0.1.1234 -oMs my.host.name
869 -oMa sender_host_address = $sender_host_address
870 sender_host_port = $sender_host_port
871 -oMs sender_host_name = $sender_host_name
872 ****
873 # Sender host name lookup fails (V4NET.11.12.13 is not reverse registered)
874 exim -be -oMa V4NET.11.12.13
875 -oMs sender_host_name = $sender_host_name
876 host_lookup_failed = $host_lookup_failed
877 ****
878 # Sender host name and protocol set by Sendmail-compatible option
879 exim -be -pspecial:host.name
880 -p received_protocol = $received_protocol
881 -p sender_host_name = $sender_host_name
882 ****
883 # Sender host name and address etc, all set except host name,
884 # which should therefore be looked up from the address, but not if
885 # we are skipping. The debug output for this test will show when
886 # the lookup occurs.
887 exim -d-all+host_lookup+expand -be -oMa V4NET.0.0.1.1234 -oMaa AAA -oMai philip -oMas xx@yy.zz -oMi 1.1.1.1.99 -oMr special -oMt me
888 -oMa sender_host_address = $sender_host_address
889 sender_host_port = $sender_host_port
890 -oMaa sender_host_authenticated = $sender_host_authenticated
891 -oMai authenticated_id = $authenticated_id
892 -oMas authenticated_sender = $authenticated_sender
893 -oMi interface_address = $interface_address
894 interface_port = $interface_port
895 -oMr received_protocol = $received_protocol
896 ----> No lookup yet: ${if eq{black}{white}{$sender_host_name}{No}}
897 -oMs sender_host_name = $sender_host_name
898 -oMt sender_ident = $sender_ident
899 ****
900 # Test no auto host name lookup for query-style lookups
901 exim -d -bh V4NET.0.0.1
902 ****
903 exim -d -bh V4NET.0.0.2
904 ****
905 # Test $reply_address
906 exim -bh V4NET.0.0.0
907 mail from:<>
908 rcpt to:<some@body>
909 data
910 .
911 mail from:<>
912 rcpt to:<some@body>
913 data
914 From: a@b
915 .
916 mail from:<>
917 rcpt to:<some@body>
918 data
919 From: a@b
920 Reply-to: c@d
921 .
922 mail from:<>
923 rcpt to:<some@body>
924 data
925 Reply-to:
926 .
927 mail from:<>
928 rcpt to:<some@body>
929 data
930 Reply-to:
931 From: x@y
932 .
933 quit
934 ****
935 # Check RFC 2047 decoding with (default) length check
936 exim -bh V4NET.0.0.0
937 mail from:<>
938 rcpt to:<some@body>
939 data
940 Subject: =?iso-8859-8?Q?_here_we_go=3A_a_string_that_is_going_to_be_encoded=3A_it_will_go_over_the_75-char_limit_by_a_long_way=3B_in_fact_this_one_will_go_over_the_150_character_limit?=
941 .
942 quit
943 ****
944 # Check RFC 2047 decoding with length check disabled
945 exim -DLENCHECK=check_rfc2047_length=false -bh V4NET.0.0.0
946 mail from:<>
947 rcpt to:<some@body>
948 data
949 Subject: =?iso-8859-8?Q?_here_we_go=3A_a_string_that_is_going_to_be_encoded=3A_it_will_go_over_the_75-char_limit_by_a_long_way=3B_in_fact_this_one_will_go_over_the_150_character_limit?=
950 .
951 quit
952 ****
953 # Certain kind of error
954 exim -d -be
955 match_ip: 15 ${if match_ip{1.2.3.4}{1.2.3}}
956 match_ip: 16 ${if match_ip{1.2.3.4}{1.2.3.4/abc}}
957 ****
958 # Operation of inlist and negated inlist
959 exim -be
960 ${if inlist{aa}{aa} {in list}{not in list}}
961 ${if !inlist{aa}{aa} {not in list}{in list}}
962 ****