Fix CVE-2016-1531
[exim.git] / test / confs / 0446
CommitLineData
afda344b
PH
1# Exim test configuration 0446
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13
14# ----- Main settings -----
15
16qualify_domain = test.ex
17
18acl_smtp_rcpt = accept
19acl_smtp_data = smtp_data
20acl_not_smtp = not_smtp
21
22
23#----- ACL -----
24
25begin acl
26
27smtp_data:
28 warn message = X-ACL: $received_count
29 accept
30
31not_smtp:
32 warn message = X-ACL: $received_count
33 accept
34
35
36#----- Routers -----
37
38begin routers
39
40r1:
41 driver = accept
42 transport = t1
43 headers_add = X-Router: $received_count
44
45
46# ----- Transports -----
47
48begin transports
49
50t1:
51 driver = appendfile
52 file = DIR/test-mail/$local_part
53 user = CALLER
54
55# End