Fix CVE-2016-1531
[exim.git] / test / confs / 0300
1 # Exim test configuration 0300
2
3 DELAY=0s
4 PAH=127.0.0.1
5
6 exim_path = EXIM_PATH
7 keep_environment =
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14 tls_advertise_hosts =
15
16 # ----- Main settings -----
17
18 acl_smtp_connect = check_connect
19 acl_smtp_helo = check_helo
20 acl_smtp_rcpt = accept
21 pipelining_advertise_hosts = PAH
22
23
24 # ----- ACL -----
25
26 begin ACL
27
28 check_connect:
29   accept     delay = DELAY
30
31 check_helo:
32   warn     condition = ${if eq {$sender_helo_name}{dis.able}{yes}{no}}
33            control = no_enforce_sync
34   accept
35
36
37 # ------ Routers ------
38
39 begin routers
40
41 r1:
42   driver = redirect
43   data = :blackhole:
44
45 # End