4d53f3a7e891f321f66c174cf5dc87b4e55f87d3
[exim.git] / test / confs / 0067
1 # Exim test configuration 0067
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 domainlist local_domains = test.ex : myhost.ex
14 domainlist relay_domains = test.ex : myhost.ex
15
16 acl_smtp_rcpt = check_recipient
17 smtp_accept_max_nonmail = 1000
18
19 # ----- ACL -----
20
21 begin acl
22
23 check_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