Fix CVE-2016-1531
[exim.git] / test / confs / 0479
CommitLineData
afda344b
PH
1# Exim test configuration 0479
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 = rcpt
15
16
17# ----- ACLs -----
18
19begin acl
20
21rcpt:
22 require logwrite = sender address is <$sender_address>
23 verify = sender
24 accept
25
26
27# ----- Routers -----
28
29begin routers
30
31r1:
32 driver = accept
33 transport = t1
34
35
36# ----- Transports -----
37
38begin transports
39
40t1:
41 driver = smtp
42 port = PORT_S
43 hosts = 127.0.0.1
44 allow_localhost
45 connect_timeout = 1s
46
47
48# ----- Rewrite -----
49
50begin rewrite
51
52a@b rewritten-a@rewritten-b
53
54
55# End