Fix CVE-2016-1531
[exim.git] / test / confs / 5410
1 # Exim test configuration 5410
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 rfc1413_query_timeout = 0s
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 log_selector =  +smtp_confirmation
16 tls_advertise_hosts = *
17 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
18
19 domainlist local_domains = test.ex : *.test.ex
20
21 acl_smtp_rcpt = ${if eq {SERVER}{server}{queue}{cutthrough}}
22
23 # ----- ACLs -------
24
25 begin acl
26
27 cutthrough:
28     accept      control = cutthrough_delivery
29                 verify = recipient
30
31 queue:
32     accept      control = queue_only
33
34 # ----- Routers -----
35
36 begin routers
37
38 all:
39   driver = manualroute
40   domains = ! +local_domains
41   route_list = * 127.0.0.1
42   self = send
43   address_data = $local_part
44   transport = smtp
45   no_more
46
47
48 # ----- Transports -----
49
50 begin transports
51
52 smtp:
53   driver = smtp
54   interface = HOSTIPV4
55   port = PORT_D
56   hosts_avoid_tls =        ${if eq {$address_data}{usery}{*}{:}}
57   hosts_verify_avoid_tls = ${if eq {$address_data}{userz}{*}{:}}
58
59
60 # End