summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic/0028
blob: d3fb0f7d25fccaa91ffc293bbb2e32f9b7d600bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ACL and $message_size
#
# SIZE unset - should reject at DATA time
exim -bs
helo test
mail from:<x@y>
rcpt to:<userx@test.ex>
data
Testing, testing
.
quit
****
# SIZE set - should reject at RCPT time
exim -bs
ehlo Testing
mail from:<x@y> SIZE=100
rcpt to:<userx@test.ex>
quit
****