git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Make batch delivery work for files and pipes set up by redirection.
[exim.git]
/
test
/
scripts
/
0000-Basic
/
0398
1
# acl warning with verify callout failure
2
need_ipv4
3
#
4
server PORT_S
5
220 Server ready
6
HELO
7
250 OK
8
MAIL FROM
9
250 OK
10
RCPT TO
11
550 Unknown
12
QUIT
13
250 OK
14
****
15
exim -odi -bs
16
mail from:<x@remote>
17
rcpt to:<x@local>
18
data
19
Testing
20
.
21
quit
22
****
23
server PORT_S
24
220 Server ready
25
HELO
26
250 OK
27
MAIL FROM
28
250 OK
29
RCPT TO
30
550 Unknown
31
QUIT
32
250 OK
33
****
34
exim -odi -bs
35
mail from:<z@remote>
36
rcpt to:<deny@local>
37
quit
38
****
39
server PORT_S
40
220 Server ready
41
HELO
42
250 OK
43
MAIL FROM
44
250 OK
45
RCPT TO
46
550 Unknown
47
QUIT
48
250 OK
49
****
50
exim -d -odi -bs
51
mail from:<qq@remote>
52
rcpt to:<abc@local>
53
rcpt to:<xyz@local>
54
quit
55
****
56
exim -odi -bs
57
mail from:<>
58
rcpt to:<abc@local>
59
rcpt to:<xyz@local>
60
quit
61
****