git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Set mainlog_name and rejectlog_name unconditionally.
[exim.git]
/
test
/
confs
/
0479
1
# Exim test configuration 0479
2
3
.include DIR/aux-var/std_conf_prefix
4
5
6
# ----- Main settings -----
7
8
acl_smtp_rcpt = rcpt
9
10
11
# ----- ACLs -----
12
13
begin acl
14
15
rcpt:
16
require logwrite = sender address is <$sender_address>
17
verify = sender
18
accept
19
20
21
# ----- Routers -----
22
23
begin routers
24
25
r1:
26
driver = accept
27
transport = t1
28
29
30
# ----- Transports -----
31
32
begin transports
33
34
t1:
35
driver = smtp
36
port = PORT_S
37
hosts = 127.0.0.1
38
hosts_try_fastopen = :
39
allow_localhost
40
connect_timeout = 1s
41
42
43
# ----- Rewrite -----
44
45
begin rewrite
46
47
a@b rewritten-a@rewritten-b
48
49
50
# End