Disable identd (rfc1413) lookups by default
[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
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = a1
14
15queue_only
16
17# ----- ACL -----
18
19begin acl
20
21a1:
22 require recipients = lsearch;DIR/aux-fixed/TESTNUM.list
23 require senders = lsearch;DIR/aux-fixed/TESTNUM.list
24 warn log_message = sender_data=$sender_data recipient_data=$recipient_data
25 require verify = recipient
26 accept
27
28
29# ----- Routers -----
30
31begin routers
32
33r1:
34 driver = accept
35 senders = lsearch;DIR/aux-fixed/TESTNUM.list
36 debug_print = sender_data=$sender_data
37 transport = t1
38
39
40# ----- Transports -----
41
42begin transports
43
44t1:
45 driver = appendfile
46 file = /dev/null
47 user = CALLER
48
49# End