# Exim test configuration 5401

exim_path = EXIM_PATH
host_lookup_order = bydns
primary_hostname = myhost.test.ex
spool_directory = DIR/spool
log_file_path = DIR/spool/log/%slog
gecos_pattern = ""
gecos_name = CALLER_NAME

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

domainlist local_domains = test.ex : *.test.ex

acl_smtp_rcpt = acl_rcpt

# ----- ACLs -------

begin acl

acl_rcpt:
    accept	control = cutthrough_delivery
    		verify = recipient


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

begin routers

all:
  driver = manualroute
  domains = ! +local_domains
  route_list = * 127.0.0.1
  self = send
  transport = smtp
  no_more


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

begin transports

smtp:
  driver = smtp
  interface = HOSTIPV4
  port = PORT_S


# End