Fix CVE-2016-1531
[exim.git] / test / confs / 0548
1 # Exim test configuration 0548
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/SERVER%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12 tls_advertise_hosts =
13
14 # ----- Main settings -----
15
16 acl_smtp_connect = acl_connect
17 acl_smtp_rcpt = acl_rcpt
18 qualify_domain = test.ex
19 queue_run_in_order
20
21
22 # ----- ACLs -----
23
24 begin acls
25
26 acl_connect:
27   defer message = host deferred
28         hosts = thishost.test.ex
29   accept
30
31 acl_rcpt:
32   defer message = Recipient deferred
33
34
35 # ----- Routers -----
36
37 begin routers
38
39 smarthost:
40   driver = accept
41   transport = smtp
42
43
44 # ----- Transports -----
45
46 begin transports
47
48 smtp:
49   driver = smtp
50   hosts = HOSTIPV4 : thishost.test.ex
51   allow_localhost
52   port = PORT_D
53
54
55 # ----- Retry -----
56
57 begin retry
58
59 thishost.test.ex  *  F,20s,2s
60 *                 *  F,1s,1s; F,1s,5s
61
62 # End