Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 0393
CommitLineData
afda344b
PH
1# Exim test configuration 0393
2
3FILTER=/bin/cat
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex
15
16qualify_domain = test.ex
17
18
19# ----- Routers -----
20
21begin routers
22
23r1:
24 driver = accept
25 transport = t1
26
27# ----- Transports -----
28
29begin transports
30
31t1:
32 driver = appendfile
33 user = CALLER
34 file = DIR/test-mail/$local_part
35 transport_filter = FILTER
36
37
38# ----- Retry -----
39
40begin retry
41
42* * F,1d,1d
43
44# End