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
/
0432
1
# callout with -bh and -bhc
2
need_ipv4
3
#
4
exim -bh 1.2.3.4
5
mail from:<x@y>
6
quit
7
****
8
server PORT_S
9
220 server ready
10
HELO
11
250 OK
12
MAIL
13
250 OK
14
RCPT
15
250 OK
16
QUIT
17
220 OK
18
****
19
exim -d -bhc 1.2.3.4
20
mail from:<x@y>
21
quit
22
****
23
exim -d -bhc 1.2.3.4
24
mail from:<x@y>
25
quit
26
****
27
exim -bhc 1.2.3.4
28
mail from:<x@y>
29
quit
30
****
31
server PORT_S
32
220 server ready
33
HELO
34
250 OK
35
MAIL
36
250 OK
37
RCPT
38
250 OK
39
QUIT
40
220 OK
41
****
42
exim -bhc 1.2.3.4
43
mail from:<a@b>
44
quit
45
****
46
# Timeout stuff
47
server PORT_S
48
220 server ready
49
HELO
50
*sleep 2
51
*eof
52
****
53
exim -bhc 1.2.3.4
54
mail from:<p1@q>
55
quit
56
****