Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0298
CommitLineData
afda344b
PH
1# Exim test configuration 0298
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 = check_rcpt
14system_filter = DIR/aux-fixed/TESTNUM.Filter
15
16
17# ------ ACL ------
18
19begin acl
20
21check_rcpt:
22 accept
23
24
25# ------ Routers ------
26
27begin routers
28
29r1:
30 driver = accept
31 transport = t1
32
33# ------ Transports ------
34
35begin transports
36
37t1:
38 driver = appendfile
39 file = DIR/test-mail/$local_part
40 user = CALLER
41
42# End