Fix CVE-2016-1531
[exim.git] / test / confs / 0417
1 # Exim test configuration 0417
2
3 RETURN_ERROR_DETAILS = false
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
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 primary_hostname = mail.test.ex
16 qualify_domain = test.ex
17
18 acl_smtp_rcpt = rcpt
19 smtp_return_error_details = RETURN_ERROR_DETAILS
20
21
22 # ----- ACLs -----
23
24 begin acl
25
26 rcpt:
27   require verify = sender
28
29
30 # ----- Routers -----
31
32 begin routers
33
34 r1:
35   driver = dnslookup
36   transport = t1
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 t1:
44   driver = smtp
45
46 # End