Skip to content
Home

Post Office Protocol (POP) — POP3 and e-mail retrieval

Post Office Protocol (POP) is a simple Internet standard used to retrieve e-mail from a remote server to a local client. POP3 is the dominant version; its behavior, history, and contrasts with IMAP are explained.

Overview

The Post Office Protocol (commonly abbreviated POP) is an application-layer protocol designed to let local e-mail programs fetch messages from a remote mail server. The version in widespread use is POP3, which runs over a TCP/IP connection and provides a straightforward model for downloading messages to a client. POP3 is one of the two principal open standards for e-mail retrieval, alongside the more feature-rich Internet Message Access Protocol (IMAP).

How POP3 works

POP3 follows a simple transaction model: a client connects to a server, authenticates, retrieves messages, and then closes the session. Typical default ports are 110 for unencrypted connections and 995 for connections secured with SSL/TLS. A POP3 server normally presents mailboxes to a client; by default messages are downloaded and often deleted from the server unless the client is configured to "leave messages on server." Because the protocol is focused on retrieval, it does not handle message submission (SMTP is used to send e-mail) or advanced server-side message state management.

Key characteristics and commands

POP3 is intentionally compact and command-driven. After connection and authentication (with common methods such as USER/PASS, APOP, or SASL mechanisms), a client issues retrieval commands to fetch entire messages. The protocol operates in distinct states—connection, authorization, transaction, and update—so that changes are committed only when the session ends. Notable commands include STAT (report mailbox status), LIST (list messages and sizes), RETR (retrieve a message), DELE (mark a message for deletion), and QUIT (end the session and apply deletions).

Security and extensions

Because POP3 was designed before widespread encryption on the Internet, several extensions exist to enhance its security. Implicit TLS (using port 995) wraps the session in SSL/TLS, while the STLS extension permits upgrading a plain connection to a secure one. Authentication can be strengthened with challenge–response schemes such as APOP or modern SASL methods. Many servers also log and audit connections; administrators are encouraged to use TLS and strong authentication to protect credentials and message contents in transit.

History, development, and POP4

POP has evolved through several versions to address needs and interoperability. POP3 became the Internet standard and remains widely supported by clients and servers. Over the years proposals have been made for a successor often referred to as POP4, which aimed to add light folder management, multipart and flag support, and other conveniences found in IMAP while keeping POP's simplicity. A working implementation and draft specifications were circulated in the past, but active development of a formal POP4 standard has not progressed broadly since the early 2000s; interested readers can find references and archived discussions at POP4 proposal.

Uses, advantages and limitations

POP3 remains popular for users who prefer to download and store messages locally or for environments with limited server storage. Its advantages include simplicity, wide client support, and minimal server-side resource requirements. However, limitations are important to understand: POP3 lacks standardized server-side folders, fine-grained message state synchronization, and easy multi-client access to a single mailbox. For those capabilities, IMAP is generally preferred. Many e-mail clients support both approaches and let users choose whether messages remain on the server or are moved to a local archive.

POP3 typically works alongside other Internet mail standards: SMTP for sending mail, and IMAP when server-side access is required. Administrators and users often consult documentation for compatible e-mail clients and mail servers, and for network considerations such as firewall rules and TCP/IP port configurations. Choosing between POP3 and IMAP depends on storage model, multi-device access needs, and security practices.

Questions and answers

Q: What is POP3?

A: POP3 is an application-layer Internet standard protocol used by local e-mail clients to get e-mail from a remote mail server over a TCP/IP connection.

Q: What are the two most widely accepted Internet standard protocols for email retrieval?

A: The two most widely accepted Internet standard protocols for email retrieval are POP3 and IMAP4 (Internet Message Access Protocol).

Q: Does almost all modern email clients and servers support both POP3 and IMAP4?

A: Yes, almost all modern email clients and servers support both POP3 and IMAP4.

Q: What was proposed in the POP4 extension?

A: The POP4 extension proposed adding basic folder management, multipart message support, as well as message flag management, allowing for a light protocol which supports some popular IMAP features which POP3 lacks.

Q: When was the POP4 specification outlined?

A: The POP4 specification was outlined many years ago.

Q: Was a working server implementation included in the proposed POP4 specification?

A: Yes, a working server implementation was included in the proposed POP4 specification.

Q: Has there been any progress in the POP4 specification since 2003?

A: No, no progress has been found in the POP4 specification since 2003.

Related articles

Author

AlegsaOnline.com Post Office Protocol (POP) — POP3 and e-mail retrieval

URL: https://en.alegsaonline.com/art/78364

Share