e6c15b8c8280f20560d088d1b341ab926ead172a
[exim.git] / test / confs / 0104
1 # Exim test configuration 0104
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 spool_directory = DIR/spool
6 log_file_path = DIR/spool/log/%slog
7 gecos_pattern = ""
8 gecos_name = CALLER_NAME
9
10 # ----- Main settings -----
11
12 acl_smtp_rcpt = check_recipient
13 acl_smtp_data = check_message
14
15 domainlist local_domains = test.ex : n.t
16 qualify_domain = test.ex
17
18
19 # ----- Rewrite -----
20
21 begin rewrite
22
23 a.b@p.q     yyy@test.ex
24
25 # End
26
27
28 # ----- Routers -----
29
30 begin routers
31
32 lookuphost:
33   driver = dnslookup
34   domains = ! +local_domains
35   transport = appendfile
36   widen_domains = test.ex
37   no_more
38
39 all:
40   driver = accept
41   retry_use_local_part
42   transport = appendfile
43
44
45 # ----- Transports -----
46
47 begin transports
48
49 appendfile:
50   driver = appendfile
51   file = DIR/test-mail/$local_part
52   user = CALLER
53
54
55 # End