Use common routine for building tagstring for dns-fail cache
[exim.git] / test / confs / 0252
CommitLineData
afda344b
PH
1# Exim test configuration 0252
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
9domainlist local_domains = test.ex : *.test.ex
10trusted_users = CALLER
11
12
13# ----- Routers -----
14
15begin routers
16
17a:
18 driver = redirect
19 allow_defer
20 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
21 errors_to = alias@test.ex
22 retry_use_local_part
23
24f:
25 driver = redirect
26 no_check_local_user
27 errors_to = forward@test.ex
28 file = DIR/aux-fixed/TESTNUM.forward
29 local_parts = forward
30 retry_use_local_part
31
32s:
33 driver = redirect
34 allow_defer
35 data = from-smart@test.ex
36 errors_to = smart@test.ex
37 local_parts = smart
38 retry_use_local_part
39
40u:
41 driver = accept
42 errors_to = postmaster@test.ex
43 retry_use_local_part
44 transport = t1
45 unseen
46
47z:
48 driver = accept
49 retry_use_local_part
50 transport = t2
51
52
53# ----- Transports -----
54
55begin transports
56
57t1:
58 driver = appendfile
59 file = DIR/test-mail/t1
60 return_path_add
61 user = CALLER
62
63t2:
64 driver = appendfile
65 file = DIR/test-mail/t2
66 return_path_add
67 user = CALLER
68
69
70# ----- Retry -----
71
72
73begin retry
74
75* * F,5d,10s
76
77
78# End