Expansions: new ${authresults {mch}} for an Authentication-Results header
[exim.git] / test / confs / 0369
CommitLineData
afda344b
PH
1# Exim test configuration 0369
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
9
10# ------ Routers ------
11
12begin routers
13
14r1:
15 driver = accept
16 domains = test.ex
17 transport = t1
18
19r2:
20 driver = accept
21 domains = test2.ex
22 transport = t2
23 cannot_route_message = I can't route to $local_part
24
25
26# ------ Transports ------
27
28begin transports
29
30t1:
31 driver = pipe
32 command = /bin/sh -c 'exit $local_part'
33 user = CALLER
34 temp_errors = 45 : 56
35
36t2:
37 driver = pipe
38 command = /bin/sh -c 'exit $local_part'
39 user = CALLER
40 temp_errors = *
41
42
43# ------ Retry ------
44
45begin retry
46
47* * F,1d,15m
48
49# End