Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0495
CommitLineData
afda344b
PH
1# Exim test configuration 0495
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
13acl_smtp_rcpt = check_rcpt
14mua_wrapper = TRUE
15trusted_users = CALLER
16
17# These settings should be ignored
18
19queue_only
20queue_smtp_domains = *
21deliver_drop_privilege = FALSE
22remote_max_parallel = 5
23
24
25# ----- ACL -----
26
27begin acl
28
29# The controls will be ignored
30
31check_rcpt:
32 accept control = queue_only
33 control = freeze
34
35
36# ----- Routers -----
37
38begin routers
39
40r1:
41 driver = redirect
42 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
43 file_transport = t3
44 allow_fail
45 allow_defer
46
47r2:
48 driver = accept
49 local_parts = otherhost
50 transport = t2
51
52r3:
53 driver = accept
54 local_parts = ^badport
55 transport = t4
56
57r9:
58 driver = accept
59 transport = t1
60 headers_add = ${if eq{$local_part}{addheader}{Added: text}}
61
62
63# ----- Transports -----
64
65begin transports
66
67t1:
68 driver = smtp
69 hosts = 127.0.0.1 : HOSTIPV4
70 port = PORT_S
71 allow_localhost
72 command_timeout = 1s
73
74t2:
75 driver = smtp
76 hosts = V4NET.9.8.7
77 port = PORT_S
78
79t3:
80 driver = appendfile
81 file = DIR/test-mail/$local_part
82 user = CALLER
83
84t4:
85 driver = smtp
86 hosts = V4NET.10.10.10
87 port = nonexistent
88
89# End