Fix CVE-2016-1531
[exim.git] / test / confs / 0145
1 # Exim test configuration 0145
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 qualify_domain = test.ex
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 acl_smtp_rcpt = check_recipient
17
18
19 # ------ ACL ------
20
21 begin acl
22
23 check_recipient:
24   require verify = sender
25   require verify = recipient
26
27
28 # ----- Routers -----
29
30 begin routers
31
32 domainlist:
33   driver = dnslookup
34   transport = smtp
35   no_more
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 smtp:
43   driver = smtp
44
45
46 # ----- Retry -----
47
48
49 begin retry
50
51 * * F,1h,10m
52
53
54 # End