7730457525229e0741d88d5a31f98d22d03ce498
[exim.git] / test / confs / 0612
1 # Exim test configuration 0612
2 # log_defer_output on pipe transport
3
4 exim_path = EXIM_PATH
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 log_selector = +received_recipients
15
16 #acl_smtp_rcpt = accept
17
18 # ----- Routers -----
19
20 begin routers
21
22 client:
23   driver =      accept
24   transport =   pipe
25
26 # ----- Transports -----
27
28 begin transports
29
30 pipe:
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
39 begin retry
40
41 * * F,1h,10m
42
43
44 # End