Difference between revisions of "Email"

From Computer History Wiki
Jump to: navigation, search
m (External links: +the first specs)
m (External links: +an amusing note by Mike Padlipsky over credit)
Line 13: Line 13:
 
* [http://ana-3.lcs.mit.edu/~jnc/history/Mail_Protocol.txt Mail Protocol] (NIC 29588) - the first email carriage protocol
 
* [http://ana-3.lcs.mit.edu/~jnc/history/Mail_Protocol.txt Mail Protocol] (NIC 29588) - the first email carriage protocol
 
* [http://www.rfc-editor.org/rfc/rfc733.txt Standard for the Format of ARPA Network Text Messages] (RFC 733, NIC 41592) - the first email format standard
 
* [http://www.rfc-editor.org/rfc/rfc733.txt Standard for the Format of ARPA Network Text Messages] (RFC 733, NIC 41592) - the first email format standard
 +
* [https://www.multicians.org/allnight.html ...over whose claim was right: first at which, and for what, and with whom] - an amusing note by Mike Padlipsky over credit
  
 
[[Category: Networking Basics]]
 
[[Category: Networking Basics]]

Revision as of 13:32, 11 January 2024

Email (short for electronic mail) is a communication network application which involves sending a message from an originator to a 'mailbox' on the destination host system. The recipient runs an application program to retrieve it and view it at a time of their choosing. It was the first 'killer app' on the ARPANET, the first packet switching data network (although email existed between users of a single time-sharing mainframe before then).

There are two protocols involved in modern email.

One covers the format of the message (which is divided into 'headers' and 'body'), which has remained generally the same since the ARPANET days (albeit with extensions for security, multi-media content, etc).

The other, Simple Mail Transfer Protocol, covers the method used to carry the message from the source host to the destination (possibly via one or more 'relay agents'). Although this also dates back to the ARPANET (although it has been updated to function over TCP), it was a replacement for an earlier protocol used for email carriage, which was an extension to FTP.

External links