TLS: variables $tls_(in,out)_tlsver
[exim.git] / test / confs / 0483
CommitLineData
afda344b
PH
1# Exim test configuration 0483
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = a1
10
11queue_only
12
13# ----- ACL -----
14
15begin acl
16
17a1:
18 require recipients = lsearch;DIR/aux-fixed/TESTNUM.list
19 require senders = lsearch;DIR/aux-fixed/TESTNUM.list
20 warn log_message = sender_data=$sender_data recipient_data=$recipient_data
21 require verify = recipient
22 accept
23
24
25# ----- Routers -----
26
27begin routers
28
29r1:
30 driver = accept
31 senders = lsearch;DIR/aux-fixed/TESTNUM.list
32 debug_print = sender_data=$sender_data
33 transport = t1
34
35
36# ----- Transports -----
37
38begin transports
39
40t1:
41 driver = appendfile
42 file = /dev/null
43 user = CALLER
44
45# End