Fix CVE-2016-1531
[exim.git] / test / confs / 0432
1 # Exim test configuration 0432
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 # This isn't relevant - it's just here to test that -odi
16 # can override it.
17
18 acl_smtp_mail = mail
19
20
21 # ----- ACLs -----
22
23 begin acl
24
25 mail:
26 accept verify = sender/callout=1s,maxwait=1s
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 r1:
34 driver = accept
35 transport = t1
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 t1:
43 driver = smtp
44 hosts = <; 127.0.0.1 ;
45 port = PORT_S
46 allow_localhost
47
48 # End