status-folder ( mailbox keys -- assoc )
IMAP library

Prev:rename-folder ( old-name new-name -- )
Next:close-folder ( -- )


Vocabulary
imap

Inputs
mailboxa string
keysa sequence of attributes


Outputs
assocattribute values


Word description
Requests a collection of attributes for the specified folder.

Examples
USING: imap ; \ imap-settings get-global [ "INBOX" { "MESSAGES" "UNSEEN" } status-folder ] with-imap-settings
{ { "MESSAGES" 67 } { "UNSEEN" 18 } }


Definition