Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0480
CommitLineData
afda344b
PH
1# Exim test configuration 0480
2
3IP1=V4NET.0.0.1
4IP2=V4NET.0.0.2
5IP3=V4NET.0.0.3
6
7SERVER=
8
9exim_path = EXIM_PATH
10host_lookup_order = bydns
afda344b
PH
11spool_directory = DIR/spool
12log_file_path = DIR/spool/log/SERVER%slog
13gecos_pattern = ""
14gecos_name = CALLER_NAME
15
16# ----- Main settings -----
17
18acl_smtp_rcpt = accept
19
194cc0e4 20smtp_active_hostname = ${if eq{$received_ip_address}{IP1}\
afda344b
PH
21 {host.IP1}\
22 {\
194cc0e4 23 ${if eq{$received_ip_address}{IP2}\
afda344b
PH
24 {}\
25 {\
194cc0e4 26 ${if eq{$received_ip_address}{IP3}\
afda344b
PH
27 {${lookup{x}lsearch{/non/exist}}}\
28 fail}\
29 }}\
30 }}
31
32
33# ----- Routers -----
34
35begin routers
36
37r1:
38 driver = accept
39 headers_add = X-sah: $smtp_active_hostname
40 transport = t1
41
42
43# ----- Transports -----
44
45begin transports
46
47t1:
48 driver = appendfile
49 file = DIR/test-mail/$local_part
50 user = CALLER
51
52
53# End