update to pre-4.87 master
[exim.git] / test / confs / 0140
CommitLineData
afda344b
PH
1# Exim test configuration 0140
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
bfe645c1 9tls_advertise_hosts =
afda344b
PH
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