Additional tests - didn't show any problems.
[exim.git] / test / confs / 0522
CommitLineData
afda344b
PH
1# Exim test configuration 0522
2
3TIMEOUTDEFER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16qualify_domain = test.ex
17
18
19# ----- Routers -----
20
21begin routers
22
23r0:
24 driver = accept
25 senders = :
26 transport = t0
27
28r1:
29 driver = accept
30 local_parts = nofilter
31 transport = t1
32
33r2:
34 driver = accept
35 transport = t2
36
37
38
39# ----- Transports -----
40
41begin transports
42
43t0:
44 driver = appendfile
45 file = DIR/test-mail/$local_part
46 user = CALLER
47
48t1:
49 driver = pipe
50 timeout = 1s
51 command = /bin/sleep 2
52 TIMEOUTDEFER
53
54t2:
55 driver = pipe
56 timeout = 5s
57 command = /bin/cat
58 transport_filter = /bin/sleep 2
59 transport_filter_timeout = 1s
60 TIMEOUTDEFER
61
62
63# ----- Retry -----
64
65begin retry
66
67* * F,1h,1m
68
69
70# End