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