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 tls_advertise_hosts =
13
14 # ----- Main settings -----
15
16 primary_hostname = mail.test.ex
17 qualify_domain = test.ex
18
19 acl_smtp_rcpt = rcpt
20 smtp_return_error_details = RETURN_ERROR_DETAILS
21
22
23 # ----- ACLs -----
24
25 begin acl
26
27 rcpt:
28   require verify = sender
29
30
31 # ----- Routers -----
32
33 begin routers
34
35 r1:
36   driver = dnslookup
37   transport = t1
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 t1:
45   driver = smtp
46
47 # End