Handbook
Glossary
capa ( -- array )
POP3 client library
Prev:
<pop3-account> ( -- pop3-account )
Next:
count ( -- n )
Vocabulary
pop3
Inputs
None
Outputs
array
an
array
Word description
Queries the mail server capabilities, as described in RFC 2449. It is advised to check for command support before calling the appropriate words (e.g. TOP UIDL).
Definition
USING:
accessors
io.streams.duplex
kernel
pop3.private
;
IN:
pop3
:
capa
( -- array )
stream
[
"CAPA"
command
readlns
dup
account
capa<<
]
with-stream*
;