testsuite: abstract out common conf settings
[exim.git] / test / confs / 0530
1 # Exim test configuration 0530
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = accept control = suppress_local_fixups
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 r1:
17   driver = accept
18   senders = :
19   transport = t1
20
21 r2:
22   driver = accept
23   transport = t2
24
25
26 # ----- Transports -----
27
28 begin transports
29
30 t1:
31   driver = appendfile
32   file = DIR/test-mail/$local_part
33   user = CALLER
34
35 t2:
36   driver = autoreply
37   to = $sender_address
38   subject = Re: $h_subject:
39   text = This is the text of the autoreply.
40   user = CALLER
41
42 # End