connect ( pop3-account -- )
POP3 client library

Next:<pop3-account> ( -- pop3-account )


Vocabulary
pop3

Inputs
pop3-accounta pop3-account


Outputs
None

Word description
Opens a network connection to the pop3 mail server with the settings given in the pop3-account slots.

Examples
USING: accessors pop3 ; <pop3-account> "pop.yourisp.com" >>host "username@yourisp.com" >>user "pass123" >>pwd connect


Definition