sender verify callout
[exim.git] / test / confs / 0067
CommitLineData
afda344b
PH
1# Exim test configuration 0067
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex : myhost.ex
14domainlist relay_domains = test.ex : myhost.ex
15
16acl_smtp_rcpt = check_recipient
17smtp_accept_max_nonmail = 1000
18
19# ----- ACL -----
20
21begin acl
22
23check_recipient:
24 accept hosts = :
25 accept recipients = postmaster@*
26 deny senders = !x@b.c : *@b.c :\
27 !^philip@a.b.c : ^(phil|quil)[^@]*@ :\
28 !yy@lsearch;DIR/aux-fixed/TESTNUM.rej.lsearch :\
29 lsearch*@;DIR/aux-fixed/TESTNUM.rej.lsearch :\
30 @@lsearch*;DIR/aux-fixed/TESTNUM.rej.bydomain : \
31 ! x@bb.cc : *@bb.cc :\
32 ! DIR/aux-fixed/TESTNUM.not1 : !DIR/aux-fixed/TESTNUM.not2 : \
33 bbb.ccc
34 deny senders = 1234@m.n.o : DIR/aux-fixed/TESTNUM.rejrec
35 accept domains = +local_domains
36 accept domains = +relay_domains
37 deny message = relay not permitted
38
39# End