Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 0233
CommitLineData
afda344b
PH
1# Exim test configuration 0233
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
13acl_smtp_rcpt = rcpt
14
15freeze_tell = me
16system_filter = DIR/aux-fixed/TESTNUM.filter
17system_filter_reply_transport = address_reply
18
19
20# ----- ACL -----
21
22begin acl
23
24rcpt:
6a3f1455
PH
25 accept local_parts = usery
26 control = freeze
27 accept control = freeze/no_tell
afda344b
PH
28
29
30# ----- Routers -----
31
32begin routers
33
34all:
35 driver = accept
36 retry_use_local_part
37 transport = local_delivery
38
39
40# ----- Transports -----
41
42begin transports
43
44local_delivery:
45 driver = appendfile
46 file = DIR/test-mail/$local_part
47 user = CALLER
48
49address_reply:
50 driver = autoreply
51 user = CALLER
52
53
54# ----- Retry -----
55
56
57begin retry
58
59* * F,5d,10s
60
61
62# End