fa2a2fdf966a652156418435c17f8125334a6df3
[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
11 # ----- Main settings -----
12
13 acl_smtp_rcpt = accept control = suppress_local_fixups
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 r1:
21   driver = accept
22   senders = :
23   transport = t1
24
25 r2:
26   driver = accept
27   transport = t2
28
29
30 # ----- Transports -----
31
32 begin transports
33
34 t1:
35   driver = appendfile
36   file = DIR/test-mail/$local_part
37   user = CALLER
38
39 t2:
40   driver = autoreply
41   to = $sender_address
42   subject = Re: $h_subject:
43   text = This is the text of the autoreply.
44   user = CALLER
45
46 # End