Testsuite: Add munge for EXPERIMENTAL_DSN_INFO
[exim.git] / test / confs / 0612
CommitLineData
ec0eb1a3
JH
1# Exim test configuration 0612
2# log_defer_output on pipe transport
3
4exim_path = EXIM_PATH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14log_selector = +received_recipients
15
16#acl_smtp_rcpt = accept
17
18# ----- Routers -----
19
20begin routers
21
22client:
23 driver = accept
24 transport = pipe
25
26# ----- Transports -----
27
28begin transports
29
30pipe:
31 driver = pipe
32 temp_errors = *
33 command = perl -e "print 'Hi from pipe'; exit 5;"
34 log_defer_output = true
35
36# ----- Retry -----
37
38
39begin retry
40
41* * F,1h,10m
42
43
44# End