Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 1003
CommitLineData
a769a501 1# Exim test configuration 1003
afda344b
PH
2
3SERVER =
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = accept
16
17queue_only
18queue_run_in_order
19
20
21# ----- Routers -----
22
23begin routers
24
25client:
26 driver = accept
27 condition = ${if eq {SERVER}{server}{no}{yes}}
28 transport = send_to_server
29
30server:
31 driver = accept
32 transport = local_delivery
33
34
35# ----- Transports -----
36
37begin transports
38
39local_delivery:
40 driver = appendfile
41 file = DIR/test-mail/$local_part
42 user = CALLER
43
44send_to_server:
45 driver = smtp
46 allow_localhost
47 hosts = $h_hosts
48 port = PORT_D
49 interface = ${expand:$h_interface:}
50
51
52# ----- Retry -----
53
54begin retry
55
56* * F,5d,10s
57
58# End