Testsuite: munge retry DB dumps for long pathnames
[exim.git] / test / confs / 0173
1 # Exim test configuration 0173
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 system_filter = DIR/aux-var/TESTNUM.filter
12 system_filter_pipe_transport = pipe
13 trusted_users = CALLER
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 all:
21   driver = accept
22   retry_use_local_part
23   transport = appendfile
24
25
26 # ----- Transports -----
27
28 begin transports
29
30 appendfile:
31   driver = appendfile
32   file = DIR/test-mail/$local_part
33   create_file = DIR/test-mail
34   user = CALLER
35
36 pipe:
37   driver = pipe
38   return_output
39   user = CALLER
40   path = ${env{PATH}}
41
42
43 # ----- Retry -----
44
45 begin retry
46
47 * * F,5d,1d
48
49
50 # End