Testsuite: build a generic tls enabled client: client-anytls
[exim.git] / test / confs / 0335
CommitLineData
afda344b
PH
1# Exim test configuration 0335
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
16r1:
17 driver = redirect
18 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.aliases}}
19
20r2:
21 driver = accept
22 transport = ${if match{$local_part}{^batch}{t2}{t1}}
23
24
25# ----- Transports -----
26
27begin transports
28
29t1:
30 driver = appendfile
0d2e392e 31 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
32 user = CALLER
33 envelope_to_add
34
35t2:
36 driver = appendfile
37 file = DIR/test-mail/batch
38 user = CALLER
39 envelope_to_add
40 batch_max = 10
41
42
43# End