Another small test tweak.
[exim.git] / test / confs / 0110
CommitLineData
afda344b
PH
1# Exim test configuration 0110
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = check_recipient
14acl_smtp_data = check_message
15
16domainlist local_domains = test.ex
17qualify_domain = test.ex
18
19
20# ----- Routers -----
21
22begin routers
23
24deliver:
25 driver = accept
26 condition = ${if eq{$original_local_part}{second}{yes}{no}}
27 retry_use_local_part
28 transport = appendfile
29
30first:
31 driver = redirect
32 allow_defer
33 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
34 forbid_file
35 forbid_pipe
36 one_time
37 retry_use_local_part
38
39second:
40 driver = redirect
41 allow_defer
42 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
43 retry_use_local_part
44
45
46# ----- Transports -----
47
48begin transports
49
50appendfile:
51 driver = appendfile
52 file = DIR/test-mail/$local_part
53 user = CALLER
54
55
56# ----- Retry -----
57
58
59begin retry
60
61* * F,5d,1d
62
63
64# End