summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic/0159
blob: adadf2d3a6dce02075e101041b2eac1c04212ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# recognizing IPv4 address in HELO/EHLO
need_ipv4
#
# Incoming messages will be queued; deliver by queue run at the end.
#
exim -DSERVER=server -bd -oX PORT_D
****
client HOSTIPV4 PORT_D
??? 220
ehlo [HOSTIPV4]
??? 250-
??? 250-
??? 250-
??? 250
mail from:<>
??? 250
rcpt to:<userx@test.ex>
??? 250
data
??? 354
To: userx@test.ex

EHLO [HOSTIPV4]
.
??? 250
ehlo [IPV4:HOSTIPV4]
??? 250-
??? 250-
??? 250-
??? 250
mail from:<>
??? 250
rcpt to:<userx@test.ex>
??? 250
data
??? 354
To: userx@test.ex

EHLO [IPV4:HOSTIPV4]
.
??? 250
ehlo HOSTIPV4
??? 250-
??? 250-
??? 250-
??? 250
mail from:<>
??? 250
rcpt to:<userx@test.ex>
??? 250
data
??? 354
To: userx@test.ex

EHLO HOSTIPV4
.
??? 250
ehlo [V4NET.1.2.3]
??? 250-
??? 250-
??? 250-
??? 250
mail from:<>
??? 250
rcpt to:<userx@test.ex>
??? 250
data
??? 354
To: userx@test.ex

EHLO [V4NET.1.2.3]
.
??? 250
quit
??? 221
****
killdaemon
# Wait for delivery process
millisleep 500
exim -q
****