POP 3
Post Office Protocol version 3 is an Application Layer protocol for retrieving emails from a mail server like IMAP. While SMTP is used for sending emails, these protocols handle receiving and managing them on client devices.
POP3 works on Ports 110 and port 995 for encrypted communication via SSL/TLS. The main features it has are:
Downloads emails from the server to the clientβs device
Best for single-device email access
Once emails are downloaded, they are typically removed from the server
Simpler than IMAP and requires less storage on the mail server
POP3 uses a series of commands to interact with mail servers. Some of them are:
USER
: Identify a userPASS
: Authenticate using passwordSTAT
: Request the number of emails on the serverLIST
: Request the number and size of all emailsRETR
: Request to show an email by IDDELE
: Request to delete an email by IDCAPA
: Request to display the server capabilitiesRSET
: Request to reset the transmitted informationQUIT
: Close the connection
Last updated