summaryrefslogtreecommitdiff
path: root/test/confs/0089
blob: 4a2a65828a01de0a0cc9ec6f3b3cccb18ce77fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Exim test configuration 0089

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

# ----- Main settings -----

domainlist local_domains = Test.ex : myhost.test.EX
domainlist relay_domains = Test.ex : Relay.one.ex

acl_smtp_rcpt = check_recipient

helo_allow_chars = _
helo_accept_junk_hosts = *N-99.test.ex
sender_unqualified_hosts = *N-99.test.EX


# ----- ACL -----

begin acl

check_recipient:
  accept  hosts = :
  accept  domains = +local_domains
  accept  domains = +relay_domains
  deny    message = relay not permitted


# ----- Routers -----

begin routers

manual:
  driver = manualroute
  caseful_local_part
  domains = ! +local_domains
  local_parts = XYZ
  route_list = * $domain byname
  transport = dummy

lookuphost:
  driver = dnslookup
  domains = ! +local_domains
  verify_only

fail_remote_domains:
  driver = redirect
  domains = ! +local_domains
  allow_fail
  data = :fail: unrouteable mail domain "$domain"

select:
  driver = accept
  local_parts = ABCD
  retry_use_local_part
  transport = dummy

localuser:
  driver = accept
  local_parts = userx
  transport = dummy


# ----- Transports -----

begin transports

dummy:
  driver = smtp
  hosts_try_fastopen =	:


# End