Merge branch 'master'
[exim.git] / test / confs / 0321
CommitLineData
afda344b
PH
1# Exim test configuration 0321
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14qualify_domain = test.ex
15
16
17# ----- Routers -----
18
19begin routers
20
21r1:
22 condition = ${if eq {$received_protocol}{scanned-ok} {0}{1}}
23 senders = ! :
24 driver = accept
25 transport = pipe
26
27r2:
28 driver = accept
29 transport = local_delivery
30
31
32# ----- Transports -----
33
34begin transports
35
36pipe:
37 driver = pipe
38 command = /non/exist/command -f <$sender_address> -d $pipe_addresses
39 message_prefix =
40 message_suffix =
41 check_string =
42 escape_string =
43 return_output = false
44 return_path_add = false
45 user = CALLER
46 path = /bin:/sbin:/usr/bin:/usr/sbin
47 current_directory = /
48
49local_delivery:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 user = CALLER
53
54
55# ----- Retry -----
56
57begin retry
58
59* * F,5d,1d
60
61
62# End