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