Guard loadable module vars with LOOKUP_MODULE_DIR.
[exim.git] / test / confs / 0104
CommitLineData
afda344b
PH
1# Exim test configuration 0104
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 : n.t
17qualify_domain = test.ex
18
19
20# ----- Rewrite -----
21
22begin rewrite
23
24a.b@p.q yyy@test.ex
25
26# End
27
28
29# ----- Routers -----
30
31begin routers
32
33lookuphost:
34 driver = dnslookup
35 domains = ! +local_domains
36 transport = appendfile
37 widen_domains = test.ex
38 no_more
39
40all:
41 driver = accept
42 retry_use_local_part
43 transport = appendfile
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# End