Fix sender-verify callout to not use trigger-message SIZE
[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
d4dc049f
JH
9.include DIR/aux-var/std_conf_prefix
10
afda344b
PH
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = accept
15
194cc0e4 16smtp_active_hostname = ${if eq{$received_ip_address}{IP1}\
afda344b
PH
17 {host.IP1}\
18 {\
194cc0e4 19 ${if eq{$received_ip_address}{IP2}\
afda344b
PH
20 {}\
21 {\
194cc0e4 22 ${if eq{$received_ip_address}{IP3}\
afda344b
PH
23 {${lookup{x}lsearch{/non/exist}}}\
24 fail}\
25 }}\
26 }}
27
28
29# ----- Routers -----
30
31begin routers
32
33r1:
34 driver = accept
35 headers_add = X-sah: $smtp_active_hostname
36 transport = t1
37
38
39# ----- Transports -----
40
41begin transports
42
43t1:
44 driver = appendfile
45 file = DIR/test-mail/$local_part
46 user = CALLER
47
48
49# End