free pop3 email



pop3

pop3

The five layer TCP/IP model
5. Application layer

DHCP • DNS • FTP • HTTP • IMAP4 • IRC • MIME • POP3 • SIP • SMTP • SNMP • SSH • TELNET • BGP • RPC • RTP • RTCP • TLS/SSL • SDP • SOAP • L2TP • PPTP • …

4. Transport layer

TCP • UDP • DCCP • SCTP • GTP • …

3. Network layer

IP (IPv4 • IPv6) • ARP • RARP • ICMP • IGMP • RSVP • IPSec • …

2. Data link layer

ATM • DTM • Ethernet • FDDI • Frame Relay • GPRS • PPP • …

1. Physical layer

Ethernet physical layer • ISDN • Modems • PLC • RS232 • SONET/SDH • G.709 • Wi-Fi • …

This box: view  talk  edit

In computing, local e-mail clients use the Post Office Protocol version 3 (POP3), an application-layer Internet standard protocol, to retrieve e-mail from a remote server over a TCP/IP connection. Nearly all subscribers to individual Internet service provider e-mail accounts access their e-mail with client software that uses POP3.

Contents

  • 1 Overview
  • 2 Dialog example
  • 3 POP4
  • 4 SDPS
  • 5 See also
  • 6 External links
    • 6.1 POP3 RFCs
    • 6.2 Server implementations

Overview

POP3 has made earlier versions of the protocol obsolete, POP (informally called POP1) and POP2. In contemporary usage, the less precise term POP almost always means POP3 in the context of e-mail protocols.

The design of POP3 and its predecessors supports end users with intermittent connections (such as dial-up connections), allowing these users to retrieve e-mail when connected and then to view and manipulate the retrieved messages without needing to stay connected. Although most clients have an option to leave mail on server, e-mail clients using POP3 generally connect, retrieve all messages, store them on the user's PC as new messages, delete them from the server, and then disconnect. In contrast, the newer, more capable Internet Message Access Protocol (IMAP) supports both connected and disconnected modes of operation. E-mail clients using IMAP generally leave messages on the server until the user explicitly deletes them. This and other facets of IMAP operation allow multiple clients to access the same mailbox. Most e-mail clients support either POP3 or IMAP to retrieve messages; however, fewer Internet Service Providers (ISPs) support IMAP. The fundamental difference between POP3 and IMAP4 is that POP3 offers access to a mail drop; the mail exists on the server until it is collected by the client. Even if the client leaves some or all messages on the server, the client's message store is considered authoritative. In contrast, IMAP4 offers access to the mail store; the client may store local copies of the messages, but these are considered to be a temporary cache; the server's store is authoritative.

Clients with a leave mail on server option generally use the POP3 UIDL (Unique IDentification Listing) command. Most POP3 commands identify specific messages by their ordinal number on the mail server. This creates a problem for a client intending to leave messages on the server, since these message numbers may change from one connection to the server to another. For example if a mailbox contains five messages at last connect, and a different client then deletes message #3, the next connecting user will find the last two messages' numbers decremented by one. UIDL provides a mechanism to avoid these numbering issues. The server assigns a string of characters as a permanent and unique ID for the message. When a POP3-compatible e-mail client connects to the server, it can use the UIDL command to get the current mapping from these message IDs to the ordinal message numbers. The client can then use this mapping to determine which messages it has yet to download, which saves time when downloading. IMAP has a similar mechanism, using a 32-bit UID (Unique IDentifier) that is required to be strictly ascending. The advantage of the numeric UID is with large mailboxes; a client can request just the UIDs greater than its previously stored "highest UID". In POP, the client must fetch the entire UIDL map.

Whether using POP3 or IMAP to retrieve messages, e-mail clients typically use the SMTP_Submit profile of the SMTP protocol to send messages. E-mail clients are commonly categorized as either POP or IMAP clients, but in both cases the clients also use SMTP. There are extensions to POP3 that allow some clients to transmit outbound mail via POP3 - these are known as "XTND XMIT" extensions. The Qualcomm qpopper and CommuniGate Pro servers and Eudora clients are examples of systems that optionally utilize the XTND XMIT methods of authenticated client-to-server e-mail transmission.

MIME serves as the standard for attachments and non-ASCII text in e-mail. Although neither POP3 nor SMTP require MIME-formatted e-mail, essentially all Internet e-mail comes MIME-formatted, so POP clients must also understand and use MIME. IMAP, by design, assumes MIME-formatted e-mail.

Like many other older Internet protocols, POP3 originally supported only an unencrypted login mechanism. Although plain text transmission of passwords in POP3 still commonly occurs, POP3 currently supports several authentication methods to provide varying levels of protection against illegitimate access to a user's e-mail. One such method, APOP, uses the MD5 hash function in an attempt to avoid replay attacks and disclosure of a shared secret. Clients implementing APOP include Mozilla, Thunderbird, Opera, Eudora, KMail and Novell Evolution. POP3 clients can also support SASL authentication methods via the AUTH extension.

POP3 works over a TCP/IP connection using TCP on network port 110. E-mail clients can encrypt POP3 traffic using TLS or SSL. A TLS or SSL connection is negotiated using the STLS command. Some clients and servers, like Google Gmail, instead use the deprecated alternate-port method, which uses TCP port 995

Dialog example

RFC 1939 APOP support indicated by <1896.697170952@dbc.mtview.ca.us> here:

S: <wait for connection on TCP port 110>
C: <open connection>
S:    +OK POP3 server ready <1896.697170952@dbc.mtview.ca.us>
C:    APOP mrose c4c9334bac560ecc979e58001b3e22fb
S:    +OK mrose's maildrop has 2 messages (320 octets)
C:    STAT
S:    +OK 2 320
C:    LIST
S:    +OK 2 messages (320 octets)
S:    1 120
S:    2 200
S:    .
C:    RETR 1
S:    +OK 120 octets
S:    <the POP3 server sends message 1>
S:    .
C:    DELE 1
S:    +OK message 1 deleted
C:    RETR 2
S:    +OK 200 octets
S:    <the POP3 server sends message 2>
S:    .
C:    DELE 2
S:    +OK message 2 deleted
C:    QUIT
S:    +OK dewey POP3 server signing off (maildrop empty)
C:  <close connection>
S:  <wait for next connection>

Older POP3 servers without APOP accept a plain USER and PASS login:

C:    USER mrose
S     +OK User accepted
C:    PASS mrosepass
S     +OK Pass accepted

POP4

While not yet an official standardized mail protocol, a proposal has been outlined for a POP4 specification, complete with a working server implementation.

The proposed POP4 extension adds 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 currently lacks.

SDPS

Demon Internet introduced extensions to POP3 that allow multiple accounts per domain, and has become known as Standard Dial-up POP3 Service (SDPS).[1]

To access each account, the username includes the hostname, as john@hostname or john+hostname.

pop3 news and pop3 articles

Here's our top rated pop3 links for the day:

Web Host LiquidShark Releases Web-Based Email 4.0 

TopHosts.com - Feb 09 8:05 AM
February 9, 2007

Thank you for viewing the pop3 page pop3. 

 

Ever wondered what others are searching for in relation to pop3? Now you can see.  Below is a listing of  what everyone else is searching for in regard to pop3.

1. pop3
2. free pop3 email
3. free pop3 email account
4. pop3 server
5. yahoo pop3 e-mail account
6. yahoo pop3
7. pop3 email
8. free pop3
9. outlook 2003 read pop3 email - no message
10. yahoo pop3 settings
11. pop3 mail server
12. pop3 address
13. outlook 2003 pop3 email - no message
14. email pop3
15. pop3 webmail
16. pop3 mailbox
17. free pop3 server
18. sky broadband no pop3
19. pop3 interface
20. pop3 email juno
21. hotmail pop3 settings
22. pop3 port
23. winsock pop3
24. microsoft exchange pop3
25. spamkiller server mcafee problem pop3
26. hotmail pop3
27. free pop3 mail
28. free email pop3
29. pop3 protocol blocked cannot access mail
30. what is a pop3 account
31. pop3 free
32. pop3 java
33. exchange 2003 pop3 connector
34. gmail pop3
35. pop3 email account
36. pop3 connector exchange
37. pop3 email accounts
38. what is my outlook pop3 server for yahoo
39. pop3 commands
40. pop3 email programs
41. native pop3 connector serialz
42. outlook not connecting to pop3
43. free pop3 email service
44. free pop3 and smtp server
45. hotmail pop3 server
46. pop3 to exchange
47. pop3 exchange virus
48. pop3 exchange server
49. pop3 exchange spam
50. send receive outlook 2003 pop3
51. uk free pop3 e-mail
52. roadrunner insight pop3
53. pop3 versus imap
54. free pop3 mail server
55. free pop3 access
56. exchange pop3 connector manager
57. pop3 exchange connector
58. free pop3 e-mail
59. exchange pop3 connector
60. msn email pop3 settings
61. pop3 exchange
62. pop3 accounts
63. pop3 howto
64. pop3 free email service
65. outlook 2003 pop3 receive
66. pop3 mail client
67. pop3 settings orange outlook
68. outlook 2003 pop3
69. shared email with outlook and pop3
70. sbcglobal pop3
71. pop3 server unix name
72. msn email pop3
73. bulk design email graphic hosting mail pop3 web
74. aol pop3 address
75. default account exchange changes pop3 small business server
76. connector exchange pop3
77. exchange server 2003 pop3 virtual server
78. free pop3 smtp email
79. how to set up pop3
80. exchange server pop3 connector
81. free pop3 email accounts
82. free pop3 account
83. fix the pop3 problems with verizon
84. exchange server 2003 pop3 connector
85. incoming pop3 e-mail server reported an error vpopmail
86. exchange pop3
87. imap4 pop3 virtual server properties
88. freemail pop3
89. free pop3 smtp compatible mail servers
90. free pop3 email providers
91. dwmail login pop3
92. comcast pop3
93. catholic exchange and pop3 server
94. access pop3 email from different pcs
95. current status of insight communications pop3 server
96. download pop3 mail to exchange
97. exchange 2003 pop3
98. exchange 2003 imap4 pop3 address list
99. enable exchange pop3
100. exchange connector pop3