Testsuite: more pipe transport / perl cases
[exim.git] / test / confs / 0612
CommitLineData
bfe645c1
JH
1# Exim test configuration 0612
2# log_defer_output on pipe transport
3
4fab92fb
HSHR
4.include DIR/aux-var/std_conf_prefix
5
bfe645c1 6primary_hostname = myhost.test.ex
bfe645c1
JH
7
8# ----- Main settings -----
9
10log_selector = +received_recipients
11
12#acl_smtp_rcpt = accept
13
14# ----- Routers -----
15
16begin routers
17
18client:
19 driver = accept
20 transport = pipe
21
22# ----- Transports -----
23
24begin transports
25
26pipe:
27 driver = pipe
28 temp_errors = *
29 command = perl -e "print 'Hi from pipe'; exit 5;"
30 log_defer_output = true
63fdcf20 31 path = ${env{PATH}}
bfe645c1
JH
32
33# ----- Retry -----
34
35
36begin retry
37
38* * F,1h,10m
39
40
41# End