Additional tests - didn't show any problems.
[exim.git] / test / confs / 0483
CommitLineData
afda344b
PH
1# Exim test configuration 0483
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = a1
15
16queue_only
17
18# ----- ACL -----
19
20begin acl
21
22a1:
23 require recipients = lsearch;DIR/aux-fixed/TESTNUM.list
24 require senders = lsearch;DIR/aux-fixed/TESTNUM.list
25 warn log_message = sender_data=$sender_data recipient_data=$recipient_data
26 require verify = recipient
27 accept
28
29
30# ----- Routers -----
31
32begin routers
33
34r1:
35 driver = accept
36 senders = lsearch;DIR/aux-fixed/TESTNUM.list
37 debug_print = sender_data=$sender_data
38 transport = t1
39
40
41# ----- Transports -----
42
43begin transports
44
45t1:
46 driver = appendfile
47 file = /dev/null
48 user = CALLER
49
50# End