PIPE_CONNECT: fix feature-cache refresh
[exim.git] / test / confs / 2151
CommitLineData
ae5afa61
JH
1# Exim test configuration 2151
2
3.include DIR/aux-var/tls_conf_prefix
4
5
6# ----- Main settings -----
7
8acl_smtp_rcpt = acl_rcpt
9callout_random_local_part = $primary_hostname--testing
10trusted_users = CALLER
11
12tls_advertise_hosts = 127.0.0.1 : HOSTIPV4
13
14tls_certificate = DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.pem
15tls_privatekey = DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key
16
17# ----- ACL -----
18
19begin acl
20
21acl_rcpt:
22 accept verify = recipient/callout=1s,use_sender
23
24# ----- Routers -----
25
26begin routers
27
28callout:
29 driver = manualroute
30 transport = smtp
31 route_data = 127.0.0.1
32 self = send
33
34
35# ----- Transports -----
36
37begin transports
38
39smtp:
40 driver = smtp
41 port = PORT_S
42
43# End