Docs: clarify unit of S= log line element
[exim.git] / test / confs / 0016
CommitLineData
afda344b
PH
1# Exim test configuration 0016
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
23f3dc67 9tls_advertise_hosts =
afda344b
PH
10
11# ----- Main settings -----
12
13qualify_domain = test.ex
14
15
16# ----- Routers -----
17
18begin routers
19
20userforward:
21 driver = redirect
22 allow_filter
23 user = CALLER
24 local_parts = userx : CALLER
25 file = DIR/aux-fixed/0016.filter.$local_part
26 local_part_suffix = +*
27 local_part_suffix_optional
28 reply_transport = address_reply
29
30localuser:
31 driver = accept
32 local_parts = userx : CALLER
33 local_part_suffix = +*
34 local_part_suffix_optional
35 transport = local_delivery
36
37
38# ----- Transports -----
39
40begin transports
41
42local_delivery:
43 driver = appendfile
44 user = CALLER
45 delivery_date_add
46 envelope_to_add
47 file = DIR/test-mail/$local_part
48 return_path_add
49
50address_reply:
51 driver = autoreply
52
53# End