Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0305
1 # Exim test configuration 0305
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 domainlist ok_domains = ${if eq{$domain}{ten-1.test.ex}{$domain}}
14
15 acl_smtp_rcpt = acl1
16
17 # ----- ACLs -----
18
19 begin acl
20
21 acl1:
22 accept domains = +ok_domains
23
24
25 # ------ Routers ------
26
27 begin routers
28
29 r1:
30 driver = accept
31 domains = +ok_domains
32 verify_only
33
34
35 # End