sender verify callout
[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
12
13# ----- Main settings -----
14
15domainlist local_domains = test.ex : myhost.ex
16
17acl_smtp_rcpt = check_recipient$local_part
18sender_unqualified_hosts = +include_unknown: ^ten-1\\.test\\.ex
19LOG_SELECTOR
20
21# ------ ACL ------
22
23begin acl
24
25check_recipientx:
26 accept hosts = :
27 deny hosts = +include_unknown : ^ten-1\\.test\\.ex
28 accept domains = +local_domains
29 deny message = relay not permitted
30
31check_recipienty:
32 accept hosts = non.existent.invalid : V4NET.0.0.13
33 deny message = "Denied"
34
35check_recipientz:
36 accept hosts = +ignore_unknown : non.existent.invalid : V4NET.0.0.13
37 deny message = "Denied"
38
d52120f2
PH
39check_recipienta:
40 accept hosts = :
41 deny hosts = +include_defer : test.again.dns
42 accept domains = +local_domains
43 deny message = relay not permitted
44
45check_recipientb:
46 accept hosts = test.again.dns : V4NET.0.0.13
47 deny message = "Denied"
48
49check_recipientc:
50 accept hosts = +ignore_defer : test.again.dns : V4NET.0.0.13
51 deny message = "Denied"
52
afda344b 53# End