Debug: "kill" option on ACL control=debug. Bug 1831
[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
bc3c7bb7 5keep_environment =
ec0eb1a3
JH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
23f3dc67 12tls_advertise_hosts =
ec0eb1a3
JH
13
14# ----- Main settings -----
15
16log_selector = +received_recipients
17
18#acl_smtp_rcpt = accept
19
20# ----- Routers -----
21
22begin routers
23
24client:
25 driver = accept
26 transport = pipe
27
28# ----- Transports -----
29
30begin transports
31
32pipe:
33 driver = pipe
34 temp_errors = *
35 command = perl -e "print 'Hi from pipe'; exit 5;"
36 log_defer_output = true
37
38# ----- Retry -----
39
40
41begin retry
42
43* * F,1h,10m
44
45
46# End