Fix CVE-2016-1531
[exim.git] / test / confs / 5400
1 # Exim test configuration 5400
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 rfc1413_query_timeout = 0s
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 domainlist local_domains = test.ex : *.test.ex
16
17 acl_smtp_rcpt = ar
18
19
20 # ----- ACLs -----
21
22 begin acl
23
24 ar:
25         accept control = cutthrough_delivery
26         logwrite = rcpt for $local_part@$domain
27
28 # ----- Routers -----
29
30 begin routers
31
32 all:
33   driver = manualroute
34   domains = ! +local_domains
35   route_list = * 127.0.0.1
36   self = send
37   transport = smtp
38   no_more
39
40
41 # ----- Transports -----
42
43 begin transports
44
45 smtp:
46   driver = smtp
47   interface = HOSTIPV4
48   port = PORT_S
49
50
51 # End