Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0544
CommitLineData
1bf43b78
PH
1# Exim test configuration 0544
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
1bf43b78
PH
5
6# ----- Main settings -----
7
3cf91d6d 8domainlist dlist = $domain
1bf43b78
PH
9
10acl_smtp_helo = check_helo
11acl_smtp_mail = check_mail
12acl_smtp_rcpt = check_rcpt
3cf91d6d 13queue_smtp_domains = $domain
1bf43b78
PH
14qualify_domain = test.ex
15
16
17# ----- ACLs -----
18
19begin acl
20
21check_helo:
22 warn
23 condition = ${if match_domain {$sender_helo_name}{+dlist}}
24 accept
25
26
27check_mail:
28 warn hosts = domain=$domain/sender_domain=$sender_address_domain
29 accept
30
31check_rcpt:
32 warn domains = domain=$domain/sender_domain=$sender_address_domain
33 warn sender_domains = domain=$domain/sender_domain=$sender_address_domain
34 accept
35
36
37# ----- Routers -----
38
39begin routers
40
41smarthost:
42 driver = accept
43 transport = smtp
44
45
46# ----- Transports -----
47
48begin transports
49
50smtp:
51 driver = smtp
52 hosts = 127.0.0.1
53 allow_localhost
54 port = PORT_S
277b9979 55 hosts_try_fastopen = :
1bf43b78
PH
56
57
58# ----- Retry -----
59
60
61begin retry
62
63* * F,5d,15m
64
65
66# End