Guard loadable module vars with LOOKUP_MODULE_DIR.
[exim.git] / test / confs / 0140
CommitLineData
afda344b
PH
1# Exim test configuration 0140
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13qualify_domain = test.ex
14
15
16# ----- Routers -----
17
18begin routers
19
20caller:
21 driver = accept
22 local_parts = CALLER
23 retry_use_local_part
24 transport = local_delivery
25
26reply:
27 driver = accept
28 retry_use_local_part
29 senders = !
30 transport = $local_part
31
32
33# ----- Transports -----
34
35begin transports
36
37reply1:
38 driver = autoreply
39 text = "Test auto reply to $h_subject:\nthis is another line"
40 to = Reply Person <$sender_address>
41 user = EXIMUSER
42
43reply2:
44 driver = autoreply
45 subject = "Re: $h_subject:"
46 to = $reply_address
47 user = EXIMUSER
48
49local_delivery:
50 driver = appendfile
51 delivery_date_add
52 envelope_to_add
53 file = DIR/test-mail/$local_part
54 return_path_add
55 user = CALLER
56
57
58# End