Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 0610
CommitLineData
6f6dedcc
JH
1# Exim test configuration 0610
2
3SERVER =
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7#primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11log_selector = +sender_on_delivery
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17acl_smtp_connect = conn_chk
18acl_smtp_rcpt = accept
19
20untrusted_set_sender = *
21queue_only
22queue_run_in_order
23
24# ----- ACL -----
25
26begin acl
27
28conn_chk:
29 defer condition = ${if eq {SERVER}{server}}
30 accept
31
32# ----- Routers -----
33
34begin routers
35
36client:
37 driver = accept
38 transport = $sender_address_local_part
39
40# ----- Transports -----
41
42begin transports
43
44t1:
45 driver = smtp
46 allow_localhost
47 hosts = 127.0.0.1
48 port = PORT_D
49 interface = 127.0.0.1
50
51t2:
52 driver = smtp
53 allow_localhost
54 hosts = 127.0.0.1
55 port = PORT_D
56 interface = 127.0.0.2
57
58# ----- Retry -----
59
60begin retry
61
62* * F,5d,10s
63
64# End
65