Testsuite: munge for non-WITH_CONTENT_SCAN builds
[exim.git] / test / confs / 0128
1 # Exim test configuration 0128
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 domainlist local_domains = test.ex
9 qualify_domain = test.ex
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 reply:
17   driver = accept
18   retry_use_local_part
19   senders = !
20   transport = reply
21
22 localuser:
23   driver = accept
24   local_parts = userx
25   transport = local_delivery
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 reply:
33   driver = autoreply
34   once = DIR/spool
35   text = "Test auto reply to ${escape:$h_subject:}"
36   to = $reply_address
37   user = EXIMUSER
38 # This file should fail to open
39
40 local_delivery:
41   driver = appendfile
42   delivery_date_add
43   envelope_to_add
44   file = DIR/test-mail/$local_part
45   create_file = DIR/test-mail
46   return_path_add
47   user = CALLER
48
49
50 # ----- Retry -----
51
52 begin retry
53
54 * * F,1d,15m
55
56
57 # End