update to pre-4.87 master
[exim.git] / test / confs / 0103
CommitLineData
afda344b
PH
1# Exim test configuration 0103
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
bfe645c1 9tls_advertise_hosts =
afda344b
PH
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex : special
14log_selector = +all_parents
15qualify_domain = test.ex
16
17
18# ----- Rewrite -----
19
20begin rewrite
21
22\N^WAS...@x\.y\.zwas$ rewritten@x.y.z
23
24
25# ----- Routers -----
26
27begin routers
28
29special:
30 driver = redirect
31 allow_defer
32 allow_fail
33 data = $local_part
34 domains = special
35 retry_use_local_part
36
37accept:
38 driver = accept
39 local_parts = CALLER : wasabcwas : rewritten
40 retry_use_local_part
41 transport = appendfile
42
43test_no_rewrite:
44 driver = redirect
45 data = WAS${local_part}WAS
46 local_parts = abc@x.y.z
47 no_rewrite
48
49test_rewrite:
50 driver = redirect
51 data = WAS${local_part}WAS
52 local_parts = xyz@x.y.z
53
54
55# ----- Transports -----
56
57begin transports
58
59appendfile:
60 driver = appendfile
61 file = DIR/test-mail/$local_part
62 user = CALLER
63
64
65# ----- Retry -----
66
67begin retry
68
69* * F,5d,1d
70
71# End