Constants of the POP3 protocol. More...
Functions | |
static const QString | RESPONSE_POSITIVE ("+OK") |
positive server response | |
static const QString | RESPONSE_NEGATIVE ("-ERR") |
negative server response | |
static const QString | END_MULTILINE_RESPONSE (".") |
End of multi-line response. | |
static const QString | CAPA_REQUEST ("CAPA") |
Capabilities request. | |
static const QString | AUTH_REQUEST ("AUTH") |
Authentication mechanism request. | |
static const QString | CAPA_RESPONSE_STLS ("STLS") |
Capabilities response STLS available. | |
static const QString | START_TLS ("STLS") |
command for start TLS | |
static const QString | COMMIT ("QUIT") |
Commit command. | |
static const QString | LOGIN_USER ("USER") |
Sends the username for login. | |
static const QString | LOGIN_PASSWD ("PASS") |
Sends the password for login. | |
static const QString | LOGIN_APOP ("APOP") |
Command for login using APOP. | |
static const QString | UID_LIST ("UIDL") |
Command to get the UID list. | |
static const QString | MAIL_LIST ("LIST") |
Command to get a list of mail numbers and sizes. | |
static const QString | GET_HEADER ("TOP") |
This command gets the header of a mail. | |
static const QString | DELETE ("DELE") |
Deletes a mail. | |
static const QString | GET_MAIL ("RETR") |
Get a mail. |
Constants of the POP3 protocol.
static const QString POP3Constants::AUTH_REQUEST | ( | "AUTH" | ) | [static] |
Authentication mechanism request.
static const QString POP3Constants::CAPA_REQUEST | ( | "CAPA" | ) | [static] |
Capabilities request.
static const QString POP3Constants::CAPA_RESPONSE_STLS | ( | "STLS" | ) | [static] |
Capabilities response STLS available.
static const QString POP3Constants::COMMIT | ( | "QUIT" | ) | [static] |
Commit command.
static const QString POP3Constants::DELETE | ( | "DELE" | ) | [static] |
Deletes a mail.
static const QString POP3Constants::END_MULTILINE_RESPONSE | ( | "." | ) | [static] |
End of multi-line response.
static const QString POP3Constants::GET_HEADER | ( | "TOP" | ) | [static] |
This command gets the header of a mail.
static const QString POP3Constants::GET_MAIL | ( | "RETR" | ) | [static] |
Get a mail.
static const QString POP3Constants::LOGIN_APOP | ( | "APOP" | ) | [static] |
Command for login using APOP.
static const QString POP3Constants::LOGIN_PASSWD | ( | "PASS" | ) | [static] |
Sends the password for login.
static const QString POP3Constants::LOGIN_USER | ( | "USER" | ) | [static] |
Sends the username for login.
static const QString POP3Constants::MAIL_LIST | ( | "LIST" | ) | [static] |
Command to get a list of mail numbers and sizes.
static const QString POP3Constants::RESPONSE_NEGATIVE | ( | "-ERR" | ) | [static] |
negative server response
static const QString POP3Constants::RESPONSE_POSITIVE | ( | "+OK" | ) | [static] |
positive server response
static const QString POP3Constants::START_TLS | ( | "STLS" | ) | [static] |
command for start TLS
static const QString POP3Constants::UID_LIST | ( | "UIDL" | ) | [static] |
Command to get the UID list.