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