Note: You are currently viewing documentation for Moodle 3.4. Up-to-date documentation for the latest stable version of Moodle is likely available here: POP3 server authentication.

POP3 server authentication: Difference between revisions

From MoodleDocs
No edit summary
(plugin removed in 3.4 (MDL-50925))
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:Administrator]]
{{Authentication}}
[[Category:Authentication|POP3]]
{{Note|The POP3 server authentication plugin has been removed in Moodle 3.4. It is still available from https://github.com/moodlehq/moodle-auth_pop3.}}
POP stands for Post Office Protocol. This is used to describe how e-mail clients


interact with mail servers. The POP3 Server is a type of mail server used for incoming
==POP3 servers==


mail. In simple terms, POP servers provide a mail-drop service (a temporary mailbox to  
POP stands for Post Office Protocol. This is used to describe how e-mail clients interact with mail servers. The POP3 server is a type of mail server used for incoming mail. In simple terms, POP servers provide a mail-drop service (a temporary mailbox to leave messages so they can be picked up at the recipient's convenience.) When users connect to their ISP POP servers, their e-mail software interface with the server and download any messages for them. POP is only used to receive messages, it is not used to send them. 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. Many subscribers to individual Internet service provider e-mail accounts access their e-mail with client software that uses POP3.


leave messages so they can be picked up at the recipient's convenience.) When users
==POP3 server authentication==


connect to their ISP POP servers, their e-mail software interface with the server and
POP3 server authentication is a user authentication process i.e. enabling people to login to your Moodle site.


download any messages for them. POP is only used to receive messages, it is not used to
This method uses the POP3 mail server for the authentication process ie. check for users accounts.


send them.
==See also==
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
*[http://en.wikipedia.org/wiki/Post_Office_Protocol Wikipedia article on Post Office Protocol]


over a TCP/IP connection. Many subscribers to individual Internet service provider e-
[[Category:Plugin]]


mail accounts access their e-mail with client software that uses POP3.
The design of POP3 and its procedures 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 (online) and
disconnected (offline) modes of operation. E-mail clients using IMAP generally leave
messages on the server until the user explicitly deletes them. This and other aspects 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.
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.
[[fr:Utiliser un serveur POP3]]
[[fr:Utiliser un serveur POP3]]
[[de:POP3-Server]]

Latest revision as of 16:48, 13 November 2017

Note: The POP3 server authentication plugin has been removed in Moodle 3.4. It is still available from https://github.com/moodlehq/moodle-auth_pop3.


POP3 servers

POP stands for Post Office Protocol. This is used to describe how e-mail clients interact with mail servers. The POP3 server is a type of mail server used for incoming mail. In simple terms, POP servers provide a mail-drop service (a temporary mailbox to leave messages so they can be picked up at the recipient's convenience.) When users connect to their ISP POP servers, their e-mail software interface with the server and download any messages for them. POP is only used to receive messages, it is not used to send them. 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. Many subscribers to individual Internet service provider e-mail accounts access their e-mail with client software that uses POP3.

POP3 server authentication

POP3 server authentication is a user authentication process i.e. enabling people to login to your Moodle site.

This method uses the POP3 mail server for the authentication process ie. check for users accounts.

See also