Fix CVE-2016-1531
[exim.git] / test / confs / 0610
1 # Exim test configuration 0610
2
3 SERVER =
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 #primary_hostname = myhost.test.ex
9 rfc1413_query_timeout = 0s
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 log_selector = +sender_on_delivery
13 gecos_pattern = ""
14 gecos_name = CALLER_NAME
15 tls_advertise_hosts =
16
17 # ----- Main settings -----
18
19 acl_smtp_connect = conn_chk
20 acl_smtp_rcpt = accept
21
22 untrusted_set_sender = *
23 queue_only
24 queue_run_in_order
25
26 # ----- ACL -----
27
28 begin acl
29
30 conn_chk:
31   defer condition = ${if eq {SERVER}{server}}
32   accept
33
34 # ----- Routers -----
35
36 begin routers
37
38 client:
39   driver = accept
40   transport = $sender_address_local_part
41
42 # ----- Transports -----
43
44 begin transports
45
46 t1:
47   driver = smtp
48   allow_localhost
49   hosts = 127.0.0.1
50   port = PORT_D
51   interface = 127.0.0.1
52
53 t2:
54   driver = smtp
55   allow_localhost
56   hosts = 127.0.0.1
57   port = PORT_D
58   interface = HOSTIPV4
59
60 # ----- Retry -----
61
62 begin retry
63
64 * * F,5d,10s
65
66 # End
67