git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix error codes in ACL-time quota checking
[exim.git]
/
test
/
confs
/
0347
1
# Exim test configuration 0347
2
3
.include DIR/aux-var/std_conf_prefix
4
5
6
# ----- Main settings -----
7
8
domainlist local_domains = test.ex
9
10
qualify_domain = test.ex
11
12
13
# ----- Routers -----
14
15
begin routers
16
17
r1:
18
driver = manualroute
19
self = pass
20
route_list = * 127.0.0.1
21
22
r2:
23
driver = accept
24
transport = t1
25
26
27
28
# ----- Transports -----
29
30
begin transports
31
32
t1:
33
driver = appendfile
34
batch_max = 100
35
file = /dev/null
36
user = CALLER
37
38
39
# ----- Retry -----
40
41
42
begin retry
43
44
* * F,1d,15m
45
46
# End