Fix CVE-2016-1531
[exim.git] / test / confs / 1000
1 # Exim test configuration 1000
2
3 HL=
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
16 # ----- Main settings -----
17
18 acl_smtp_connect = check_connect
19 HL
20
21
22 # ----- ACL -----
23
24 begin acl
25
26 check_connect:
27   warn    log_message = matched hostlist
28           hosts = <; 2001:ab8:37f:20:0:0:0:1 ; v6.test.ex
29
30   accept  condition = ${if eq{$sender_host_address}{2001:0ab8:037f:0020:0000:0000:0000:0001}}
31
32 # End