Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0233
1 # Exim test configuration 0233
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 = rcpt
10
11 freeze_tell = me
12 system_filter = DIR/aux-fixed/TESTNUM.filter
13 system_filter_reply_transport = address_reply
14
15
16 # ----- ACL -----
17
18 begin acl
19
20 rcpt:
21 accept local_parts = usery
22 control = freeze
23 accept control = freeze/no_tell
24
25
26 # ----- Routers -----
27
28 begin routers
29
30 all:
31 driver = accept
32 retry_use_local_part
33 transport = local_delivery
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 local_delivery:
41 driver = appendfile
42 file = DIR/test-mail/${bless:$local_part}
43 user = CALLER
44
45 address_reply:
46 driver = autoreply
47 user = CALLER
48
49
50 # ----- Retry -----
51
52
53 begin retry
54
55 * * F,5d,10s
56
57
58 # End