summaryrefslogtreecommitdiff
path: root/test/confs/0631
blob: 17691e423025645fcff4d843c43a654d48225b2e (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
# Exim test configuration 0631

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

acl_smtp_mail = chk_mail
acl_smtp_rcpt = chk_rcpt
acl_smtp_data = chk_data

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

begin acl

chk_mail:
  # Too hard to check for the buffer-full case due to test host
  # varying path sizes on the 'processing "verb"' lines
  # So give a massive buffer we will not fill.
  accept control = debug/tag=_acl/opts=-all+acl/pretrigger=2048
  	 message = yes1
  	 message = yes2
  	 message = yes3

chk_rcpt:
  accept control = debug/trigger=now

chk_data:
  accept control = debug/stop

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

begin routers

r0:
    driver =	redirect
    data =	:blackhole:
#
# End