summaryrefslogtreecommitdiff
path: root/test/scripts/1000-Basic-ipv6/1001
blob: d0a71a6cd36c195c7ad365734a8747067598b1d3 (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
# recognizing IPv6 address in HELO/EHLO
need_ipv6
#
# Incoming messages will be queued; deliver by queue run at the end.
#
exim -DSERVER=server -bd -oX PORT_D
****
client HOSTIPV6 PORT_D
??? 220
ehlo [HOSTIPV6]
??? 250-
??? 250-
??? 250-
??? 250-
??? 250
mail from:<>
??? 250
rcpt to:<userx@test.ex>
??? 250
data
??? 354
To: userx@test.ex

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

EHLO [IPV6:HOSTIPV6]
.
??? 250
ehlo [IPV6:V6NET:0:12:1:a00:20ff:fe86:a062]
??? 250-
??? 250-
??? 250-
??? 250-
??? 250
mail from:<>
??? 250
rcpt to:<userx@test.ex>
??? 250
data
??? 354
To: userx@test.ex

EHLO [IPV6:V6NET:0:12:1:a00:20ff:fe86:a062]
.
??? 250
ehlo HOSTIPV6
??? 501
quit
??? 221
****
killdaemon
# Wait for delivery process
millisleep 500
exim -q
****