Fix CVE-2016-1531
[exim.git] / test / confs / 0462
1 # Exim test configuration 0462
2
3 SELECTOR=
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13 tls_advertise_hosts =
14
15 # ----- Main settings -----
16
17 domainlist local_domains = test.ex
18
19 acl_smtp_rcpt = $local_part
20 smtp_return_error_details
21 log_selector = SELECTOR
22
23 # ----- ACL -----
24
25 begin acl
26
27 checkpm:
28   deny    !verify  = sender/callout=postmaster
29   accept
30
31 nocheckpm:
32   deny    !verify  = sender/callout
33   accept
34
35 # ----- Routers -----
36
37 begin routers
38
39 all:
40   driver = manualroute
41   route_list = * 127.0.0.1
42   self = send
43   transport = smtp
44
45
46 # ----- Transports -----
47
48 begin transports
49
50 smtp:
51   driver = smtp
52   port = PORT_S
53
54
55 # ----- Retry -----
56
57 begin retry
58
59 * * F,5d,10s
60
61
62 # End