git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Close server smtp socket explicitly on connect ACL "drop"
[exim.git]
/
test
/
scripts
/
0000-Basic
/
0028
1
# ACL and $message_size
2
#
3
# SIZE unset - should reject at DATA time
4
exim -bs
5
helo test
6
mail from:<x@y>
7
rcpt to:<userx@test.ex>
8
data
9
Testing, testing
10
.
11
quit
12
****
13
# SIZE set - should reject at RCPT time
14
exim -bs
15
ehlo Testing
16
mail from:<x@y> SIZE=100
17
rcpt to:<userx@test.ex>
18
quit
19
****