More new test committing.
[exim.git] / test / confs / 0057
CommitLineData
afda344b
PH
1# Exim test configuration 0057
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_recipient
15
16domainlist local_domains = test.ex : myhost.ex : *.test.ex
17domainlist relay_domains = test.ex : !*
18
19percent_hack_domains = ! a.test.ex : !b.test.ex : \
20 !DIR/aux-fixed/TESTNUM.d1 : ! DIR/aux-fixed/TESTNUM.d2 : *.test.ex
21
22
23# ------ ACL ------
24
25begin acl
26
27check_recipient:
28 accept domains = +local_domains
29 accept domains = +relay_domains
30 deny message = relay not permitted
31
32
33# ----- Routers -----
34
35begin routers
36
37fail_remote_domains:
38 driver = redirect
39 domains = ! +local_domains
40 data = :fail: unrouteable mail domain "$domain"
41
42localuser:
43 driver = accept
44 local_parts = userx
45 verify_only
46
47# End