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