|
| static shared_ptr< IMAPCommand > | LOGIN (const string &username, const string &password) |
| |
| static shared_ptr< IMAPCommand > | AUTHENTICATE (const string &mechName) |
| |
| static shared_ptr< IMAPCommand > | AUTHENTICATE (const string &mechName, const string &initialResponse) |
| |
| static shared_ptr< IMAPCommand > | LIST (const string &refName, const string &mailboxName) |
| |
| static shared_ptr< IMAPCommand > | SELECT (const bool readOnly, const string &mailboxName, const std::vector< string > ¶ms) |
| |
| static shared_ptr< IMAPCommand > | STATUS (const string &mailboxName, const std::vector< string > &attribs) |
| |
| static shared_ptr< IMAPCommand > | CREATE (const string &mailboxName, const std::vector< string > ¶ms) |
| |
| static shared_ptr< IMAPCommand > | DELETE (const string &mailboxName) |
| |
| static shared_ptr< IMAPCommand > | RENAME (const string &mailboxName, const string &newMailboxName) |
| |
| static shared_ptr< IMAPCommand > | FETCH (const messageSet &msgs, const std::vector< string > ¶ms) |
| |
| static shared_ptr< IMAPCommand > | STORE (const messageSet &msgs, const int mode, const std::vector< string > &flags) |
| |
| static shared_ptr< IMAPCommand > | APPEND (const string &mailboxName, const std::vector< string > &flags, vmime::datetime *date, const size_t size) |
| |
| static shared_ptr< IMAPCommand > | COPY (const messageSet &msgs, const string &mailboxName) |
| |
| static shared_ptr< IMAPCommand > | SEARCH (const std::vector< string > &keys, const vmime::charset *charset) |
| |
| static shared_ptr< IMAPCommand > | STARTTLS () |
| |
| static shared_ptr< IMAPCommand > | CAPABILITY () |
| |
| static shared_ptr< IMAPCommand > | NOOP () |
| |
| static shared_ptr< IMAPCommand > | EXPUNGE () |
| |
| static shared_ptr< IMAPCommand > | CLOSE () |
| |
| static shared_ptr< IMAPCommand > | LOGOUT () |
| |
| static shared_ptr< IMAPCommand > | createCommand (const string &text, const string &traceText="") |
| |
An IMAP command that will be sent to the server.