Events: dns:fail Bug 3011
[exim.git] / test / confs / 0335
1 # Exim test configuration 0335
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 qualify_domain = test.ex
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 r1:
17   driver = redirect
18   data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.aliases}}
19
20 r2:
21   driver = accept
22   transport = ${if match{$local_part}{^batch}{t2}{t1}}
23
24
25 # ----- Transports -----
26
27 begin transports
28
29 t1:
30   driver = appendfile
31   file = DIR/test-mail/$local_part
32   create_file = DIR/test-mail
33   user = CALLER
34   envelope_to_add
35
36 t2:
37   driver = appendfile
38   file = DIR/test-mail/batch
39   user = CALLER
40   envelope_to_add
41   batch_max = 10
42
43
44 # End