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