Add variables for wildcard portion of local-part affix. Bug 281
[exim.git] / test / confs / 1101
CommitLineData
9555de77
HSHR
1# Exim test configuration 2040
2# The test uses the same config for two Exim processes
3#
4# ,------ callout -------.
5# | |
6# | .----------. |
7# `--> PORT_S | |
8# client-gnutls --> PORT_D Exim |----'
9# `----------'
10
11.include DIR/aux-var/tls_conf_prefix
12
13primary_hostname = myhost.test.ex
14
15# ----- Main settings -----
16
17tls_advertise_hosts = *
18
19tls_certificate = DIR/aux-fixed/cert1
20tls_privatekey = DIR/aux-fixed/cert1
21
22acl_smtp_rcpt = acl_check_rcpt
23
24begin acl
25acl_check_rcpt:
26
27 accept condition = ${if eq{$received_port}{PORT_S}}
28 message = Accepted (rcpt on backend)
29
30 accept verify = recipient/callout=no_cache
31 message = Accepted (rcpt via callout)
32
33begin routers
34catchall:
35 driver = accept
36 transport = local_smtp
37
38begin transports
39local_smtp:
40 driver = smtp
41 port = PORT_S
42 hosts = 127.0.0.1
43 hosts_require_tls = *
44 allow_localhost
45
46# End