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