Testsuite: ensure logging path is set
[exim.git] / test / confs / 0110
CommitLineData
afda344b
PH
1# Exim test configuration 0110
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8acl_smtp_rcpt = check_recipient
9acl_smtp_data = check_message
10
11domainlist local_domains = test.ex
12qualify_domain = test.ex
13
14
15# ----- Routers -----
16
17begin routers
18
19deliver:
20 driver = accept
21 condition = ${if eq{$original_local_part}{second}{yes}{no}}
22 retry_use_local_part
23 transport = appendfile
24
25first:
26 driver = redirect
27 allow_defer
28 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
29 forbid_file
30 forbid_pipe
31 one_time
32 retry_use_local_part
33
34second:
35 driver = redirect
36 allow_defer
37 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
38 retry_use_local_part
39
40
41# ----- Transports -----
42
43begin transports
44
45appendfile:
46 driver = appendfile
47 file = DIR/test-mail/$local_part
48 user = CALLER
49
50
51# ----- Retry -----
52
53
54begin retry
55
56* * F,5d,1d
57
58
59# End