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