update to pre-4.87 master
[exim.git] / test / confs / 0530
1 # Exim test configuration 0530
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = accept control = suppress_local_fixups
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 r1:
22 driver = accept
23 senders = :
24 transport = t1
25
26 r2:
27 driver = accept
28 transport = t2
29
30
31 # ----- Transports -----
32
33 begin transports
34
35 t1:
36 driver = appendfile
37 file = DIR/test-mail/$local_part
38 user = CALLER
39
40 t2:
41 driver = autoreply
42 to = $sender_address
43 subject = Re: $h_subject:
44 text = This is the text of the autoreply.
45 user = CALLER
46
47 # End