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