# 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
