Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 3405
CommitLineData
afda344b
PH
1# Exim test configuration 3405
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
13
14# ----- Authentication -----
15
16
17begin authenticators
18
19plain:
20 driver = plaintext
21 public_name = PLAIN
22 client_send = ^userx^secret
23
24
25# ----- Routers -----
26
27begin routers
28
29all:
30 driver = manualroute
31 headers_add = X-AID: >$authenticated_id<
32 route_list = * 127.0.0.1 byname
33 self = send
34 transport = smtp
35 no_more
36
37
38# ----- Transports -----
39
40begin transports
41
42smtp:
43 driver = smtp
44 headers_add = X-TAID: >$authenticated_id<
45 hosts_try_auth = *
46 port = PORT_S
47
48# End