Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 0112
CommitLineData
afda344b
PH
1# Exim test configuration 0112
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = check_recipient
13acl_smtp_data = check_message
14
15domainlist local_domains = test.ex
16qualify_domain = test.ex
17
18
19# ----- Routers -----
20
21begin routers
22
23alias:
24 driver = redirect
25 allow_defer
26 data = ${lookup{$local_part}lsearch{DIR/aux-var/TESTNUM.alias}}
27 file_transport = appendfile
28 pipe_transport = pipe
29 retry_use_local_part
30
31
32# ----- Transports -----
33
34begin transports
35
36appendfile:
37 driver = appendfile
38 user = CALLER
39
40pipe:
41 driver = pipe
42 user = CALLER
43
44
45# End