Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 0504
CommitLineData
afda344b
PH
1# Exim test configuration 0504
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
13
14# ----- Routers -----
15
16begin routers
17
18r1:
19 driver = accept
20 transport = $h_transport:
21
22
23# ----- Transports -----
24
25begin transports
26
27t1:
28 driver = appendfile
29 file = DIR/test-mail/$local_part
30 user = CALLER
31 transport_filter = /non/existent/file
32
33t2:
34 driver = pipe
35 command = /bin/sh -c '/bin/cat > /dev/null'
36 transport_filter = /non/existent/file
37
38t3:
39 driver = smtp
40 hosts = 127.0.0.1
41 port = PORT_S
42 allow_localhost
43 transport_filter = /non/existent/file
44
45
46# ----- Retry -----
47
48begin retry
49
50* * F,1d,1d
51
52# End