Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0479
CommitLineData
afda344b
PH
1# Exim test configuration 0479
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = rcpt
13
14
15# ----- ACLs -----
16
17begin acl
18
19rcpt:
20 require logwrite = sender address is <$sender_address>
21 verify = sender
22 accept
23
24
25# ----- Routers -----
26
27begin routers
28
29r1:
30 driver = accept
31 transport = t1
32
33
34# ----- Transports -----
35
36begin transports
37
38t1:
39 driver = smtp
40 port = PORT_S
41 hosts = 127.0.0.1
42 allow_localhost
43 connect_timeout = 1s
44
45
46# ----- Rewrite -----
47
48begin rewrite
49
50a@b rewritten-a@rewritten-b
51
52
53# End