Simple Mail Transfer Protocol: Difference between revisions
John Leach (talk | contribs) m (Text replacement - "[[" to "") |
John Leach (talk | contribs) m (Text replacement - "]]" to "") |
||
Line 6: | Line 6: | ||
| date = April 2001 | | date = April 2001 | ||
| publisher = Internet Engineering Task Force | | publisher = Internet Engineering Task Force | ||
| url = http://www.ietf.org/rfc/rfc2821.txt }}</ref> Other protocols, such as POP3 | | url = http://www.ietf.org/rfc/rfc2821.txt }}</ref> Other protocols, such as POP3 and IMAP, manage putting envelopes into mailboxes and taking them out. Yet another set of functions multipurpose internet mail extensions (MIME (computer), identifies the type of content inside the electronic envelope, such as text, audio, video, programs, web pages, encrypted text, etc. | ||
Do understand the difference between the protocol and the program that runs the protocol. In a UNIX/LINUX protocol, there are a variety of protocols that run SMTP, such as open-source <code>sendmail | Do understand the difference between the protocol and the program that runs the protocol. In a UNIX/LINUX protocol, there are a variety of protocols that run SMTP, such as open-source <code>sendmail</code><ref name=sendmailCon>{{citation | ||
| author = Sendmail Consortium | | author = Sendmail Consortium | ||
| title = Welcome to sendmail.org | | title = Welcome to sendmail.org | ||
Line 15: | Line 15: | ||
| author = Liu, C. ''et al'' | | author = Liu, C. ''et al'' | ||
| publisher = O'Reilly | | publisher = O'Reilly | ||
| year = 1994}} p. 392</ref> or <code>ftpmail</code><ref>Liu, p. 479</ref>. In the Microsoft world, the main program that runs SMTP is Microsoft Exchange | | year = 1994}} p. 392</ref> or <code>ftpmail</code><ref>Liu, p. 479</ref>. In the Microsoft world, the main program that runs SMTP is Microsoft Exchange. | ||
SMTP requires a guaranteed path to move the bytes of the envelope across the internet, a service provided by the Transmission Control Protocol | SMTP requires a guaranteed path to move the bytes of the envelope across the internet, a service provided by the Transmission Control Protocol (TCP). SMTP itself, however, does not guarantee delivery of electronic messages, but does have conventions to tell the server when it could not deliver an envelope, find the associated post office, and other abnormal events.<ref name=RFC2822>{{citation | ||
| id = RFC2822 | | id = RFC2822 | ||
| title =Internet Message Format | | title =Internet Message Format | ||
Line 39: | Line 39: | ||
| date = November 1996 | | date = November 1996 | ||
| publisher = Internet Engineering Task Force | | publisher = Internet Engineering Task Force | ||
| url = http://www.ietf.org/rfc/rfc2046.txt }}</ref> Especially when the content is text, but in other than ASCII | | url = http://www.ietf.org/rfc/rfc2046.txt }}</ref> Especially when the content is text, but in other than ASCII text (e.g., human scripts not using the Roman alphabet such as Arabic orthography, kanji and hiragana, Sanskrit orthography, etc. <ref name=RFC2047>{{citation | ||
| id = RFC2047 | | id = RFC2047 | ||
| title =Multipurpose Internet Mail Extensions (MIME) Part Three: Message Header Extensions for Non-ASCII Text | | title =Multipurpose Internet Mail Extensions (MIME) Part Three: Message Header Extensions for Non-ASCII Text | ||
Line 58: | Line 58: | ||
==Basic SMTP security== | ==Basic SMTP security== | ||
==Mailing lists== | ==Mailing lists== | ||
==SMTP and spam | ==SMTP and spam== | ||
See port scanning | See port scanning. In general, SMTP servers should not be present on end user computers. | ||
==References== | ==References== | ||
{{reflist|2}} | {{reflist|2}} |
Revision as of 16:23, 30 March 2024
This article may be deleted soon. | ||
---|---|---|
The Simple Mail Transfer Protocol (SMTP), in an analogy to postal mail, is the Internet application protocol that moves addressed and stamped envelopes between post offices.[1] Other protocols, such as POP3 and IMAP, manage putting envelopes into mailboxes and taking them out. Yet another set of functions multipurpose internet mail extensions (MIME (computer), identifies the type of content inside the electronic envelope, such as text, audio, video, programs, web pages, encrypted text, etc. Do understand the difference between the protocol and the program that runs the protocol. In a UNIX/LINUX protocol, there are a variety of protocols that run SMTP, such as open-source SMTP requires a guaranteed path to move the bytes of the envelope across the internet, a service provided by the Transmission Control Protocol (TCP). SMTP itself, however, does not guarantee delivery of electronic messages, but does have conventions to tell the server when it could not deliver an envelope, find the associated post office, and other abnormal events.[5] SMTP normal processing flowIntroduction to message content conventions
Multipurpose Internet Mail Extensions tell the sending and receiving client application programs how to handle the "letter" that goes into the "envelope". First, the basic machine-readable format of an Internet message body needs to be defined. [6] Next, the client needs to be able to identify the "language" that a computer must understand the content: the media type.[7] Especially when the content is text, but in other than ASCII text (e.g., human scripts not using the Roman alphabet such as Arabic orthography, kanji and hiragana, Sanskrit orthography, etc. [8] There need to be administrative conventions to identify new kinds of media, non-ASCII formats, and other information needed to process messages. [9] Error handling in SMTPBasic SMTP securityMailing listsSMTP and spamSee port scanning. In general, SMTP servers should not be present on end user computers. References
|