Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 0295
CommitLineData
afda344b
PH
1# Exim test configuration 0295
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
10trusted_users = CALLER
11
12# ----- Main settings -----
13
14log_selector = +return_path_on_delivery
15received_headers_max = 2
16
17
18# ------ Routers ------
19
20begin routers
21
22r1:
23 driver = accept
24 transport = t1
25
26
27# ------ Transports ------
28
29begin transports
30
31t1:
32 driver = appendfile
33 file = /dev/null
34 user = CALLER
35
36# End