Restrict line lengths in bounces. Bug 1760
[exim.git] / test / confs / 0069
CommitLineData
afda344b
PH
1# Exim test configuration 0069
2
3LOG_SELECTOR=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
23f3dc67 12tls_advertise_hosts =
afda344b
PH
13
14# ----- Main settings -----
15
7da3cb7c
JH
16disable_ipv6 = true
17
afda344b
PH
18domainlist local_domains = test.ex : myhost.ex
19
20acl_smtp_rcpt = check_recipient$local_part
21sender_unqualified_hosts = +include_unknown: ^ten-1\\.test\\.ex
22LOG_SELECTOR
23
24# ------ ACL ------
25
26begin acl
27
28check_recipientx:
29 accept hosts = :
30 deny hosts = +include_unknown : ^ten-1\\.test\\.ex
31 accept domains = +local_domains
32 deny message = relay not permitted
33
34check_recipienty:
35 accept hosts = non.existent.invalid : V4NET.0.0.13
36 deny message = "Denied"
37
38check_recipientz:
39 accept hosts = +ignore_unknown : non.existent.invalid : V4NET.0.0.13
40 deny message = "Denied"
41
d52120f2
PH
42check_recipienta:
43 accept hosts = :
44 deny hosts = +include_defer : test.again.dns
45 accept domains = +local_domains
46 deny message = relay not permitted
47
48check_recipientb:
49 accept hosts = test.again.dns : V4NET.0.0.13
50 deny message = "Denied"
51
52check_recipientc:
53 accept hosts = +ignore_defer : test.again.dns : V4NET.0.0.13
54 deny message = "Denied"
55
afda344b 56# End