Testsuite: build a generic tls enabled client: client-anytls
[exim.git] / test / confs / 0284
CommitLineData
afda344b
PH
1# Exim test configuration 0284
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9qualify_domain = test.ex
10
11
12# ----- Routers -----
13
14begin routers
15
16all:
17 driver = accept
18 address_data = ${if match{$local_part}{^(.)}{$1}}
f3ebb786
JH
19 transport = ${if eq {${substr_-1_1:$local_part}}{1} {t1} \
20 {${if eq {${substr_-1_1:$local_part}}{2} {t2} \
21 {${if eq {${substr_-1_1:$local_part}}{3} {t3} {t4}}}}}}
afda344b
PH
22
23
24# ----- Transports -----
25
26begin transports
27
28t1:
29 driver = appendfile
30 batch_max = 100
31 file = DIR/test-mail/batched
32 envelope_to_add
33 user = CALLER
34
35t2:
36 driver = appendfile
37 batch_max = 100
0d2e392e 38 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
39 envelope_to_add
40 user = CALLER
41
42t3:
43 driver = appendfile
44 batch_max = 100
0d2e392e 45 file = DIR/test-mail/${bless:$domain}
afda344b
PH
46 envelope_to_add
47 user = CALLER
48
49t4:
50 driver = appendfile
51 batch_max = 100
52 batch_id = $address_data
53 file = DIR/test-mail/batched
54 envelope_to_add
55 user = CALLER
56
57# ----- Retry -----
58
59begin retry
60
61* * F,1d,1d
62
63# End