d6ac511fdf6bdf349ddb73f0bfa510f2d9cbf7f9
[exim.git] / test / confs / 0609
1 # Exim test configuration 0609
2 # Long ACL delays
3
4 SERVER=
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 disable_ipv6 = true
17
18 acl_smtp_rcpt = delay4_accept
19 log_selector = +smtp_connection
20 #hosts_connection_nolog = : 127.0.0.1
21
22
23 # ----- ACLs -----
24
25 begin acl
26
27 delay4_accept:
28   accept   delay = 4s
29
30 # ----- Routers -----
31
32 begin routers
33
34 accept:
35   driver = accept
36   transport = appendfile
37
38 # ----- Transports -----
39
40 begin transports
41
42 appendfile:
43   driver = appendfile
44   file = DIR/test-mail/$local_part
45   user = CALLER
46
47 # End