Advertisement
Guest User

Untitled

a guest
May 31st, 2013
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 121.56 KB | None | 0 0
  1.  
  2.  
  3. RFC 821
  4.  
  5.  
  6.  
  7.  
  8.  
  9. SIMPLE MAIL TRANSFER PROTOCOL
  10.  
  11.  
  12.  
  13. Jonathan B. Postel
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43. August 1982
  44.  
  45.  
  46.  
  47. Information Sciences Institute
  48. University of Southern California
  49. 4676 Admiralty Way
  50. Marina del Rey, California 90291
  51.  
  52. (213) 822-1511
  53.  
  54.  
  55. RFC 821 August 1982
  56. Simple Mail Transfer Protocol
  57.  
  58.  
  59.  
  60. TABLE OF CONTENTS
  61.  
  62. 1. INTRODUCTION .................................................. 1
  63.  
  64. 2. THE SMTP MODEL ................................................ 2
  65.  
  66. 3. THE SMTP PROCEDURE ............................................ 4
  67.  
  68. 3.1. Mail ..................................................... 4
  69. 3.2. Forwarding ............................................... 7
  70. 3.3. Verifying and Expanding .................................. 8
  71. 3.4. Sending and Mailing ..................................... 11
  72. 3.5. Opening and Closing ..................................... 13
  73. 3.6. Relaying ................................................ 14
  74. 3.7. Domains ................................................. 17
  75. 3.8. Changing Roles .......................................... 18
  76.  
  77. 4. THE SMTP SPECIFICATIONS ...................................... 19
  78.  
  79. 4.1. SMTP Commands ........................................... 19
  80. 4.1.1. Command Semantics ..................................... 19
  81. 4.1.2. Command Syntax ........................................ 27
  82. 4.2. SMTP Replies ............................................ 34
  83. 4.2.1. Reply Codes by Function Group ......................... 35
  84. 4.2.2. Reply Codes in Numeric Order .......................... 36
  85. 4.3. Sequencing of Commands and Replies ...................... 37
  86. 4.4. State Diagrams .......................................... 39
  87. 4.5. Details ................................................. 41
  88. 4.5.1. Minimum Implementation ................................ 41
  89. 4.5.2. Transparency .......................................... 41
  90. 4.5.3. Sizes ................................................. 42
  91.  
  92. APPENDIX A: TCP ................................................. 44
  93. APPENDIX B: NCP ................................................. 45
  94. APPENDIX C: NITS ................................................ 46
  95. APPENDIX D: X.25 ................................................ 47
  96. APPENDIX E: Theory of Reply Codes ............................... 48
  97. APPENDIX F: Scenarios ........................................... 51
  98.  
  99. GLOSSARY ......................................................... 64
  100.  
  101. REFERENCES ....................................................... 67
  102.  
  103.  
  104. Network Working Group J. Postel
  105. Request for Comments: DRAFT ISI
  106. Replaces: RFC 788, 780, 772 August 1982
  107.  
  108. SIMPLE MAIL TRANSFER PROTOCOL
  109.  
  110.  
  111. 1. INTRODUCTION
  112.  
  113. The objective of Simple Mail Transfer Protocol (SMTP) is to transfer
  114. mail reliably and efficiently.
  115.  
  116. SMTP is independent of the particular transmission subsystem and
  117. requires only a reliable ordered data stream channel. Appendices A,
  118. B, C, and D describe the use of SMTP with various transport services.
  119. A Glossary provides the definitions of terms as used in this
  120. document.
  121.  
  122. An important feature of SMTP is its capability to relay mail across
  123. transport service environments. A transport service provides an
  124. interprocess communication environment (IPCE). An IPCE may cover one
  125. network, several networks, or a subset of a network. It is important
  126. to realize that transport systems (or IPCEs) are not one-to-one with
  127. networks. A process can communicate directly with another process
  128. through any mutually known IPCE. Mail is an application or use of
  129. interprocess communication. Mail can be communicated between
  130. processes in different IPCEs by relaying through a process connected
  131. to two (or more) IPCEs. More specifically, mail can be relayed
  132. between hosts on different transport systems by a host on both
  133. transport systems.
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158. Postel [Page 1]
  159.  
  160.  
  161. August 1982 RFC 821
  162. Simple Mail Transfer Protocol
  163.  
  164.  
  165.  
  166. 2. THE SMTP MODEL
  167.  
  168. The SMTP design is based on the following model of communication: as
  169. the result of a user mail request, the sender-SMTP establishes a
  170. two-way transmission channel to a receiver-SMTP. The receiver-SMTP
  171. may be either the ultimate destination or an intermediate. SMTP
  172. commands are generated by the sender-SMTP and sent to the
  173. receiver-SMTP. SMTP replies are sent from the receiver-SMTP to the
  174. sender-SMTP in response to the commands.
  175.  
  176. Once the transmission channel is established, the SMTP-sender sends a
  177. MAIL command indicating the sender of the mail. If the SMTP-receiver
  178. can accept mail it responds with an OK reply. The SMTP-sender then
  179. sends a RCPT command identifying a recipient of the mail. If the
  180. SMTP-receiver can accept mail for that recipient it responds with an
  181. OK reply; if not, it responds with a reply rejecting that recipient
  182. (but not the whole mail transaction). The SMTP-sender and
  183. SMTP-receiver may negotiate several recipients. When the recipients
  184. have been negotiated the SMTP-sender sends the mail data, terminating
  185. with a special sequence. If the SMTP-receiver successfully processes
  186. the mail data it responds with an OK reply. The dialog is purposely
  187. lock-step, one-at-a-time.
  188.  
  189. -------------------------------------------------------------
  190.  
  191.  
  192. +----------+ +----------+
  193. +------+ | | | |
  194. | User |<-->| | SMTP | |
  195. +------+ | Sender- |Commands/Replies| Receiver-|
  196. +------+ | SMTP |<-------------->| SMTP | +------+
  197. | File |<-->| | and Mail | |<-->| File |
  198. |System| | | | | |System|
  199. +------+ +----------+ +----------+ +------+
  200.  
  201.  
  202. Sender-SMTP Receiver-SMTP
  203.  
  204. Model for SMTP Use
  205.  
  206. Figure 1
  207.  
  208. -------------------------------------------------------------
  209.  
  210. The SMTP provides mechanisms for the transmission of mail; directly
  211. from the sending user's host to the receiving user's host when the
  212.  
  213.  
  214.  
  215. [Page 2] Postel
  216.  
  217.  
  218. RFC 821 August 1982
  219. Simple Mail Transfer Protocol
  220.  
  221.  
  222.  
  223. two host are connected to the same transport service, or via one or
  224. more relay SMTP-servers when the source and destination hosts are not
  225. connected to the same transport service.
  226.  
  227. To be able to provide the relay capability the SMTP-server must be
  228. supplied with the name of the ultimate destination host as well as
  229. the destination mailbox name.
  230.  
  231. The argument to the MAIL command is a reverse-path, which specifies
  232. who the mail is from. The argument to the RCPT command is a
  233. forward-path, which specifies who the mail is to. The forward-path
  234. is a source route, while the reverse-path is a return route (which
  235. may be used to return a message to the sender when an error occurs
  236. with a relayed message).
  237.  
  238. When the same message is sent to multiple recipients the SMTP
  239. encourages the transmission of only one copy of the data for all the
  240. recipients at the same destination host.
  241.  
  242. The mail commands and replies have a rigid syntax. Replies also have
  243. a numeric code. In the following, examples appear which use actual
  244. commands and replies. The complete lists of commands and replies
  245. appears in Section 4 on specifications.
  246.  
  247. Commands and replies are not case sensitive. That is, a command or
  248. reply word may be upper case, lower case, or any mixture of upper and
  249. lower case. Note that this is not true of mailbox user names. For
  250. some hosts the user name is case sensitive, and SMTP implementations
  251. must take case to preserve the case of user names as they appear in
  252. mailbox arguments. Host names are not case sensitive.
  253.  
  254. Commands and replies are composed of characters from the ASCII
  255. character set [1]. When the transport service provides an 8-bit byte
  256. (octet) transmission channel, each 7-bit character is transmitted
  257. right justified in an octet with the high order bit cleared to zero.
  258.  
  259. When specifying the general form of a command or reply, an argument
  260. (or special symbol) will be denoted by a meta-linguistic variable (or
  261. constant), for example, "<string>" or "<reverse-path>". Here the
  262. angle brackets indicate these are meta-linguistic variables.
  263. However, some arguments use the angle brackets literally. For
  264. example, an actual reverse-path is enclosed in angle brackets, i.e.,
  265. "<[email protected]>" is an instance of <reverse-path> (the
  266. angle brackets are actually transmitted in the command or reply).
  267.  
  268.  
  269.  
  270.  
  271.  
  272. Postel [Page 3]
  273.  
  274.  
  275. August 1982 RFC 821
  276. Simple Mail Transfer Protocol
  277.  
  278.  
  279.  
  280. 3. THE SMTP PROCEDURES
  281.  
  282. This section presents the procedures used in SMTP in several parts.
  283. First comes the basic mail procedure defined as a mail transaction.
  284. Following this are descriptions of forwarding mail, verifying mailbox
  285. names and expanding mailing lists, sending to terminals instead of or
  286. in combination with mailboxes, and the opening and closing exchanges.
  287. At the end of this section are comments on relaying, a note on mail
  288. domains, and a discussion of changing roles. Throughout this section
  289. are examples of partial command and reply sequences, several complete
  290. scenarios are presented in Appendix F.
  291.  
  292. 3.1. MAIL
  293.  
  294. There are three steps to SMTP mail transactions. The transaction
  295. is started with a MAIL command which gives the sender
  296. identification. A series of one or more RCPT commands follows
  297. giving the receiver information. Then a DATA command gives the
  298. mail data. And finally, the end of mail data indicator confirms
  299. the transaction.
  300.  
  301. The first step in the procedure is the MAIL command. The
  302. <reverse-path> contains the source mailbox.
  303.  
  304. MAIL <SP> FROM:<reverse-path> <CRLF>
  305.  
  306. This command tells the SMTP-receiver that a new mail
  307. transaction is starting and to reset all its state tables and
  308. buffers, including any recipients or mail data. It gives the
  309. reverse-path which can be used to report errors. If accepted,
  310. the receiver-SMTP returns a 250 OK reply.
  311.  
  312. The <reverse-path> can contain more than just a mailbox. The
  313. <reverse-path> is a reverse source routing list of hosts and
  314. source mailbox. The first host in the <reverse-path> should be
  315. the host sending this command.
  316.  
  317. The second step in the procedure is the RCPT command.
  318.  
  319. RCPT <SP> TO:<forward-path> <CRLF>
  320.  
  321. This command gives a forward-path identifying one recipient.
  322. If accepted, the receiver-SMTP returns a 250 OK reply, and
  323. stores the forward-path. If the recipient is unknown the
  324. receiver-SMTP returns a 550 Failure reply. This second step of
  325. the procedure can be repeated any number of times.
  326.  
  327.  
  328.  
  329. [Page 4] Postel
  330.  
  331.  
  332. RFC 821 August 1982
  333. Simple Mail Transfer Protocol
  334.  
  335.  
  336.  
  337. The <forward-path> can contain more than just a mailbox. The
  338. <forward-path> is a source routing list of hosts and the
  339. destination mailbox. The first host in the <forward-path>
  340. should be the host receiving this command.
  341.  
  342. The third step in the procedure is the DATA command.
  343.  
  344. DATA <CRLF>
  345.  
  346. If accepted, the receiver-SMTP returns a 354 Intermediate reply
  347. and considers all succeeding lines to be the message text.
  348. When the end of text is received and stored the SMTP-receiver
  349. sends a 250 OK reply.
  350.  
  351. Since the mail data is sent on the transmission channel the end
  352. of the mail data must be indicated so that the command and
  353. reply dialog can be resumed. SMTP indicates the end of the
  354. mail data by sending a line containing only a period. A
  355. transparency procedure is used to prevent this from interfering
  356. with the user's text (see Section 4.5.2).
  357.  
  358. Please note that the mail data includes the memo header
  359. items such as Date, Subject, To, Cc, From [2].
  360.  
  361. The end of mail data indicator also confirms the mail
  362. transaction and tells the receiver-SMTP to now process the
  363. stored recipients and mail data. If accepted, the
  364. receiver-SMTP returns a 250 OK reply. The DATA command should
  365. fail only if the mail transaction was incomplete (for example,
  366. no recipients), or if resources are not available.
  367.  
  368. The above procedure is an example of a mail transaction. These
  369. commands must be used only in the order discussed above.
  370. Example 1 (below) illustrates the use of these commands in a mail
  371. transaction.
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386. Postel [Page 5]
  387.  
  388.  
  389. August 1982 RFC 821
  390. Simple Mail Transfer Protocol
  391.  
  392.  
  393.  
  394. -------------------------------------------------------------
  395.  
  396. Example of the SMTP Procedure
  397.  
  398. This SMTP example shows mail sent by Smith at host Alpha.ARPA,
  399. to Jones, Green, and Brown at host Beta.ARPA. Here we assume
  400. that host Alpha contacts host Beta directly.
  401.  
  402. S: MAIL FROM:<[email protected]>
  403. R: 250 OK
  404.  
  405. S: RCPT TO:<[email protected]>
  406. R: 250 OK
  407.  
  408. S: RCPT TO:<[email protected]>
  409. R: 550 No such user here
  410.  
  411. S: RCPT TO:<[email protected]>
  412. R: 250 OK
  413.  
  414. S: DATA
  415. R: 354 Start mail input; end with <CRLF>.<CRLF>
  416. S: Blah blah blah...
  417. S: ...etc. etc. etc.
  418. S: <CRLF>.<CRLF>
  419. R: 250 OK
  420.  
  421. The mail has now been accepted for Jones and Brown. Green did
  422. not have a mailbox at host Beta.
  423.  
  424. Example 1
  425.  
  426. -------------------------------------------------------------
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443. [Page 6] Postel
  444.  
  445.  
  446. RFC 821 August 1982
  447. Simple Mail Transfer Protocol
  448.  
  449.  
  450.  
  451. 3.2. FORWARDING
  452.  
  453. There are some cases where the destination information in the
  454. <forward-path> is incorrect, but the receiver-SMTP knows the
  455. correct destination. In such cases, one of the following replies
  456. should be used to allow the sender to contact the correct
  457. destination.
  458.  
  459. 251 User not local; will forward to <forward-path>
  460.  
  461. This reply indicates that the receiver-SMTP knows the user's
  462. mailbox is on another host and indicates the correct
  463. forward-path to use in the future. Note that either the
  464. host or user or both may be different. The receiver takes
  465. responsibility for delivering the message.
  466.  
  467. 551 User not local; please try <forward-path>
  468.  
  469. This reply indicates that the receiver-SMTP knows the user's
  470. mailbox is on another host and indicates the correct
  471. forward-path to use. Note that either the host or user or
  472. both may be different. The receiver refuses to accept mail
  473. for this user, and the sender must either redirect the mail
  474. according to the information provided or return an error
  475. response to the originating user.
  476.  
  477. Example 2 illustrates the use of these responses.
  478.  
  479. -------------------------------------------------------------
  480.  
  481. Example of Forwarding
  482.  
  483. Either
  484.  
  485. S: RCPT TO:<[email protected]>
  486. R: 251 User not local; will forward to <[email protected]>
  487.  
  488. Or
  489.  
  490. S: RCPT TO:<[email protected]>
  491. R: 551 User not local; please try <[email protected]>
  492.  
  493. Example 2
  494.  
  495. -------------------------------------------------------------
  496.  
  497.  
  498.  
  499.  
  500. Postel [Page 7]
  501.  
  502.  
  503. August 1982 RFC 821
  504. Simple Mail Transfer Protocol
  505.  
  506.  
  507.  
  508. 3.3. VERIFYING AND EXPANDING
  509.  
  510. SMTP provides as additional features, commands to verify a user
  511. name or expand a mailing list. This is done with the VRFY and
  512. EXPN commands, which have character string arguments. For the
  513. VRFY command, the string is a user name, and the response may
  514. include the full name of the user and must include the mailbox of
  515. the user. For the EXPN command, the string identifies a mailing
  516. list, and the multiline response may include the full name of the
  517. users and must give the mailboxes on the mailing list.
  518.  
  519. "User name" is a fuzzy term and used purposely. If a host
  520. implements the VRFY or EXPN commands then at least local mailboxes
  521. must be recognized as "user names". If a host chooses to
  522. recognize other strings as "user names" that is allowed.
  523.  
  524. In some hosts the distinction between a mailing list and an alias
  525. for a single mailbox is a bit fuzzy, since a common data structure
  526. may hold both types of entries, and it is possible to have mailing
  527. lists of one mailbox. If a request is made to verify a mailing
  528. list a positive response can be given if on receipt of a message
  529. so addressed it will be delivered to everyone on the list,
  530. otherwise an error should be reported (e.g., "550 That is a
  531. mailing list, not a user"). If a request is made to expand a user
  532. name a positive response can be formed by returning a list
  533. containing one name, or an error can be reported (e.g., "550 That
  534. is a user name, not a mailing list").
  535.  
  536. In the case of a multiline reply (normal for EXPN) exactly one
  537. mailbox is to be specified on each line of the reply. In the case
  538. of an ambiguous request, for example, "VRFY Smith", where there
  539. are two Smith's the response must be "553 User ambiguous".
  540.  
  541. The case of verifying a user name is straightforward as shown in
  542. example 3.
  543.  
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557. [Page 8] Postel
  558.  
  559.  
  560. RFC 821 August 1982
  561. Simple Mail Transfer Protocol
  562.  
  563.  
  564.  
  565. -------------------------------------------------------------
  566.  
  567. Example of Verifying a User Name
  568.  
  569. Either
  570.  
  571. S: VRFY Smith
  572. R: 250 Fred Smith <[email protected]>
  573.  
  574. Or
  575.  
  576. S: VRFY Smith
  577. R: 251 User not local; will forward to <[email protected]>
  578.  
  579. Or
  580.  
  581. S: VRFY Jones
  582. R: 550 String does not match anything.
  583.  
  584. Or
  585.  
  586. S: VRFY Jones
  587. R: 551 User not local; please try <[email protected]>
  588.  
  589. Or
  590.  
  591. S: VRFY Gourzenkyinplatz
  592. R: 553 User ambiguous.
  593.  
  594. Example 3
  595.  
  596. -------------------------------------------------------------
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614. Postel [Page 9]
  615.  
  616.  
  617. August 1982 RFC 821
  618. Simple Mail Transfer Protocol
  619.  
  620.  
  621.  
  622. The case of expanding a mailbox list requires a multiline reply as
  623. shown in example 4.
  624.  
  625. -------------------------------------------------------------
  626.  
  627. Example of Expanding a Mailing List
  628.  
  629. Either
  630.  
  631. S: EXPN Example-People
  632. R: 250-Jon Postel <[email protected]>
  633. R: 250-Fred Fonebone <[email protected]>
  634. R: 250-Sam Q. Smith <[email protected]>
  635. R: 250-Quincy Smith <@USC-ISIF.ARPA:[email protected]>
  636.  
  637. Or
  638.  
  639. S: EXPN Executive-Washroom-List
  640. R: 550 Access Denied to You.
  641.  
  642. Example 4
  643.  
  644. -------------------------------------------------------------
  645.  
  646. The character string arguments of the VRFY and EXPN commands
  647. cannot be further restricted due to the variety of implementations
  648. of the user name and mailbox list concepts. On some systems it
  649. may be appropriate for the argument of the EXPN command to be a
  650. file name for a file containing a mailing list, but again there is
  651. a variety of file naming conventions in the Internet.
  652.  
  653. The VRFY and EXPN commands are not included in the minimum
  654. implementation (Section 4.5.1), and are not required to work
  655. across relays when they are implemented.
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669. [Page 10] Postel
  670.  
  671.  
  672. RFC 821 August 1982
  673. Simple Mail Transfer Protocol
  674.  
  675.  
  676.  
  677. 3.4. SENDING AND MAILING
  678.  
  679. The main purpose of SMTP is to deliver messages to user's
  680. mailboxes. A very similar service provided by some hosts is to
  681. deliver messages to user's terminals (provided the user is active
  682. on the host). The delivery to the user's mailbox is called
  683. "mailing", the delivery to the user's terminal is called
  684. "sending". Because in many hosts the implementation of sending is
  685. nearly identical to the implementation of mailing these two
  686. functions are combined in SMTP. However the sending commands are
  687. not included in the required minimum implementation
  688. (Section 4.5.1). Users should have the ability to control the
  689. writing of messages on their terminals. Most hosts permit the
  690. users to accept or refuse such messages.
  691.  
  692. The following three command are defined to support the sending
  693. options. These are used in the mail transaction instead of the
  694. MAIL command and inform the receiver-SMTP of the special semantics
  695. of this transaction:
  696.  
  697. SEND <SP> FROM:<reverse-path> <CRLF>
  698.  
  699. The SEND command requires that the mail data be delivered to
  700. the user's terminal. If the user is not active (or not
  701. accepting terminal messages) on the host a 450 reply may
  702. returned to a RCPT command. The mail transaction is
  703. successful if the message is delivered the terminal.
  704.  
  705. SOML <SP> FROM:<reverse-path> <CRLF>
  706.  
  707. The Send Or MaiL command requires that the mail data be
  708. delivered to the user's terminal if the user is active (and
  709. accepting terminal messages) on the host. If the user is
  710. not active (or not accepting terminal messages) then the
  711. mail data is entered into the user's mailbox. The mail
  712. transaction is successful if the message is delivered either
  713. to the terminal or the mailbox.
  714.  
  715. SAML <SP> FROM:<reverse-path> <CRLF>
  716.  
  717. The Send And MaiL command requires that the mail data be
  718. delivered to the user's terminal if the user is active (and
  719. accepting terminal messages) on the host. In any case the
  720. mail data is entered into the user's mailbox. The mail
  721. transaction is successful if the message is delivered the
  722. mailbox.
  723.  
  724.  
  725.  
  726. Postel [Page 11]
  727.  
  728.  
  729. August 1982 RFC 821
  730. Simple Mail Transfer Protocol
  731.  
  732.  
  733.  
  734. The same reply codes that are used for the MAIL commands are used
  735. for these commands.
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743.  
  744.  
  745.  
  746.  
  747.  
  748.  
  749.  
  750.  
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783. [Page 12] Postel
  784.  
  785.  
  786. RFC 821 August 1982
  787. Simple Mail Transfer Protocol
  788.  
  789.  
  790.  
  791. 3.5. OPENING AND CLOSING
  792.  
  793. At the time the transmission channel is opened there is an
  794. exchange to ensure that the hosts are communicating with the hosts
  795. they think they are.
  796.  
  797. The following two commands are used in transmission channel
  798. opening and closing:
  799.  
  800. HELO <SP> <domain> <CRLF>
  801.  
  802. QUIT <CRLF>
  803.  
  804. In the HELO command the host sending the command identifies
  805. itself; the command may be interpreted as saying "Hello, I am
  806. <domain>".
  807.  
  808. -------------------------------------------------------------
  809.  
  810. Example of Connection Opening
  811.  
  812. R: 220 BBN-UNIX.ARPA Simple Mail Transfer Service Ready
  813. S: HELO USC-ISIF.ARPA
  814. R: 250 BBN-UNIX.ARPA
  815.  
  816. Example 5
  817.  
  818. -------------------------------------------------------------
  819.  
  820. -------------------------------------------------------------
  821.  
  822. Example of Connection Closing
  823.  
  824. S: QUIT
  825. R: 221 BBN-UNIX.ARPA Service closing transmission channel
  826.  
  827. Example 6
  828.  
  829. -------------------------------------------------------------
  830.  
  831.  
  832.  
  833.  
  834.  
  835.  
  836.  
  837.  
  838.  
  839.  
  840. Postel [Page 13]
  841.  
  842.  
  843. August 1982 RFC 821
  844. Simple Mail Transfer Protocol
  845.  
  846.  
  847.  
  848. 3.6. RELAYING
  849.  
  850. The forward-path may be a source route of the form
  851. "@ONE,@TWO:JOE@THREE", where ONE, TWO, and THREE are hosts. This
  852. form is used to emphasize the distinction between an address and a
  853. route. The mailbox is an absolute address, and the route is
  854. information about how to get there. The two concepts should not
  855. be confused.
  856.  
  857. Conceptually the elements of the forward-path are moved to the
  858. reverse-path as the message is relayed from one server-SMTP to
  859. another. The reverse-path is a reverse source route, (i.e., a
  860. source route from the current location of the message to the
  861. originator of the message). When a server-SMTP deletes its
  862. identifier from the forward-path and inserts it into the
  863. reverse-path, it must use the name it is known by in the
  864. environment it is sending into, not the environment the mail came
  865. from, in case the server-SMTP is known by different names in
  866. different environments.
  867.  
  868. If when the message arrives at an SMTP the first element of the
  869. forward-path is not the identifier of that SMTP the element is not
  870. deleted from the forward-path and is used to determine the next
  871. SMTP to send the message to. In any case, the SMTP adds its own
  872. identifier to the reverse-path.
  873.  
  874. Using source routing the receiver-SMTP receives mail to be relayed
  875. to another server-SMTP The receiver-SMTP may accept or reject the
  876. task of relaying the mail in the same way it accepts or rejects
  877. mail for a local user. The receiver-SMTP transforms the command
  878. arguments by moving its own identifier from the forward-path to
  879. the beginning of the reverse-path. The receiver-SMTP then becomes
  880. a sender-SMTP, establishes a transmission channel to the next SMTP
  881. in the forward-path, and sends it the mail.
  882.  
  883. The first host in the reverse-path should be the host sending the
  884. SMTP commands, and the first host in the forward-path should be
  885. the host receiving the SMTP commands.
  886.  
  887. Notice that the forward-path and reverse-path appear in the SMTP
  888. commands and replies, but not necessarily in the message. That
  889. is, there is no need for these paths and especially this syntax to
  890. appear in the "To:" , "From:", "CC:", etc. fields of the message
  891. header.
  892.  
  893. If a server-SMTP has accepted the task of relaying the mail and
  894.  
  895.  
  896.  
  897. [Page 14] Postel
  898.  
  899.  
  900. RFC 821 August 1982
  901. Simple Mail Transfer Protocol
  902.  
  903.  
  904.  
  905. later finds that the forward-path is incorrect or that the mail
  906. cannot be delivered for whatever reason, then it must construct an
  907. "undeliverable mail" notification message and send it to the
  908. originator of the undeliverable mail (as indicated by the
  909. reverse-path).
  910.  
  911. This notification message must be from the server-SMTP at this
  912. host. Of course, server-SMTPs should not send notification
  913. messages about problems with notification messages. One way to
  914. prevent loops in error reporting is to specify a null reverse-path
  915. in the MAIL command of a notification message. When such a
  916. message is relayed it is permissible to leave the reverse-path
  917. null. A MAIL command with a null reverse-path appears as follows:
  918.  
  919. MAIL FROM:<>
  920.  
  921. An undeliverable mail notification message is shown in example 7.
  922. This notification is in response to a message originated by JOE at
  923. HOSTW and sent via HOSTX to HOSTY with instructions to relay it on
  924. to HOSTZ. What we see in the example is the transaction between
  925. HOSTY and HOSTX, which is the first step in the return of the
  926. notification message.
  927.  
  928.  
  929.  
  930.  
  931.  
  932.  
  933.  
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954. Postel [Page 15]
  955.  
  956.  
  957. August 1982 RFC 821
  958. Simple Mail Transfer Protocol
  959.  
  960.  
  961.  
  962. -------------------------------------------------------------
  963.  
  964. Example Undeliverable Mail Notification Message
  965.  
  966. S: MAIL FROM:<>
  967. R: 250 ok
  968. S: RCPT TO:<@HOSTX.ARPA:[email protected]>
  969. R: 250 ok
  970. S: DATA
  971. R: 354 send the mail data, end with .
  972. S: Date: 23 Oct 81 11:22:33
  973. S: Subject: Mail System Problem
  974. S:
  975. S: Sorry JOE, your message to [email protected] lost.
  976. S: HOSTZ.ARPA said this:
  977. S: "550 No Such User"
  978. S: .
  979. R: 250 ok
  980.  
  981. Example 7
  982.  
  983. -------------------------------------------------------------
  984.  
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997.  
  998.  
  999.  
  1000.  
  1001.  
  1002.  
  1003.  
  1004.  
  1005.  
  1006.  
  1007.  
  1008.  
  1009. [Page 16] Postel
  1010.  
  1011.  
  1012. RFC 821 August 1982
  1013. Simple Mail Transfer Protocol
  1014.  
  1015.  
  1016.  
  1017. 3.7. DOMAINS
  1018.  
  1019. Domains are a recently introduced concept in the ARPA Internet
  1020. mail system. The use of domains changes the address space from a
  1021. flat global space of simple character string host names to a
  1022. hierarchically structured rooted tree of global addresses. The
  1023. host name is replaced by a domain and host designator which is a
  1024. sequence of domain element strings separated by periods with the
  1025. understanding that the domain elements are ordered from the most
  1026. specific to the most general.
  1027.  
  1028. For example, "USC-ISIF.ARPA", "Fred.Cambridge.UK", and
  1029. "PC7.LCS.MIT.ARPA" might be host-and-domain identifiers.
  1030.  
  1031. Whenever domain names are used in SMTP only the official names are
  1032. used, the use of nicknames or aliases is not allowed.
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066. Postel [Page 17]
  1067.  
  1068.  
  1069. August 1982 RFC 821
  1070. Simple Mail Transfer Protocol
  1071.  
  1072.  
  1073.  
  1074. 3.8. CHANGING ROLES
  1075.  
  1076. The TURN command may be used to reverse the roles of the two
  1077. programs communicating over the transmission channel.
  1078.  
  1079. If program-A is currently the sender-SMTP and it sends the TURN
  1080. command and receives an ok reply (250) then program-A becomes the
  1081. receiver-SMTP.
  1082.  
  1083. If program-B is currently the receiver-SMTP and it receives the
  1084. TURN command and sends an ok reply (250) then program-B becomes
  1085. the sender-SMTP.
  1086.  
  1087. To refuse to change roles the receiver sends the 502 reply.
  1088.  
  1089. Please note that this command is optional. It would not normally
  1090. be used in situations where the transmission channel is TCP.
  1091. However, when the cost of establishing the transmission channel is
  1092. high, this command may be quite useful. For example, this command
  1093. may be useful in supporting be mail exchange using the public
  1094. switched telephone system as a transmission channel, especially if
  1095. some hosts poll other hosts for mail exchanges.
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120.  
  1121.  
  1122.  
  1123. [Page 18] Postel
  1124.  
  1125.  
  1126. RFC 821 August 1982
  1127. Simple Mail Transfer Protocol
  1128.  
  1129.  
  1130.  
  1131. 4. THE SMTP SPECIFICATIONS
  1132.  
  1133. 4.1. SMTP COMMANDS
  1134.  
  1135. 4.1.1. COMMAND SEMANTICS
  1136.  
  1137. The SMTP commands define the mail transfer or the mail system
  1138. function requested by the user. SMTP commands are character
  1139. strings terminated by <CRLF>. The command codes themselves are
  1140. alphabetic characters terminated by <SP> if parameters follow
  1141. and <CRLF> otherwise. The syntax of mailboxes must conform to
  1142. receiver site conventions. The SMTP commands are discussed
  1143. below. The SMTP replies are discussed in the Section 4.2.
  1144.  
  1145. A mail transaction involves several data objects which are
  1146. communicated as arguments to different commands. The
  1147. reverse-path is the argument of the MAIL command, the
  1148. forward-path is the argument of the RCPT command, and the mail
  1149. data is the argument of the DATA command. These arguments or
  1150. data objects must be transmitted and held pending the
  1151. confirmation communicated by the end of mail data indication
  1152. which finalizes the transaction. The model for this is that
  1153. distinct buffers are provided to hold the types of data
  1154. objects, that is, there is a reverse-path buffer, a
  1155. forward-path buffer, and a mail data buffer. Specific commands
  1156. cause information to be appended to a specific buffer, or cause
  1157. one or more buffers to be cleared.
  1158.  
  1159. HELLO (HELO)
  1160.  
  1161. This command is used to identify the sender-SMTP to the
  1162. receiver-SMTP. The argument field contains the host name of
  1163. the sender-SMTP.
  1164.  
  1165. The receiver-SMTP identifies itself to the sender-SMTP in
  1166. the connection greeting reply, and in the response to this
  1167. command.
  1168.  
  1169. This command and an OK reply to it confirm that both the
  1170. sender-SMTP and the receiver-SMTP are in the initial state,
  1171. that is, there is no transaction in progress and all state
  1172. tables and buffers are cleared.
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180. Postel [Page 19]
  1181.  
  1182.  
  1183. August 1982 RFC 821
  1184. Simple Mail Transfer Protocol
  1185.  
  1186.  
  1187.  
  1188. MAIL (MAIL)
  1189.  
  1190. This command is used to initiate a mail transaction in which
  1191. the mail data is delivered to one or more mailboxes. The
  1192. argument field contains a reverse-path.
  1193.  
  1194. The reverse-path consists of an optional list of hosts and
  1195. the sender mailbox. When the list of hosts is present, it
  1196. is a "reverse" source route and indicates that the mail was
  1197. relayed through each host on the list (the first host in the
  1198. list was the most recent relay). This list is used as a
  1199. source route to return non-delivery notices to the sender.
  1200. As each relay host adds itself to the beginning of the list,
  1201. it must use its name as known in the IPCE to which it is
  1202. relaying the mail rather than the IPCE from which the mail
  1203. came (if they are different). In some types of error
  1204. reporting messages (for example, undeliverable mail
  1205. notifications) the reverse-path may be null (see Example 7).
  1206.  
  1207. This command clears the reverse-path buffer, the
  1208. forward-path buffer, and the mail data buffer; and inserts
  1209. the reverse-path information from this command into the
  1210. reverse-path buffer.
  1211.  
  1212. RECIPIENT (RCPT)
  1213.  
  1214. This command is used to identify an individual recipient of
  1215. the mail data; multiple recipients are specified by multiple
  1216. use of this command.
  1217.  
  1218. The forward-path consists of an optional list of hosts and a
  1219. required destination mailbox. When the list of hosts is
  1220. present, it is a source route and indicates that the mail
  1221. must be relayed to the next host on the list. If the
  1222. receiver-SMTP does not implement the relay function it may
  1223. user the same reply it would for an unknown local user
  1224. (550).
  1225.  
  1226. When mail is relayed, the relay host must remove itself from
  1227. the beginning forward-path and put itself at the beginning
  1228. of the reverse-path. When mail reaches its ultimate
  1229. destination (the forward-path contains only a destination
  1230. mailbox), the receiver-SMTP inserts it into the destination
  1231. mailbox in accordance with its host mail conventions.
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237. [Page 20] Postel
  1238.  
  1239.  
  1240. RFC 821 August 1982
  1241. Simple Mail Transfer Protocol
  1242.  
  1243.  
  1244.  
  1245. For example, mail received at relay host A with arguments
  1246.  
  1247. TO:<@HOSTA.ARPA,@HOSTB.ARPA:[email protected]>
  1248.  
  1249. will be relayed on to host B with arguments
  1250.  
  1251. FROM:<@HOSTA.ARPA:[email protected]>
  1252. TO:<@HOSTB.ARPA:[email protected]>.
  1253.  
  1254. This command causes its forward-path argument to be appended
  1255. to the forward-path buffer.
  1256.  
  1257. DATA (DATA)
  1258.  
  1259. The receiver treats the lines following the command as mail
  1260. data from the sender. This command causes the mail data
  1261. from this command to be appended to the mail data buffer.
  1262. The mail data may contain any of the 128 ASCII character
  1263. codes.
  1264.  
  1265. The mail data is terminated by a line containing only a
  1266. period, that is the character sequence "<CRLF>.<CRLF>" (see
  1267. Section 4.5.2 on Transparency). This is the end of mail
  1268. data indication.
  1269.  
  1270. The end of mail data indication requires that the receiver
  1271. must now process the stored mail transaction information.
  1272. This processing consumes the information in the reverse-path
  1273. buffer, the forward-path buffer, and the mail data buffer,
  1274. and on the completion of this command these buffers are
  1275. cleared. If the processing is successful the receiver must
  1276. send an OK reply. If the processing fails completely the
  1277. receiver must send a failure reply.
  1278.  
  1279. When the receiver-SMTP accepts a message either for relaying
  1280. or for final delivery it inserts at the beginning of the
  1281. mail data a time stamp line. The time stamp line indicates
  1282. the identity of the host that sent the message, and the
  1283. identity of the host that received the message (and is
  1284. inserting this time stamp), and the date and time the
  1285. message was received. Relayed messages will have multiple
  1286. time stamp lines.
  1287.  
  1288. When the receiver-SMTP makes the "final delivery" of a
  1289. message it inserts at the beginning of the mail data a
  1290.  
  1291.  
  1292.  
  1293. Postel [Page 21]
  1294.  
  1295.  
  1296. August 1982 RFC 821
  1297. Simple Mail Transfer Protocol
  1298.  
  1299.  
  1300.  
  1301. return path line. The return path line preserves the
  1302. information in the <reverse-path> from the MAIL command.
  1303. Here, final delivery means the message leaves the SMTP
  1304. world. Normally, this would mean it has been delivered to
  1305. the destination user, but in some cases it may be further
  1306. processed and transmitted by another mail system.
  1307.  
  1308. It is possible for the mailbox in the return path be
  1309. different from the actual sender's mailbox, for example,
  1310. if error responses are to be delivered a special error
  1311. handling mailbox rather than the message senders.
  1312.  
  1313. The preceding two paragraphs imply that the final mail data
  1314. will begin with a return path line, followed by one or more
  1315. time stamp lines. These lines will be followed by the mail
  1316. data header and body [2]. See Example 8.
  1317.  
  1318. Special mention is needed of the response and further action
  1319. required when the processing following the end of mail data
  1320. indication is partially successful. This could arise if
  1321. after accepting several recipients and the mail data, the
  1322. receiver-SMTP finds that the mail data can be successfully
  1323. delivered to some of the recipients, but it cannot be to
  1324. others (for example, due to mailbox space allocation
  1325. problems). In such a situation, the response to the DATA
  1326. command must be an OK reply. But, the receiver-SMTP must
  1327. compose and send an "undeliverable mail" notification
  1328. message to the originator of the message. Either a single
  1329. notification which lists all of the recipients that failed
  1330. to get the message, or separate notification messages must
  1331. be sent for each failed recipient (see Example 7). All
  1332. undeliverable mail notification messages are sent using the
  1333. MAIL command (even if they result from processing a SEND,
  1334. SOML, or SAML command).
  1335.  
  1336.  
  1337.  
  1338.  
  1339.  
  1340.  
  1341.  
  1342.  
  1343.  
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350. [Page 22] Postel
  1351.  
  1352.  
  1353. RFC 821 August 1982
  1354. Simple Mail Transfer Protocol
  1355.  
  1356.  
  1357.  
  1358. -------------------------------------------------------------
  1359.  
  1360. Example of Return Path and Received Time Stamps
  1361.  
  1362. Return-Path: <@GHI.ARPA,@DEF.ARPA,@ABC.ARPA:[email protected]>
  1363. Received: from GHI.ARPA by JKL.ARPA ; 27 Oct 81 15:27:39 PST
  1364. Received: from DEF.ARPA by GHI.ARPA ; 27 Oct 81 15:15:13 PST
  1365. Received: from ABC.ARPA by DEF.ARPA ; 27 Oct 81 15:01:59 PST
  1366. Date: 27 Oct 81 15:01:01 PST
  1367. Subject: Improved Mailing System Installed
  1368.  
  1369. This is to inform you that ...
  1370.  
  1371. Example 8
  1372.  
  1373. -------------------------------------------------------------
  1374.  
  1375. SEND (SEND)
  1376.  
  1377. This command is used to initiate a mail transaction in which
  1378. the mail data is delivered to one or more terminals. The
  1379. argument field contains a reverse-path. This command is
  1380. successful if the message is delivered to a terminal.
  1381.  
  1382. The reverse-path consists of an optional list of hosts and
  1383. the sender mailbox. When the list of hosts is present, it
  1384. is a "reverse" source route and indicates that the mail was
  1385. relayed through each host on the list (the first host in the
  1386. list was the most recent relay). This list is used as a
  1387. source route to return non-delivery notices to the sender.
  1388. As each relay host adds itself to the beginning of the list,
  1389. it must use its name as known in the IPCE to which it is
  1390. relaying the mail rather than the IPCE from which the mail
  1391. came (if they are different).
  1392.  
  1393. This command clears the reverse-path buffer, the
  1394. forward-path buffer, and the mail data buffer; and inserts
  1395. the reverse-path information from this command into the
  1396. reverse-path buffer.
  1397.  
  1398. SEND OR MAIL (SOML)
  1399.  
  1400. This command is used to initiate a mail transaction in which
  1401. the mail data is delivered to one or more terminals or
  1402.  
  1403.  
  1404.  
  1405. Postel [Page 23]
  1406.  
  1407.  
  1408. August 1982 RFC 821
  1409. Simple Mail Transfer Protocol
  1410.  
  1411.  
  1412.  
  1413. mailboxes. For each recipient the mail data is delivered to
  1414. the recipient's terminal if the recipient is active on the
  1415. host (and accepting terminal messages), otherwise to the
  1416. recipient's mailbox. The argument field contains a
  1417. reverse-path. This command is successful if the message is
  1418. delivered to a terminal or the mailbox.
  1419.  
  1420. The reverse-path consists of an optional list of hosts and
  1421. the sender mailbox. When the list of hosts is present, it
  1422. is a "reverse" source route and indicates that the mail was
  1423. relayed through each host on the list (the first host in the
  1424. list was the most recent relay). This list is used as a
  1425. source route to return non-delivery notices to the sender.
  1426. As each relay host adds itself to the beginning of the list,
  1427. it must use its name as known in the IPCE to which it is
  1428. relaying the mail rather than the IPCE from which the mail
  1429. came (if they are different).
  1430.  
  1431. This command clears the reverse-path buffer, the
  1432. forward-path buffer, and the mail data buffer; and inserts
  1433. the reverse-path information from this command into the
  1434. reverse-path buffer.
  1435.  
  1436. SEND AND MAIL (SAML)
  1437.  
  1438. This command is used to initiate a mail transaction in which
  1439. the mail data is delivered to one or more terminals and
  1440. mailboxes. For each recipient the mail data is delivered to
  1441. the recipient's terminal if the recipient is active on the
  1442. host (and accepting terminal messages), and for all
  1443. recipients to the recipient's mailbox. The argument field
  1444. contains a reverse-path. This command is successful if the
  1445. message is delivered to the mailbox.
  1446.  
  1447. The reverse-path consists of an optional list of hosts and
  1448. the sender mailbox. When the list of hosts is present, it
  1449. is a "reverse" source route and indicates that the mail was
  1450. relayed through each host on the list (the first host in the
  1451. list was the most recent relay). This list is used as a
  1452. source route to return non-delivery notices to the sender.
  1453. As each relay host adds itself to the beginning of the list,
  1454. it must use its name as known in the IPCE to which it is
  1455. relaying the mail rather than the IPCE from which the mail
  1456. came (if they are different).
  1457.  
  1458. This command clears the reverse-path buffer, the
  1459.  
  1460.  
  1461.  
  1462. [Page 24] Postel
  1463.  
  1464.  
  1465. RFC 821 August 1982
  1466. Simple Mail Transfer Protocol
  1467.  
  1468.  
  1469.  
  1470. forward-path buffer, and the mail data buffer; and inserts
  1471. the reverse-path information from this command into the
  1472. reverse-path buffer.
  1473.  
  1474. RESET (RSET)
  1475.  
  1476. This command specifies that the current mail transaction is
  1477. to be aborted. Any stored sender, recipients, and mail data
  1478. must be discarded, and all buffers and state tables cleared.
  1479. The receiver must send an OK reply.
  1480.  
  1481. VERIFY (VRFY)
  1482.  
  1483. This command asks the receiver to confirm that the argument
  1484. identifies a user. If it is a user name, the full name of
  1485. the user (if known) and the fully specified mailbox are
  1486. returned.
  1487.  
  1488. This command has no effect on any of the reverse-path
  1489. buffer, the forward-path buffer, or the mail data buffer.
  1490.  
  1491. EXPAND (EXPN)
  1492.  
  1493. This command asks the receiver to confirm that the argument
  1494. identifies a mailing list, and if so, to return the
  1495. membership of that list. The full name of the users (if
  1496. known) and the fully specified mailboxes are returned in a
  1497. multiline reply.
  1498.  
  1499. This command has no effect on any of the reverse-path
  1500. buffer, the forward-path buffer, or the mail data buffer.
  1501.  
  1502. HELP (HELP)
  1503.  
  1504. This command causes the receiver to send helpful information
  1505. to the sender of the HELP command. The command may take an
  1506. argument (e.g., any command name) and return more specific
  1507. information as a response.
  1508.  
  1509. This command has no effect on any of the reverse-path
  1510. buffer, the forward-path buffer, or the mail data buffer.
  1511.  
  1512.  
  1513.  
  1514.  
  1515.  
  1516.  
  1517.  
  1518.  
  1519. Postel [Page 25]
  1520.  
  1521.  
  1522. August 1982 RFC 821
  1523. Simple Mail Transfer Protocol
  1524.  
  1525.  
  1526.  
  1527. NOOP (NOOP)
  1528.  
  1529. This command does not affect any parameters or previously
  1530. entered commands. It specifies no action other than that
  1531. the receiver send an OK reply.
  1532.  
  1533. This command has no effect on any of the reverse-path
  1534. buffer, the forward-path buffer, or the mail data buffer.
  1535.  
  1536. QUIT (QUIT)
  1537.  
  1538. This command specifies that the receiver must send an OK
  1539. reply, and then close the transmission channel.
  1540.  
  1541. The receiver should not close the transmission channel until
  1542. it receives and replies to a QUIT command (even if there was
  1543. an error). The sender should not close the transmission
  1544. channel until it send a QUIT command and receives the reply
  1545. (even if there was an error response to a previous command).
  1546. If the connection is closed prematurely the receiver should
  1547. act as if a RSET command had been received (canceling any
  1548. pending transaction, but not undoing any previously
  1549. completed transaction), the sender should act as if the
  1550. command or transaction in progress had received a temporary
  1551. error (4xx).
  1552.  
  1553. TURN (TURN)
  1554.  
  1555. This command specifies that the receiver must either (1)
  1556. send an OK reply and then take on the role of the
  1557. sender-SMTP, or (2) send a refusal reply and retain the role
  1558. of the receiver-SMTP.
  1559.  
  1560. If program-A is currently the sender-SMTP and it sends the
  1561. TURN command and receives an OK reply (250) then program-A
  1562. becomes the receiver-SMTP. Program-A is then in the initial
  1563. state as if the transmission channel just opened, and it
  1564. then sends the 220 service ready greeting.
  1565.  
  1566. If program-B is currently the receiver-SMTP and it receives
  1567. the TURN command and sends an OK reply (250) then program-B
  1568. becomes the sender-SMTP. Program-B is then in the initial
  1569. state as if the transmission channel just opened, and it
  1570. then expects to receive the 220 service ready greeting.
  1571.  
  1572. To refuse to change roles the receiver sends the 502 reply.
  1573.  
  1574.  
  1575.  
  1576. [Page 26] Postel
  1577.  
  1578.  
  1579. RFC 821 August 1982
  1580. Simple Mail Transfer Protocol
  1581.  
  1582.  
  1583.  
  1584. There are restrictions on the order in which these command may
  1585. be used.
  1586.  
  1587. The first command in a session must be the HELO command.
  1588. The HELO command may be used later in a session as well. If
  1589. the HELO command argument is not acceptable a 501 failure
  1590. reply must be returned and the receiver-SMTP must stay in
  1591. the same state.
  1592.  
  1593. The NOOP, HELP, EXPN, and VRFY commands can be used at any
  1594. time during a session.
  1595.  
  1596. The MAIL, SEND, SOML, or SAML commands begin a mail
  1597. transaction. Once started a mail transaction consists of
  1598. one of the transaction beginning commands, one or more RCPT
  1599. commands, and a DATA command, in that order. A mail
  1600. transaction may be aborted by the RSET command. There may
  1601. be zero or more transactions in a session.
  1602.  
  1603. If the transaction beginning command argument is not
  1604. acceptable a 501 failure reply must be returned and the
  1605. receiver-SMTP must stay in the same state. If the commands
  1606. in a transaction are out of order a 503 failure reply must
  1607. be returned and the receiver-SMTP must stay in the same
  1608. state.
  1609.  
  1610. The last command in a session must be the QUIT command. The
  1611. QUIT command can not be used at any other time in a session.
  1612.  
  1613. 4.1.2. COMMAND SYNTAX
  1614.  
  1615. The commands consist of a command code followed by an argument
  1616. field. Command codes are four alphabetic characters. Upper
  1617. and lower case alphabetic characters are to be treated
  1618. identically. Thus, any of the following may represent the mail
  1619. command:
  1620.  
  1621. MAIL Mail mail MaIl mAIl
  1622.  
  1623. This also applies to any symbols representing parameter values,
  1624. such as "TO" or "to" for the forward-path. Command codes and
  1625. the argument fields are separated by one or more spaces.
  1626. However, within the reverse-path and forward-path arguments
  1627. case is important. In particular, in some hosts the user
  1628. "smith" is different from the user "Smith".
  1629.  
  1630.  
  1631.  
  1632.  
  1633. Postel [Page 27]
  1634.  
  1635.  
  1636. August 1982 RFC 821
  1637. Simple Mail Transfer Protocol
  1638.  
  1639.  
  1640.  
  1641. The argument field consists of a variable length character
  1642. string ending with the character sequence <CRLF>. The receiver
  1643. is to take no action until this sequence is received.
  1644.  
  1645. Square brackets denote an optional argument field. If the
  1646. option is not taken, the appropriate default is implied.
  1647.  
  1648.  
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654.  
  1655.  
  1656.  
  1657.  
  1658.  
  1659.  
  1660.  
  1661.  
  1662.  
  1663.  
  1664.  
  1665.  
  1666.  
  1667.  
  1668.  
  1669.  
  1670.  
  1671.  
  1672.  
  1673.  
  1674.  
  1675.  
  1676.  
  1677.  
  1678.  
  1679.  
  1680.  
  1681.  
  1682.  
  1683.  
  1684.  
  1685.  
  1686.  
  1687.  
  1688.  
  1689.  
  1690. [Page 28] Postel
  1691.  
  1692.  
  1693. RFC 821 August 1982
  1694. Simple Mail Transfer Protocol
  1695.  
  1696.  
  1697.  
  1698. The following are the SMTP commands:
  1699.  
  1700. HELO <SP> <domain> <CRLF>
  1701.  
  1702. MAIL <SP> FROM:<reverse-path> <CRLF>
  1703.  
  1704. RCPT <SP> TO:<forward-path> <CRLF>
  1705.  
  1706. DATA <CRLF>
  1707.  
  1708. RSET <CRLF>
  1709.  
  1710. SEND <SP> FROM:<reverse-path> <CRLF>
  1711.  
  1712. SOML <SP> FROM:<reverse-path> <CRLF>
  1713.  
  1714. SAML <SP> FROM:<reverse-path> <CRLF>
  1715.  
  1716. VRFY <SP> <string> <CRLF>
  1717.  
  1718. EXPN <SP> <string> <CRLF>
  1719.  
  1720. HELP [<SP> <string>] <CRLF>
  1721.  
  1722. NOOP <CRLF>
  1723.  
  1724. QUIT <CRLF>
  1725.  
  1726. TURN <CRLF>
  1727.  
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734.  
  1735.  
  1736.  
  1737.  
  1738.  
  1739.  
  1740.  
  1741.  
  1742.  
  1743.  
  1744.  
  1745.  
  1746.  
  1747. Postel [Page 29]
  1748.  
  1749.  
  1750. August 1982 RFC 821
  1751. Simple Mail Transfer Protocol
  1752.  
  1753.  
  1754.  
  1755. The syntax of the above argument fields (using BNF notation
  1756. where applicable) is given below. The "..." notation indicates
  1757. that a field may be repeated one or more times.
  1758.  
  1759. <reverse-path> ::= <path>
  1760.  
  1761. <forward-path> ::= <path>
  1762.  
  1763. <path> ::= "<" [ <a-d-l> ":" ] <mailbox> ">"
  1764.  
  1765. <a-d-l> ::= <at-domain> | <at-domain> "," <a-d-l>
  1766.  
  1767. <at-domain> ::= "@" <domain>
  1768.  
  1769. <domain> ::= <element> | <element> "." <domain>
  1770.  
  1771. <element> ::= <name> | "#" <number> | "[" <dotnum> "]"
  1772.  
  1773. <mailbox> ::= <local-part> "@" <domain>
  1774.  
  1775. <local-part> ::= <dot-string> | <quoted-string>
  1776.  
  1777. <name> ::= <a> <ldh-str> <let-dig>
  1778.  
  1779. <ldh-str> ::= <let-dig-hyp> | <let-dig-hyp> <ldh-str>
  1780.  
  1781. <let-dig> ::= <a> | <d>
  1782.  
  1783. <let-dig-hyp> ::= <a> | <d> | "-"
  1784.  
  1785. <dot-string> ::= <string> | <string> "." <dot-string>
  1786.  
  1787. <string> ::= <char> | <char> <string>
  1788.  
  1789. <quoted-string> ::= """ <qtext> """
  1790.  
  1791. <qtext> ::= "\" <x> | "\" <x> <qtext> | <q> | <q> <qtext>
  1792.  
  1793. <char> ::= <c> | "\" <x>
  1794.  
  1795. <dotnum> ::= <snum> "." <snum> "." <snum> "." <snum>
  1796.  
  1797. <number> ::= <d> | <d> <number>
  1798.  
  1799. <CRLF> ::= <CR> <LF>
  1800.  
  1801.  
  1802.  
  1803.  
  1804. [Page 30] Postel
  1805.  
  1806.  
  1807. RFC 821 August 1982
  1808. Simple Mail Transfer Protocol
  1809.  
  1810.  
  1811.  
  1812. <CR> ::= the carriage return character (ASCII code 13)
  1813.  
  1814. <LF> ::= the line feed character (ASCII code 10)
  1815.  
  1816. <SP> ::= the space character (ASCII code 32)
  1817.  
  1818. <snum> ::= one, two, or three digits representing a decimal
  1819. integer value in the range 0 through 255
  1820.  
  1821. <a> ::= any one of the 52 alphabetic characters A through Z
  1822. in upper case and a through z in lower case
  1823.  
  1824. <c> ::= any one of the 128 ASCII characters, but not any
  1825. <special> or <SP>
  1826.  
  1827. <d> ::= any one of the ten digits 0 through 9
  1828.  
  1829. <q> ::= any one of the 128 ASCII characters except <CR>,
  1830. <LF>, quote ("), or backslash (\)
  1831.  
  1832. <x> ::= any one of the 128 ASCII characters (no exceptions)
  1833.  
  1834. <special> ::= "<" | ">" | "(" | ")" | "[" | "]" | "\" | "."
  1835. | "," | ";" | ":" | "@" """ | the control
  1836. characters (ASCII codes 0 through 31 inclusive and
  1837. 127)
  1838.  
  1839. Note that the backslash, "\", is a quote character, which is
  1840. used to indicate that the next character is to be used
  1841. literally (instead of its normal interpretation). For example,
  1842. "Joe\,Smith" could be used to indicate a single nine character
  1843. user field with comma being the fourth character of the field.
  1844.  
  1845. Hosts are generally known by names which are translated to
  1846. addresses in each host. Note that the name elements of domains
  1847. are the official names -- no use of nicknames or aliases is
  1848. allowed.
  1849.  
  1850. Sometimes a host is not known to the translation function and
  1851. communication is blocked. To bypass this barrier two numeric
  1852. forms are also allowed for host "names". One form is a decimal
  1853. integer prefixed by a pound sign, "#", which indicates the
  1854. number is the address of the host. Another form is four small
  1855. decimal integers separated by dots and enclosed by brackets,
  1856. e.g., "[123.255.37.2]", which indicates a 32-bit ARPA Internet
  1857. Address in four 8-bit fields.
  1858.  
  1859.  
  1860.  
  1861. Postel [Page 31]
  1862.  
  1863.  
  1864. August 1982 RFC 821
  1865. Simple Mail Transfer Protocol
  1866.  
  1867.  
  1868.  
  1869. The time stamp line and the return path line are formally
  1870. defined as follows:
  1871.  
  1872. <return-path-line> ::= "Return-Path:" <SP><reverse-path><CRLF>
  1873.  
  1874. <time-stamp-line> ::= "Received:" <SP> <stamp> <CRLF>
  1875.  
  1876. <stamp> ::= <from-domain> <by-domain> <opt-info> ";"
  1877. <daytime>
  1878.  
  1879. <from-domain> ::= "FROM" <SP> <domain> <SP>
  1880.  
  1881. <by-domain> ::= "BY" <SP> <domain> <SP>
  1882.  
  1883. <opt-info> ::= [<via>] [<with>] [<id>] [<for>]
  1884.  
  1885. <via> ::= "VIA" <SP> <link> <SP>
  1886.  
  1887. <with> ::= "WITH" <SP> <protocol> <SP>
  1888.  
  1889. <id> ::= "ID" <SP> <string> <SP>
  1890.  
  1891. <for> ::= "FOR" <SP> <path> <SP>
  1892.  
  1893. <link> ::= The standard names for links are registered with
  1894. the Network Information Center.
  1895.  
  1896. <protocol> ::= The standard names for protocols are
  1897. registered with the Network Information Center.
  1898.  
  1899. <daytime> ::= <SP> <date> <SP> <time>
  1900.  
  1901. <date> ::= <dd> <SP> <mon> <SP> <yy>
  1902.  
  1903. <time> ::= <hh> ":" <mm> ":" <ss> <SP> <zone>
  1904.  
  1905. <dd> ::= the one or two decimal integer day of the month in
  1906. the range 1 to 31.
  1907.  
  1908. <mon> ::= "JAN" | "FEB" | "MAR" | "APR" | "MAY" | "JUN" |
  1909. "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC"
  1910.  
  1911. <yy> ::= the two decimal integer year of the century in the
  1912. range 00 to 99.
  1913.  
  1914.  
  1915.  
  1916.  
  1917.  
  1918. [Page 32] Postel
  1919.  
  1920.  
  1921. RFC 821 August 1982
  1922. Simple Mail Transfer Protocol
  1923.  
  1924.  
  1925.  
  1926. <hh> ::= the two decimal integer hour of the day in the
  1927. range 00 to 24.
  1928.  
  1929. <mm> ::= the two decimal integer minute of the hour in the
  1930. range 00 to 59.
  1931.  
  1932. <ss> ::= the two decimal integer second of the minute in the
  1933. range 00 to 59.
  1934.  
  1935. <zone> ::= "UT" for Universal Time (the default) or other
  1936. time zone designator (as in [2]).
  1937.  
  1938.  
  1939.  
  1940. -------------------------------------------------------------
  1941.  
  1942. Return Path Example
  1943.  
  1944. Return-Path: <@CHARLIE.ARPA,@BAKER.ARPA:[email protected]>
  1945.  
  1946. Example 9
  1947.  
  1948. -------------------------------------------------------------
  1949.  
  1950. -------------------------------------------------------------
  1951.  
  1952. Time Stamp Line Example
  1953.  
  1954. Received: FROM ABC.ARPA BY XYZ.ARPA ; 22 OCT 81 09:23:59 PDT
  1955.  
  1956. Received: from ABC.ARPA by XYZ.ARPA via TELENET with X25
  1957. id M12345 for [email protected] ; 22 OCT 81 09:23:59 PDT
  1958.  
  1959. Example 10
  1960.  
  1961. -------------------------------------------------------------
  1962.  
  1963.  
  1964.  
  1965.  
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971.  
  1972.  
  1973.  
  1974.  
  1975. Postel [Page 33]
  1976.  
  1977.  
  1978. August 1982 RFC 821
  1979. Simple Mail Transfer Protocol
  1980.  
  1981.  
  1982.  
  1983. 4.2. SMTP REPLIES
  1984.  
  1985. Replies to SMTP commands are devised to ensure the synchronization
  1986. of requests and actions in the process of mail transfer, and to
  1987. guarantee that the sender-SMTP always knows the state of the
  1988. receiver-SMTP. Every command must generate exactly one reply.
  1989.  
  1990. The details of the command-reply sequence are made explicit in
  1991. Section 5.3 on Sequencing and Section 5.4 State Diagrams.
  1992.  
  1993. An SMTP reply consists of a three digit number (transmitted as
  1994. three alphanumeric characters) followed by some text. The number
  1995. is intended for use by automata to determine what state to enter
  1996. next; the text is meant for the human user. It is intended that
  1997. the three digits contain enough encoded information that the
  1998. sender-SMTP need not examine the text and may either discard it or
  1999. pass it on to the user, as appropriate. In particular, the text
  2000. may be receiver-dependent and context dependent, so there are
  2001. likely to be varying texts for each reply code. A discussion of
  2002. the theory of reply codes is given in Appendix E. Formally, a
  2003. reply is defined to be the sequence: a three-digit code, <SP>,
  2004. one line of text, and <CRLF>, or a multiline reply (as defined in
  2005. Appendix E). Only the EXPN and HELP commands are expected to
  2006. result in multiline replies in normal circumstances, however
  2007. multiline replies are allowed for any command.
  2008.  
  2009.  
  2010.  
  2011.  
  2012.  
  2013.  
  2014.  
  2015.  
  2016.  
  2017.  
  2018.  
  2019.  
  2020.  
  2021.  
  2022.  
  2023.  
  2024.  
  2025.  
  2026.  
  2027.  
  2028.  
  2029.  
  2030.  
  2031.  
  2032. [Page 34] Postel
  2033.  
  2034.  
  2035. RFC 821 August 1982
  2036. Simple Mail Transfer Protocol
  2037.  
  2038.  
  2039.  
  2040. 4.2.1. REPLY CODES BY FUNCTION GROUPS
  2041.  
  2042. 500 Syntax error, command unrecognized
  2043. [This may include errors such as command line too long]
  2044. 501 Syntax error in parameters or arguments
  2045. 502 Command not implemented
  2046. 503 Bad sequence of commands
  2047. 504 Command parameter not implemented
  2048.  
  2049. 211 System status, or system help reply
  2050. 214 Help message
  2051. [Information on how to use the receiver or the meaning of a
  2052. particular non-standard command; this reply is useful only
  2053. to the human user]
  2054.  
  2055. 220 <domain> Service ready
  2056. 221 <domain> Service closing transmission channel
  2057. 421 <domain> Service not available,
  2058. closing transmission channel
  2059. [This may be a reply to any command if the service knows it
  2060. must shut down]
  2061.  
  2062. 250 Requested mail action okay, completed
  2063. 251 User not local; will forward to <forward-path>
  2064. 450 Requested mail action not taken: mailbox unavailable
  2065. [E.g., mailbox busy]
  2066. 550 Requested action not taken: mailbox unavailable
  2067. [E.g., mailbox not found, no access]
  2068. 451 Requested action aborted: error in processing
  2069. 551 User not local; please try <forward-path>
  2070. 452 Requested action not taken: insufficient system storage
  2071. 552 Requested mail action aborted: exceeded storage allocation
  2072. 553 Requested action not taken: mailbox name not allowed
  2073. [E.g., mailbox syntax incorrect]
  2074. 354 Start mail input; end with <CRLF>.<CRLF>
  2075. 554 Transaction failed
  2076.  
  2077.  
  2078.  
  2079.  
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085.  
  2086.  
  2087.  
  2088.  
  2089. Postel [Page 35]
  2090.  
  2091.  
  2092. August 1982 RFC 821
  2093. Simple Mail Transfer Protocol
  2094.  
  2095.  
  2096.  
  2097. 4.2.2. NUMERIC ORDER LIST OF REPLY CODES
  2098.  
  2099. 211 System status, or system help reply
  2100. 214 Help message
  2101. [Information on how to use the receiver or the meaning of a
  2102. particular non-standard command; this reply is useful only
  2103. to the human user]
  2104. 220 <domain> Service ready
  2105. 221 <domain> Service closing transmission channel
  2106. 250 Requested mail action okay, completed
  2107. 251 User not local; will forward to <forward-path>
  2108.  
  2109. 354 Start mail input; end with <CRLF>.<CRLF>
  2110.  
  2111. 421 <domain> Service not available,
  2112. closing transmission channel
  2113. [This may be a reply to any command if the service knows it
  2114. must shut down]
  2115. 450 Requested mail action not taken: mailbox unavailable
  2116. [E.g., mailbox busy]
  2117. 451 Requested action aborted: local error in processing
  2118. 452 Requested action not taken: insufficient system storage
  2119.  
  2120. 500 Syntax error, command unrecognized
  2121. [This may include errors such as command line too long]
  2122. 501 Syntax error in parameters or arguments
  2123. 502 Command not implemented
  2124. 503 Bad sequence of commands
  2125. 504 Command parameter not implemented
  2126. 550 Requested action not taken: mailbox unavailable
  2127. [E.g., mailbox not found, no access]
  2128. 551 User not local; please try <forward-path>
  2129. 552 Requested mail action aborted: exceeded storage allocation
  2130. 553 Requested action not taken: mailbox name not allowed
  2131. [E.g., mailbox syntax incorrect]
  2132. 554 Transaction failed
  2133.  
  2134.  
  2135.  
  2136.  
  2137.  
  2138.  
  2139.  
  2140.  
  2141.  
  2142.  
  2143.  
  2144.  
  2145.  
  2146. [Page 36] Postel
  2147.  
  2148.  
  2149. RFC 821 August 1982
  2150. Simple Mail Transfer Protocol
  2151.  
  2152.  
  2153.  
  2154. 4.3. SEQUENCING OF COMMANDS AND REPLIES
  2155.  
  2156. The communication between the sender and receiver is intended to
  2157. be an alternating dialogue, controlled by the sender. As such,
  2158. the sender issues a command and the receiver responds with a
  2159. reply. The sender must wait for this response before sending
  2160. further commands.
  2161.  
  2162. One important reply is the connection greeting. Normally, a
  2163. receiver will send a 220 "Service ready" reply when the connection
  2164. is completed. The sender should wait for this greeting message
  2165. before sending any commands.
  2166.  
  2167. Note: all the greeting type replies have the official name of
  2168. the server host as the first word following the reply code.
  2169.  
  2170. For example,
  2171.  
  2172. 220 <SP> USC-ISIF.ARPA <SP> Service ready <CRLF>
  2173.  
  2174. The table below lists alternative success and failure replies for
  2175. each command. These must be strictly adhered to; a receiver may
  2176. substitute text in the replies, but the meaning and action implied
  2177. by the code numbers and by the specific command reply sequence
  2178. cannot be altered.
  2179.  
  2180. COMMAND-REPLY SEQUENCES
  2181.  
  2182. Each command is listed with its possible replies. The prefixes
  2183. used before the possible replies are "P" for preliminary (not
  2184. used in SMTP), "I" for intermediate, "S" for success, "F" for
  2185. failure, and "E" for error. The 421 reply (service not
  2186. available, closing transmission channel) may be given to any
  2187. command if the SMTP-receiver knows it must shut down. This
  2188. listing forms the basis for the State Diagrams in Section 4.4.
  2189.  
  2190. CONNECTION ESTABLISHMENT
  2191. S: 220
  2192. F: 421
  2193. HELO
  2194. S: 250
  2195. E: 500, 501, 504, 421
  2196. MAIL
  2197. S: 250
  2198. F: 552, 451, 452
  2199. E: 500, 501, 421
  2200.  
  2201.  
  2202.  
  2203. Postel [Page 37]
  2204.  
  2205.  
  2206. August 1982 RFC 821
  2207. Simple Mail Transfer Protocol
  2208.  
  2209.  
  2210.  
  2211. RCPT
  2212. S: 250, 251
  2213. F: 550, 551, 552, 553, 450, 451, 452
  2214. E: 500, 501, 503, 421
  2215. DATA
  2216. I: 354 -> data -> S: 250
  2217. F: 552, 554, 451, 452
  2218. F: 451, 554
  2219. E: 500, 501, 503, 421
  2220. RSET
  2221. S: 250
  2222. E: 500, 501, 504, 421
  2223. SEND
  2224. S: 250
  2225. F: 552, 451, 452
  2226. E: 500, 501, 502, 421
  2227. SOML
  2228. S: 250
  2229. F: 552, 451, 452
  2230. E: 500, 501, 502, 421
  2231. SAML
  2232. S: 250
  2233. F: 552, 451, 452
  2234. E: 500, 501, 502, 421
  2235. VRFY
  2236. S: 250, 251
  2237. F: 550, 551, 553
  2238. E: 500, 501, 502, 504, 421
  2239. EXPN
  2240. S: 250
  2241. F: 550
  2242. E: 500, 501, 502, 504, 421
  2243. HELP
  2244. S: 211, 214
  2245. E: 500, 501, 502, 504, 421
  2246. NOOP
  2247. S: 250
  2248. E: 500, 421
  2249. QUIT
  2250. S: 221
  2251. E: 500
  2252. TURN
  2253. S: 250
  2254. F: 502
  2255. E: 500, 503
  2256.  
  2257.  
  2258.  
  2259.  
  2260. [Page 38] Postel
  2261.  
  2262.  
  2263. RFC 821 August 1982
  2264. Simple Mail Transfer Protocol
  2265.  
  2266.  
  2267.  
  2268. 4.4. STATE DIAGRAMS
  2269.  
  2270. Following are state diagrams for a simple-minded SMTP
  2271. implementation. Only the first digit of the reply codes is used.
  2272. There is one state diagram for each group of SMTP commands. The
  2273. command groupings were determined by constructing a model for each
  2274. command and then collecting together the commands with
  2275. structurally identical models.
  2276.  
  2277. For each command there are three possible outcomes: "success"
  2278. (S), "failure" (F), and "error" (E). In the state diagrams below
  2279. we use the symbol B for "begin", and the symbol W for "wait for
  2280. reply".
  2281.  
  2282. First, the diagram that represents most of the SMTP commands:
  2283.  
  2284.  
  2285. 1,3 +---+
  2286. ----------->| E |
  2287. | +---+
  2288. |
  2289. +---+ cmd +---+ 2 +---+
  2290. | B |---------->| W |---------->| S |
  2291. +---+ +---+ +---+
  2292. |
  2293. | 4,5 +---+
  2294. ----------->| F |
  2295. +---+
  2296.  
  2297.  
  2298. This diagram models the commands:
  2299.  
  2300. HELO, MAIL, RCPT, RSET, SEND, SOML, SAML, VRFY, EXPN, HELP,
  2301. NOOP, QUIT, TURN.
  2302.  
  2303.  
  2304.  
  2305.  
  2306.  
  2307.  
  2308.  
  2309.  
  2310.  
  2311.  
  2312.  
  2313.  
  2314.  
  2315.  
  2316.  
  2317. Postel [Page 39]
  2318.  
  2319.  
  2320. August 1982 RFC 821
  2321. Simple Mail Transfer Protocol
  2322.  
  2323.  
  2324.  
  2325. A more complex diagram models the DATA command:
  2326.  
  2327.  
  2328. +---+ DATA +---+ 1,2 +---+
  2329. | B |---------->| W |-------------------->| E |
  2330. +---+ +---+ ------------>+---+
  2331. 3| |4,5 |
  2332. | | |
  2333. -------------- ----- |
  2334. | | | +---+
  2335. | ---------- -------->| S |
  2336. | | | | +---+
  2337. | | ------------
  2338. | | | |
  2339. V 1,3| |2 |
  2340. +---+ data +---+ --------------->+---+
  2341. | |---------->| W | | F |
  2342. +---+ +---+-------------------->+---+
  2343. 4,5
  2344.  
  2345.  
  2346. Note that the "data" here is a series of lines sent from the
  2347. sender to the receiver with no response expected until the last
  2348. line is sent.
  2349.  
  2350.  
  2351.  
  2352.  
  2353.  
  2354.  
  2355.  
  2356.  
  2357.  
  2358.  
  2359.  
  2360.  
  2361.  
  2362.  
  2363.  
  2364.  
  2365.  
  2366.  
  2367.  
  2368.  
  2369.  
  2370.  
  2371.  
  2372.  
  2373.  
  2374. [Page 40] Postel
  2375.  
  2376.  
  2377. RFC 821 August 1982
  2378. Simple Mail Transfer Protocol
  2379.  
  2380.  
  2381.  
  2382. 4.5. DETAILS
  2383.  
  2384. 4.5.1. MINIMUM IMPLEMENTATION
  2385.  
  2386. In order to make SMTP workable, the following minimum
  2387. implementation is required for all receivers:
  2388.  
  2389. COMMANDS -- HELO
  2390. MAIL
  2391. RCPT
  2392. DATA
  2393. RSET
  2394. NOOP
  2395. QUIT
  2396.  
  2397. 4.5.2. TRANSPARENCY
  2398.  
  2399. Without some provision for data transparency the character
  2400. sequence "<CRLF>.<CRLF>" ends the mail text and cannot be sent
  2401. by the user. In general, users are not aware of such
  2402. "forbidden" sequences. To allow all user composed text to be
  2403. transmitted transparently the following procedures are used.
  2404.  
  2405. 1. Before sending a line of mail text the sender-SMTP checks
  2406. the first character of the line. If it is a period, one
  2407. additional period is inserted at the beginning of the line.
  2408.  
  2409. 2. When a line of mail text is received by the receiver-SMTP
  2410. it checks the line. If the line is composed of a single
  2411. period it is the end of mail. If the first character is a
  2412. period and there are other characters on the line, the first
  2413. character is deleted.
  2414.  
  2415. The mail data may contain any of the 128 ASCII characters. All
  2416. characters are to be delivered to the recipient's mailbox
  2417. including format effectors and other control characters. If
  2418. the transmission channel provides an 8-bit byte (octets) data
  2419. stream, the 7-bit ASCII codes are transmitted right justified
  2420. in the octets with the high order bits cleared to zero.
  2421.  
  2422. In some systems it may be necessary to transform the data as
  2423. it is received and stored. This may be necessary for hosts
  2424. that use a different character set than ASCII as their local
  2425. character set, or that store data in records rather than
  2426.  
  2427.  
  2428.  
  2429.  
  2430.  
  2431. Postel [Page 41]
  2432.  
  2433.  
  2434. August 1982 RFC 821
  2435. Simple Mail Transfer Protocol
  2436.  
  2437.  
  2438.  
  2439. strings. If such transforms are necessary, they must be
  2440. reversible -- especially if such transforms are applied to
  2441. mail being relayed.
  2442.  
  2443. 4.5.3. SIZES
  2444.  
  2445. There are several objects that have required minimum maximum
  2446. sizes. That is, every implementation must be able to receive
  2447. objects of at least these sizes, but must not send objects
  2448. larger than these sizes.
  2449.  
  2450.  
  2451. ****************************************************
  2452. * *
  2453. * TO THE MAXIMUM EXTENT POSSIBLE, IMPLEMENTATION *
  2454. * TECHNIQUES WHICH IMPOSE NO LIMITS ON THE LENGTH *
  2455. * OF THESE OBJECTS SHOULD BE USED. *
  2456. * *
  2457. ****************************************************
  2458.  
  2459. user
  2460.  
  2461. The maximum total length of a user name is 64 characters.
  2462.  
  2463. domain
  2464.  
  2465. The maximum total length of a domain name or number is 64
  2466. characters.
  2467.  
  2468. path
  2469.  
  2470. The maximum total length of a reverse-path or
  2471. forward-path is 256 characters (including the punctuation
  2472. and element separators).
  2473.  
  2474. command line
  2475.  
  2476. The maximum total length of a command line including the
  2477. command word and the <CRLF> is 512 characters.
  2478.  
  2479. reply line
  2480.  
  2481. The maximum total length of a reply line including the
  2482. reply code and the <CRLF> is 512 characters.
  2483.  
  2484.  
  2485.  
  2486.  
  2487.  
  2488. [Page 42] Postel
  2489.  
  2490.  
  2491. RFC 821 August 1982
  2492. Simple Mail Transfer Protocol
  2493.  
  2494.  
  2495.  
  2496. text line
  2497.  
  2498. The maximum total length of a text line including the
  2499. <CRLF> is 1000 characters (but not counting the leading
  2500. dot duplicated for transparency).
  2501.  
  2502. recipients buffer
  2503.  
  2504. The maximum total number of recipients that must be
  2505. buffered is 100 recipients.
  2506.  
  2507.  
  2508. ****************************************************
  2509. * *
  2510. * TO THE MAXIMUM EXTENT POSSIBLE, IMPLEMENTATION *
  2511. * TECHNIQUES WHICH IMPOSE NO LIMITS ON THE LENGTH *
  2512. * OF THESE OBJECTS SHOULD BE USED. *
  2513. * *
  2514. ****************************************************
  2515.  
  2516. Errors due to exceeding these limits may be reported by using
  2517. the reply codes, for example:
  2518.  
  2519. 500 Line too long.
  2520.  
  2521. 501 Path too long
  2522.  
  2523. 552 Too many recipients.
  2524.  
  2525. 552 Too much mail data.
  2526.  
  2527.  
  2528.  
  2529.  
  2530.  
  2531.  
  2532.  
  2533.  
  2534.  
  2535.  
  2536.  
  2537.  
  2538.  
  2539.  
  2540.  
  2541.  
  2542.  
  2543.  
  2544.  
  2545. Postel [Page 43]
  2546.  
  2547.  
  2548. August 1982 RFC 821
  2549. Simple Mail Transfer Protocol
  2550.  
  2551.  
  2552.  
  2553. APPENDIX A
  2554.  
  2555. TCP Transport service
  2556.  
  2557. The Transmission Control Protocol [3] is used in the ARPA
  2558. Internet, and in any network following the US DoD standards for
  2559. internetwork protocols.
  2560.  
  2561. Connection Establishment
  2562.  
  2563. The SMTP transmission channel is a TCP connection established
  2564. between the sender process port U and the receiver process port
  2565. L. This single full duplex connection is used as the
  2566. transmission channel. This protocol is assigned the service
  2567. port 25 (31 octal), that is L=25.
  2568.  
  2569. Data Transfer
  2570.  
  2571. The TCP connection supports the transmission of 8-bit bytes.
  2572. The SMTP data is 7-bit ASCII characters. Each character is
  2573. transmitted as an 8-bit byte with the high-order bit cleared to
  2574. zero.
  2575.  
  2576.  
  2577.  
  2578.  
  2579.  
  2580.  
  2581.  
  2582.  
  2583.  
  2584.  
  2585.  
  2586.  
  2587.  
  2588.  
  2589.  
  2590.  
  2591.  
  2592.  
  2593.  
  2594.  
  2595.  
  2596.  
  2597.  
  2598.  
  2599.  
  2600.  
  2601.  
  2602. [Page 44] Postel
  2603.  
  2604.  
  2605. RFC 821 August 1982
  2606. Simple Mail Transfer Protocol
  2607.  
  2608.  
  2609.  
  2610. APPENDIX B
  2611.  
  2612. NCP Transport service
  2613.  
  2614. The ARPANET Host-to-Host Protocol [4] (implemented by the Network
  2615. Control Program) may be used in the ARPANET.
  2616.  
  2617. Connection Establishment
  2618.  
  2619. The SMTP transmission channel is established via NCP between
  2620. the sender process socket U and receiver process socket L. The
  2621. Initial Connection Protocol [5] is followed resulting in a pair
  2622. of simplex connections. This pair of connections is used as
  2623. the transmission channel. This protocol is assigned the
  2624. contact socket 25 (31 octal), that is L=25.
  2625.  
  2626. Data Transfer
  2627.  
  2628. The NCP data connections are established in 8-bit byte mode.
  2629. The SMTP data is 7-bit ASCII characters. Each character is
  2630. transmitted as an 8-bit byte with the high-order bit cleared to
  2631. zero.
  2632.  
  2633.  
  2634.  
  2635.  
  2636.  
  2637.  
  2638.  
  2639.  
  2640.  
  2641.  
  2642.  
  2643.  
  2644.  
  2645.  
  2646.  
  2647.  
  2648.  
  2649.  
  2650.  
  2651.  
  2652.  
  2653.  
  2654.  
  2655.  
  2656.  
  2657.  
  2658.  
  2659. Postel [Page 45]
  2660.  
  2661.  
  2662. August 1982 RFC 821
  2663. Simple Mail Transfer Protocol
  2664.  
  2665.  
  2666.  
  2667. APPENDIX C
  2668.  
  2669. NITS
  2670.  
  2671. The Network Independent Transport Service [6] may be used.
  2672.  
  2673. Connection Establishment
  2674.  
  2675. The SMTP transmission channel is established via NITS between
  2676. the sender process and receiver process. The sender process
  2677. executes the CONNECT primitive, and the waiting receiver
  2678. process executes the ACCEPT primitive.
  2679.  
  2680. Data Transfer
  2681.  
  2682. The NITS connection supports the transmission of 8-bit bytes.
  2683. The SMTP data is 7-bit ASCII characters. Each character is
  2684. transmitted as an 8-bit byte with the high-order bit cleared to
  2685. zero.
  2686.  
  2687.  
  2688.  
  2689.  
  2690.  
  2691.  
  2692.  
  2693.  
  2694.  
  2695.  
  2696.  
  2697.  
  2698.  
  2699.  
  2700.  
  2701.  
  2702.  
  2703.  
  2704.  
  2705.  
  2706.  
  2707.  
  2708.  
  2709.  
  2710.  
  2711.  
  2712.  
  2713.  
  2714.  
  2715.  
  2716. [Page 46] Postel
  2717.  
  2718.  
  2719. RFC 821 August 1982
  2720. Simple Mail Transfer Protocol
  2721.  
  2722.  
  2723.  
  2724. APPENDIX D
  2725.  
  2726. X.25 Transport service
  2727.  
  2728. It may be possible to use the X.25 service [7] as provided by the
  2729. Public Data Networks directly, however, it is suggested that a
  2730. reliable end-to-end protocol such as TCP be used on top of X.25
  2731. connections.
  2732.  
  2733.  
  2734.  
  2735.  
  2736.  
  2737.  
  2738.  
  2739.  
  2740.  
  2741.  
  2742.  
  2743.  
  2744.  
  2745.  
  2746.  
  2747.  
  2748.  
  2749.  
  2750.  
  2751.  
  2752.  
  2753.  
  2754.  
  2755.  
  2756.  
  2757.  
  2758.  
  2759.  
  2760.  
  2761.  
  2762.  
  2763.  
  2764.  
  2765.  
  2766.  
  2767.  
  2768.  
  2769.  
  2770.  
  2771.  
  2772.  
  2773. Postel [Page 47]
  2774.  
  2775.  
  2776. August 1982 RFC 821
  2777. Simple Mail Transfer Protocol
  2778.  
  2779.  
  2780.  
  2781. APPENDIX E
  2782.  
  2783. Theory of Reply Codes
  2784.  
  2785. The three digits of the reply each have a special significance.
  2786. The first digit denotes whether the response is good, bad or
  2787. incomplete. An unsophisticated sender-SMTP will be able to
  2788. determine its next action (proceed as planned, redo, retrench,
  2789. etc.) by simply examining this first digit. A sender-SMTP that
  2790. wants to know approximately what kind of error occurred (e.g.,
  2791. mail system error, command syntax error) may examine the second
  2792. digit, reserving the third digit for the finest gradation of
  2793. information.
  2794.  
  2795. There are five values for the first digit of the reply code:
  2796.  
  2797. 1yz Positive Preliminary reply
  2798.  
  2799. The command has been accepted, but the requested action
  2800. is being held in abeyance, pending confirmation of the
  2801. information in this reply. The sender-SMTP should send
  2802. another command specifying whether to continue or abort
  2803. the action.
  2804.  
  2805. [Note: SMTP does not have any commands that allow this
  2806. type of reply, and so does not have the continue or
  2807. abort commands.]
  2808.  
  2809. 2yz Positive Completion reply
  2810.  
  2811. The requested action has been successfully completed. A
  2812. new request may be initiated.
  2813.  
  2814. 3yz Positive Intermediate reply
  2815.  
  2816. The command has been accepted, but the requested action
  2817. is being held in abeyance, pending receipt of further
  2818. information. The sender-SMTP should send another command
  2819. specifying this information. This reply is used in
  2820. command sequence groups.
  2821.  
  2822. 4yz Transient Negative Completion reply
  2823.  
  2824. The command was not accepted and the requested action did
  2825. not occur. However, the error condition is temporary and
  2826. the action may be requested again. The sender should
  2827.  
  2828.  
  2829.  
  2830. [Page 48] Postel
  2831.  
  2832.  
  2833. RFC 821 August 1982
  2834. Simple Mail Transfer Protocol
  2835.  
  2836.  
  2837.  
  2838. return to the beginning of the command sequence (if any).
  2839. It is difficult to assign a meaning to "transient" when
  2840. two different sites (receiver- and sender- SMTPs) must
  2841. agree on the interpretation. Each reply in this category
  2842. might have a different time value, but the sender-SMTP is
  2843. encouraged to try again. A rule of thumb to determine if
  2844. a reply fits into the 4yz or the 5yz category (see below)
  2845. is that replies are 4yz if they can be repeated without
  2846. any change in command form or in properties of the sender
  2847. or receiver. (E.g., the command is repeated identically
  2848. and the receiver does not put up a new implementation.)
  2849.  
  2850. 5yz Permanent Negative Completion reply
  2851.  
  2852. The command was not accepted and the requested action did
  2853. not occur. The sender-SMTP is discouraged from repeating
  2854. the exact request (in the same sequence). Even some
  2855. "permanent" error conditions can be corrected, so the
  2856. human user may want to direct the sender-SMTP to
  2857. reinitiate the command sequence by direct action at some
  2858. point in the future (e.g., after the spelling has been
  2859. changed, or the user has altered the account status).
  2860.  
  2861. The second digit encodes responses in specific categories:
  2862.  
  2863. x0z Syntax -- These replies refer to syntax errors,
  2864. syntactically correct commands that don't fit any
  2865. functional category, and unimplemented or superfluous
  2866. commands.
  2867.  
  2868. x1z Information -- These are replies to requests for
  2869. information, such as status or help.
  2870.  
  2871. x2z Connections -- These are replies referring to the
  2872. transmission channel.
  2873.  
  2874. x3z Unspecified as yet.
  2875.  
  2876. x4z Unspecified as yet.
  2877.  
  2878. x5z Mail system -- These replies indicate the status of
  2879. the receiver mail system vis-a-vis the requested
  2880. transfer or other mail system action.
  2881.  
  2882. The third digit gives a finer gradation of meaning in each
  2883. category specified by the second digit. The list of replies
  2884.  
  2885.  
  2886.  
  2887. Postel [Page 49]
  2888.  
  2889.  
  2890. August 1982 RFC 821
  2891. Simple Mail Transfer Protocol
  2892.  
  2893.  
  2894.  
  2895. illustrates this. Each reply text is recommended rather than
  2896. mandatory, and may even change according to the command with
  2897. which it is associated. On the other hand, the reply codes
  2898. must strictly follow the specifications in this section.
  2899. Receiver implementations should not invent new codes for
  2900. slightly different situations from the ones described here, but
  2901. rather adapt codes already defined.
  2902.  
  2903. For example, a command such as NOOP whose successful execution
  2904. does not offer the sender-SMTP any new information will return
  2905. a 250 reply. The response is 502 when the command requests an
  2906. unimplemented non-site-specific action. A refinement of that
  2907. is the 504 reply for a command that is implemented, but that
  2908. requests an unimplemented parameter.
  2909.  
  2910. The reply text may be longer than a single line; in these cases
  2911. the complete text must be marked so the sender-SMTP knows when it
  2912. can stop reading the reply. This requires a special format to
  2913. indicate a multiple line reply.
  2914.  
  2915. The format for multiline replies requires that every line,
  2916. except the last, begin with the reply code, followed
  2917. immediately by a hyphen, "-" (also known as minus), followed by
  2918. text. The last line will begin with the reply code, followed
  2919. immediately by <SP>, optionally some text, and <CRLF>.
  2920.  
  2921. For example:
  2922. 123-First line
  2923. 123-Second line
  2924. 123-234 text beginning with numbers
  2925. 123 The last line
  2926.  
  2927. In many cases the sender-SMTP then simply needs to search for
  2928. the reply code followed by <SP> at the beginning of a line, and
  2929. ignore all preceding lines. In a few cases, there is important
  2930. data for the sender in the reply "text". The sender will know
  2931. these cases from the current context.
  2932.  
  2933.  
  2934.  
  2935.  
  2936.  
  2937.  
  2938.  
  2939.  
  2940.  
  2941.  
  2942.  
  2943.  
  2944. [Page 50] Postel
  2945.  
  2946.  
  2947. RFC 821 August 1982
  2948. Simple Mail Transfer Protocol
  2949.  
  2950.  
  2951.  
  2952. APPENDIX F
  2953.  
  2954. Scenarios
  2955.  
  2956. This section presents complete scenarios of several types of SMTP
  2957. sessions.
  2958.  
  2959. A Typical SMTP Transaction Scenario
  2960.  
  2961. This SMTP example shows mail sent by Smith at host USC-ISIF, to
  2962. Jones, Green, and Brown at host BBN-UNIX. Here we assume that
  2963. host USC-ISIF contacts host BBN-UNIX directly. The mail is
  2964. accepted for Jones and Brown. Green does not have a mailbox at
  2965. host BBN-UNIX.
  2966.  
  2967. -------------------------------------------------------------
  2968.  
  2969. R: 220 BBN-UNIX.ARPA Simple Mail Transfer Service Ready
  2970. S: HELO USC-ISIF.ARPA
  2971. R: 250 BBN-UNIX.ARPA
  2972.  
  2973. S: MAIL FROM:<[email protected]>
  2974. R: 250 OK
  2975.  
  2976. S: RCPT TO:<[email protected]>
  2977. R: 250 OK
  2978.  
  2979. S: RCPT TO:<[email protected]>
  2980. R: 550 No such user here
  2981.  
  2982. S: RCPT TO:<[email protected]>
  2983. R: 250 OK
  2984.  
  2985. S: DATA
  2986. R: 354 Start mail input; end with <CRLF>.<CRLF>
  2987. S: Blah blah blah...
  2988. S: ...etc. etc. etc.
  2989. S: .
  2990. R: 250 OK
  2991.  
  2992. S: QUIT
  2993. R: 221 BBN-UNIX.ARPA Service closing transmission channel
  2994.  
  2995. Scenario 1
  2996.  
  2997. -------------------------------------------------------------
  2998.  
  2999.  
  3000.  
  3001. Postel [Page 51]
  3002.  
  3003.  
  3004. August 1982 RFC 821
  3005. Simple Mail Transfer Protocol
  3006.  
  3007.  
  3008.  
  3009. Aborted SMTP Transaction Scenario
  3010.  
  3011. -------------------------------------------------------------
  3012.  
  3013. R: 220 MIT-Multics.ARPA Simple Mail Transfer Service Ready
  3014. S: HELO ISI-VAXA.ARPA
  3015. R: 250 MIT-Multics.ARPA
  3016.  
  3017. S: MAIL FROM:<[email protected]>
  3018. R: 250 OK
  3019.  
  3020. S: RCPT TO:<[email protected]>
  3021. R: 250 OK
  3022.  
  3023. S: RCPT TO:<[email protected]>
  3024. R: 550 No such user here
  3025.  
  3026. S: RSET
  3027. R: 250 OK
  3028.  
  3029. S: QUIT
  3030. R: 221 MIT-Multics.ARPA Service closing transmission channel
  3031.  
  3032. Scenario 2
  3033.  
  3034. -------------------------------------------------------------
  3035.  
  3036.  
  3037.  
  3038.  
  3039.  
  3040.  
  3041.  
  3042.  
  3043.  
  3044.  
  3045.  
  3046.  
  3047.  
  3048.  
  3049.  
  3050.  
  3051.  
  3052.  
  3053.  
  3054.  
  3055.  
  3056.  
  3057.  
  3058. [Page 52] Postel
  3059.  
  3060.  
  3061. RFC 821 August 1982
  3062. Simple Mail Transfer Protocol
  3063.  
  3064.  
  3065.  
  3066. Relayed Mail Scenario
  3067.  
  3068. -------------------------------------------------------------
  3069.  
  3070. Step 1 -- Source Host to Relay Host
  3071.  
  3072. R: 220 USC-ISIE.ARPA Simple Mail Transfer Service Ready
  3073. S: HELO MIT-AI.ARPA
  3074. R: 250 USC-ISIE.ARPA
  3075.  
  3076. S: MAIL FROM:<[email protected]>
  3077. R: 250 OK
  3078.  
  3079. S: RCPT TO:<@USC-ISIE.ARPA:[email protected]>
  3080. R: 250 OK
  3081.  
  3082. S: DATA
  3083. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3084. S: Date: 2 Nov 81 22:33:44
  3085. S: From: John Q. Public <[email protected]>
  3086. S: Subject: The Next Meeting of the Board
  3087. S:
  3088. S: Bill:
  3089. S: The next meeting of the board of directors will be
  3090. S: on Tuesday.
  3091. S: John.
  3092. S: .
  3093. R: 250 OK
  3094.  
  3095. S: QUIT
  3096. R: 221 USC-ISIE.ARPA Service closing transmission channel
  3097.  
  3098.  
  3099.  
  3100.  
  3101.  
  3102.  
  3103.  
  3104.  
  3105.  
  3106.  
  3107.  
  3108.  
  3109.  
  3110.  
  3111.  
  3112.  
  3113.  
  3114. Postel [Page 53]
  3115.  
  3116.  
  3117. August 1982 RFC 821
  3118. Simple Mail Transfer Protocol
  3119.  
  3120.  
  3121.  
  3122. Step 2 -- Relay Host to Destination Host
  3123.  
  3124. R: 220 BBN-VAX.ARPA Simple Mail Transfer Service Ready
  3125. S: HELO USC-ISIE.ARPA
  3126. R: 250 BBN-VAX.ARPA
  3127.  
  3128. S: MAIL FROM:<@USC-ISIE.ARPA:[email protected]>
  3129. R: 250 OK
  3130.  
  3131. S: RCPT TO:<[email protected]>
  3132. R: 250 OK
  3133.  
  3134. S: DATA
  3135. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3136. S: Received: from MIT-AI.ARPA by USC-ISIE.ARPA ;
  3137. 2 Nov 81 22:40:10 UT
  3138. S: Date: 2 Nov 81 22:33:44
  3139. S: From: John Q. Public <[email protected]>
  3140. S: Subject: The Next Meeting of the Board
  3141. S:
  3142. S: Bill:
  3143. S: The next meeting of the board of directors will be
  3144. S: on Tuesday.
  3145. S: John.
  3146. S: .
  3147. R: 250 OK
  3148.  
  3149. S: QUIT
  3150. R: 221 USC-ISIE.ARPA Service closing transmission channel
  3151.  
  3152. Scenario 3
  3153.  
  3154. -------------------------------------------------------------
  3155.  
  3156.  
  3157.  
  3158.  
  3159.  
  3160.  
  3161.  
  3162.  
  3163.  
  3164.  
  3165.  
  3166.  
  3167.  
  3168.  
  3169.  
  3170. [Page 54] Postel
  3171.  
  3172.  
  3173. RFC 821 August 1982
  3174. Simple Mail Transfer Protocol
  3175.  
  3176.  
  3177.  
  3178. Verifying and Sending Scenario
  3179.  
  3180. -------------------------------------------------------------
  3181.  
  3182. R: 220 SU-SCORE.ARPA Simple Mail Transfer Service Ready
  3183. S: HELO MIT-MC.ARPA
  3184. R: 250 SU-SCORE.ARPA
  3185.  
  3186. S: VRFY Crispin
  3187. R: 250 Mark Crispin <[email protected]>
  3188.  
  3189. S: SEND FROM:<[email protected]>
  3190. R: 250 OK
  3191.  
  3192. S: RCPT TO:<[email protected]>
  3193. R: 250 OK
  3194.  
  3195. S: DATA
  3196. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3197. S: Blah blah blah...
  3198. S: ...etc. etc. etc.
  3199. S: .
  3200. R: 250 OK
  3201.  
  3202. S: QUIT
  3203. R: 221 SU-SCORE.ARPA Service closing transmission channel
  3204.  
  3205. Scenario 4
  3206.  
  3207. -------------------------------------------------------------
  3208.  
  3209.  
  3210.  
  3211.  
  3212.  
  3213.  
  3214.  
  3215.  
  3216.  
  3217.  
  3218.  
  3219.  
  3220.  
  3221.  
  3222.  
  3223.  
  3224.  
  3225.  
  3226.  
  3227. Postel [Page 55]
  3228.  
  3229.  
  3230. August 1982 RFC 821
  3231. Simple Mail Transfer Protocol
  3232.  
  3233.  
  3234.  
  3235. Sending and Mailing Scenarios
  3236.  
  3237. First the user's name is verified, then an attempt is made to
  3238. send to the user's terminal. When that fails, the messages is
  3239. mailed to the user's mailbox.
  3240.  
  3241. -------------------------------------------------------------
  3242.  
  3243. R: 220 SU-SCORE.ARPA Simple Mail Transfer Service Ready
  3244. S: HELO MIT-MC.ARPA
  3245. R: 250 SU-SCORE.ARPA
  3246.  
  3247. S: VRFY Crispin
  3248. R: 250 Mark Crispin <[email protected]>
  3249.  
  3250. S: SEND FROM:<[email protected]>
  3251. R: 250 OK
  3252.  
  3253. S: RCPT TO:<[email protected]>
  3254. R: 450 User not active now
  3255.  
  3256. S: RSET
  3257. R: 250 OK
  3258.  
  3259. S: MAIL FROM:<[email protected]>
  3260. R: 250 OK
  3261.  
  3262. S: RCPT TO:<[email protected]>
  3263. R: 250 OK
  3264.  
  3265. S: DATA
  3266. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3267. S: Blah blah blah...
  3268. S: ...etc. etc. etc.
  3269. S: .
  3270. R: 250 OK
  3271.  
  3272. S: QUIT
  3273. R: 221 SU-SCORE.ARPA Service closing transmission channel
  3274.  
  3275. Scenario 5
  3276.  
  3277. -------------------------------------------------------------
  3278.  
  3279.  
  3280.  
  3281.  
  3282.  
  3283.  
  3284. [Page 56] Postel
  3285.  
  3286.  
  3287. RFC 821 August 1982
  3288. Simple Mail Transfer Protocol
  3289.  
  3290.  
  3291.  
  3292. Doing the preceding scenario more efficiently.
  3293.  
  3294. -------------------------------------------------------------
  3295.  
  3296. R: 220 SU-SCORE.ARPA Simple Mail Transfer Service Ready
  3297. S: HELO MIT-MC.ARPA
  3298. R: 250 SU-SCORE.ARPA
  3299.  
  3300. S: VRFY Crispin
  3301. R: 250 Mark Crispin <[email protected]>
  3302.  
  3303. S: SOML FROM:<[email protected]>
  3304. R: 250 OK
  3305.  
  3306. S: RCPT TO:<[email protected]>
  3307. R: 250 User not active now, so will do mail.
  3308.  
  3309. S: DATA
  3310. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3311. S: Blah blah blah...
  3312. S: ...etc. etc. etc.
  3313. S: .
  3314. R: 250 OK
  3315.  
  3316. S: QUIT
  3317. R: 221 SU-SCORE.ARPA Service closing transmission channel
  3318.  
  3319. Scenario 6
  3320.  
  3321. -------------------------------------------------------------
  3322.  
  3323.  
  3324.  
  3325.  
  3326.  
  3327.  
  3328.  
  3329.  
  3330.  
  3331.  
  3332.  
  3333.  
  3334.  
  3335.  
  3336.  
  3337.  
  3338.  
  3339.  
  3340.  
  3341. Postel [Page 57]
  3342.  
  3343.  
  3344. August 1982 RFC 821
  3345. Simple Mail Transfer Protocol
  3346.  
  3347.  
  3348.  
  3349. Mailing List Scenario
  3350.  
  3351. First each of two mailing lists are expanded in separate sessions
  3352. with different hosts. Then the message is sent to everyone that
  3353. appeared on either list (but no duplicates) via a relay host.
  3354.  
  3355. -------------------------------------------------------------
  3356.  
  3357. Step 1 -- Expanding the First List
  3358.  
  3359. R: 220 MIT-AI.ARPA Simple Mail Transfer Service Ready
  3360. S: HELO SU-SCORE.ARPA
  3361. R: 250 MIT-AI.ARPA
  3362.  
  3363. S: EXPN Example-People
  3364. R: 250-Fred Fonebone <[email protected]>
  3365. R: 250-Xenon Y. Zither <[email protected]>
  3366. R: 250-Quincy Smith <@USC-ISIF.ARPA:[email protected]>
  3367.  
  3368. S: QUIT
  3369. R: 221 MIT-AI.ARPA Service closing transmission channel
  3370.  
  3371.  
  3372.  
  3373.  
  3374.  
  3375.  
  3376.  
  3377.  
  3378.  
  3379.  
  3380.  
  3381.  
  3382.  
  3383.  
  3384.  
  3385.  
  3386.  
  3387.  
  3388.  
  3389.  
  3390.  
  3391.  
  3392.  
  3393.  
  3394.  
  3395. [Page 58] Postel
  3396.  
  3397.  
  3398. RFC 821 August 1982
  3399. Simple Mail Transfer Protocol
  3400.  
  3401.  
  3402.  
  3403. Step 2 -- Expanding the Second List
  3404.  
  3405. R: 220 MIT-MC.ARPA Simple Mail Transfer Service Ready
  3406. S: HELO SU-SCORE.ARPA
  3407. R: 250 MIT-MC.ARPA
  3408.  
  3409. S: EXPN Interested-Parties
  3410. R: 250-Al Calico <[email protected]>
  3411. R: 250-Quincy Smith <@USC-ISIF.ARPA:[email protected]>
  3412.  
  3413. S: QUIT
  3414. R: 221 MIT-MC.ARPA Service closing transmission channel
  3415.  
  3416.  
  3417.  
  3418.  
  3419.  
  3420.  
  3421.  
  3422.  
  3423.  
  3424.  
  3425.  
  3426.  
  3427.  
  3428.  
  3429.  
  3430.  
  3431.  
  3432.  
  3433.  
  3434.  
  3435.  
  3436.  
  3437.  
  3438.  
  3439.  
  3440.  
  3441.  
  3442.  
  3443.  
  3444.  
  3445.  
  3446.  
  3447.  
  3448.  
  3449. Postel [Page 59]
  3450.  
  3451.  
  3452. August 1982 RFC 821
  3453. Simple Mail Transfer Protocol
  3454.  
  3455.  
  3456.  
  3457. Step 3 -- Mailing to All via a Relay Host
  3458.  
  3459. R: 220 USC-ISIE.ARPA Simple Mail Transfer Service Ready
  3460. S: HELO SU-SCORE.ARPA
  3461. R: 250 USC-ISIE.ARPA
  3462.  
  3463. S: MAIL FROM:<[email protected]>
  3464. R: 250 OK
  3465. S: RCPT TO:<@USC-ISIE.ARPA:[email protected]>
  3466. R: 250 OK
  3467. S: RCPT TO:<@USC-ISIE.ARPA:[email protected]>
  3468. R: 250 OK
  3469. S: RCPT TO:<@USC-ISIE.ARPA:[email protected]>
  3470. R: 250 OK
  3471. S: RCPT
  3472. TO:<@USC-ISIE.ARPA,@USC-ISIF.ARPA:[email protected]>
  3473. R: 250 OK
  3474. S: RCPT TO:<@USC-ISIE.ARPA:[email protected]>
  3475. R: 250 OK
  3476. S: RCPT TO:<@USC-ISIE.ARPA:[email protected]>
  3477. R: 250 OK
  3478. S: RCPT TO:<@USC-ISIE.ARPA:[email protected]>
  3479. R: 250 OK
  3480.  
  3481. S: DATA
  3482. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3483. S: Blah blah blah...
  3484. S: ...etc. etc. etc.
  3485. S: .
  3486. R: 250 OK
  3487.  
  3488. S: QUIT
  3489. R: 221 USC-ISIE.ARPA Service closing transmission channel
  3490.  
  3491. Scenario 7
  3492.  
  3493. -------------------------------------------------------------
  3494.  
  3495.  
  3496.  
  3497.  
  3498.  
  3499.  
  3500.  
  3501.  
  3502.  
  3503.  
  3504.  
  3505.  
  3506. [Page 60] Postel
  3507.  
  3508.  
  3509. RFC 821 August 1982
  3510. Simple Mail Transfer Protocol
  3511.  
  3512.  
  3513.  
  3514. Forwarding Scenarios
  3515.  
  3516. -------------------------------------------------------------
  3517.  
  3518. R: 220 USC-ISIF.ARPA Simple Mail Transfer Service Ready
  3519. S: HELO LBL-UNIX.ARPA
  3520. R: 250 USC-ISIF.ARPA
  3521.  
  3522. S: MAIL FROM:<[email protected]>
  3523. R: 250 OK
  3524.  
  3525. S: RCPT TO:<[email protected]>
  3526. R: 251 User not local; will forward to <[email protected]>
  3527.  
  3528. S: DATA
  3529. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3530. S: Blah blah blah...
  3531. S: ...etc. etc. etc.
  3532. S: .
  3533. R: 250 OK
  3534.  
  3535. S: QUIT
  3536. R: 221 USC-ISIF.ARPA Service closing transmission channel
  3537.  
  3538. Scenario 8
  3539.  
  3540. -------------------------------------------------------------
  3541.  
  3542.  
  3543.  
  3544.  
  3545.  
  3546.  
  3547.  
  3548.  
  3549.  
  3550.  
  3551.  
  3552.  
  3553.  
  3554.  
  3555.  
  3556.  
  3557.  
  3558.  
  3559.  
  3560.  
  3561.  
  3562.  
  3563. Postel [Page 61]
  3564.  
  3565.  
  3566. August 1982 RFC 821
  3567. Simple Mail Transfer Protocol
  3568.  
  3569.  
  3570.  
  3571. -------------------------------------------------------------
  3572.  
  3573. Step 1 -- Trying the Mailbox at the First Host
  3574.  
  3575. R: 220 USC-ISIF.ARPA Simple Mail Transfer Service Ready
  3576. S: HELO LBL-UNIX.ARPA
  3577. R: 250 USC-ISIF.ARPA
  3578.  
  3579. S: MAIL FROM:<[email protected]>
  3580. R: 250 OK
  3581.  
  3582. S: RCPT TO:<[email protected]>
  3583. R: 251 User not local; will forward to <[email protected]>
  3584.  
  3585. S: RSET
  3586. R: 250 OK
  3587.  
  3588. S: QUIT
  3589. R: 221 USC-ISIF.ARPA Service closing transmission channel
  3590.  
  3591. Step 2 -- Delivering the Mail at the Second Host
  3592.  
  3593. R: 220 USC-ISI.ARPA Simple Mail Transfer Service Ready
  3594. S: HELO LBL-UNIX.ARPA
  3595. R: 250 USC-ISI.ARPA
  3596.  
  3597. S: MAIL FROM:<[email protected]>
  3598. R: 250 OK
  3599.  
  3600. S: RCPT TO:<[email protected]>
  3601. R: OK
  3602.  
  3603. S: DATA
  3604. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3605. S: Blah blah blah...
  3606. S: ...etc. etc. etc.
  3607. S: .
  3608. R: 250 OK
  3609.  
  3610. S: QUIT
  3611. R: 221 USC-ISI.ARPA Service closing transmission channel
  3612.  
  3613. Scenario 9
  3614.  
  3615. -------------------------------------------------------------
  3616.  
  3617.  
  3618.  
  3619.  
  3620. [Page 62] Postel
  3621.  
  3622.  
  3623. RFC 821 August 1982
  3624. Simple Mail Transfer Protocol
  3625.  
  3626.  
  3627.  
  3628. Too Many Recipients Scenario
  3629.  
  3630. -------------------------------------------------------------
  3631.  
  3632. R: 220 BERKELEY.ARPA Simple Mail Transfer Service Ready
  3633. S: HELO USC-ISIF.ARPA
  3634. R: 250 BERKELEY.ARPA
  3635.  
  3636. S: MAIL FROM:<[email protected]>
  3637. R: 250 OK
  3638.  
  3639. S: RCPT TO:<[email protected]>
  3640. R: 250 OK
  3641.  
  3642. S: RCPT TO:<[email protected]>
  3643. R: 552 Recipient storage full, try again in another transaction
  3644.  
  3645. S: DATA
  3646. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3647. S: Blah blah blah...
  3648. S: ...etc. etc. etc.
  3649. S: .
  3650. R: 250 OK
  3651.  
  3652. S: MAIL FROM:<[email protected]>
  3653. R: 250 OK
  3654.  
  3655. S: RCPT TO:<[email protected]>
  3656. R: 250 OK
  3657.  
  3658. S: DATA
  3659. R: 354 Start mail input; end with <CRLF>.<CRLF>
  3660. S: Blah blah blah...
  3661. S: ...etc. etc. etc.
  3662. S: .
  3663. R: 250 OK
  3664.  
  3665. S: QUIT
  3666. R: 221 BERKELEY.ARPA Service closing transmission channel
  3667.  
  3668. Scenario 10
  3669.  
  3670. -------------------------------------------------------------
  3671.  
  3672. Note that a real implementation must handle many recipients as
  3673. specified in Section 4.5.3.
  3674.  
  3675.  
  3676.  
  3677. Postel [Page 63]
  3678.  
  3679.  
  3680. August 1982 RFC 821
  3681. Simple Mail Transfer Protocol
  3682.  
  3683.  
  3684.  
  3685. GLOSSARY
  3686.  
  3687. ASCII
  3688.  
  3689. American Standard Code for Information Interchange [1].
  3690.  
  3691. command
  3692.  
  3693. A request for a mail service action sent by the sender-SMTP to the
  3694. receiver-SMTP.
  3695.  
  3696. domain
  3697.  
  3698. The hierarchially structured global character string address of a
  3699. host computer in the mail system.
  3700.  
  3701. end of mail data indication
  3702.  
  3703. A special sequence of characters that indicates the end of the
  3704. mail data. In particular, the five characters carriage return,
  3705. line feed, period, carriage return, line feed, in that order.
  3706.  
  3707. host
  3708.  
  3709. A computer in the internetwork environment on which mailboxes or
  3710. SMTP processes reside.
  3711.  
  3712. line
  3713.  
  3714. A a sequence of ASCII characters ending with a <CRLF>.
  3715.  
  3716. mail data
  3717.  
  3718. A sequence of ASCII characters of arbitrary length, which conforms
  3719. to the standard set in the Standard for the Format of ARPA
  3720. Internet Text Messages (RFC 822 [2]).
  3721.  
  3722. mailbox
  3723.  
  3724. A character string (address) which identifies a user to whom mail
  3725. is to be sent. Mailbox normally consists of the host and user
  3726. specifications. The standard mailbox naming convention is defined
  3727. to be "user@domain". Additionally, the "container" in which mail
  3728. is stored.
  3729.  
  3730.  
  3731.  
  3732.  
  3733.  
  3734. [Page 64] Postel
  3735.  
  3736.  
  3737. RFC 821 August 1982
  3738. Simple Mail Transfer Protocol
  3739.  
  3740.  
  3741.  
  3742. receiver-SMTP process
  3743.  
  3744. A process which transfers mail in cooperation with a sender-SMTP
  3745. process. It waits for a connection to be established via the
  3746. transport service. It receives SMTP commands from the
  3747. sender-SMTP, sends replies, and performs the specified operations.
  3748.  
  3749. reply
  3750.  
  3751. A reply is an acknowledgment (positive or negative) sent from
  3752. receiver to sender via the transmission channel in response to a
  3753. command. The general form of a reply is a completion code
  3754. (including error codes) followed by a text string. The codes are
  3755. for use by programs and the text is usually intended for human
  3756. users.
  3757.  
  3758. sender-SMTP process
  3759.  
  3760. A process which transfers mail in cooperation with a receiver-SMTP
  3761. process. A local language may be used in the user interface
  3762. command/reply dialogue. The sender-SMTP initiates the transport
  3763. service connection. It initiates SMTP commands, receives replies,
  3764. and governs the transfer of mail.
  3765.  
  3766. session
  3767.  
  3768. The set of exchanges that occur while the transmission channel is
  3769. open.
  3770.  
  3771. transaction
  3772.  
  3773. The set of exchanges required for one message to be transmitted
  3774. for one or more recipients.
  3775.  
  3776. transmission channel
  3777.  
  3778. A full-duplex communication path between a sender-SMTP and a
  3779. receiver-SMTP for the exchange of commands, replies, and mail
  3780. text.
  3781.  
  3782. transport service
  3783.  
  3784. Any reliable stream-oriented data communication services. For
  3785. example, NCP, TCP, NITS.
  3786.  
  3787.  
  3788.  
  3789.  
  3790.  
  3791. Postel [Page 65]
  3792.  
  3793.  
  3794. August 1982 RFC 821
  3795. Simple Mail Transfer Protocol
  3796.  
  3797.  
  3798.  
  3799. user
  3800.  
  3801. A human being (or a process on behalf of a human being) wishing to
  3802. obtain mail transfer service. In addition, a recipient of
  3803. computer mail.
  3804.  
  3805. word
  3806.  
  3807. A sequence of printing characters.
  3808.  
  3809. <CRLF>
  3810.  
  3811. The characters carriage return and line feed (in that order).
  3812.  
  3813. <SP>
  3814.  
  3815. The space character.
  3816.  
  3817.  
  3818.  
  3819.  
  3820.  
  3821.  
  3822.  
  3823.  
  3824.  
  3825.  
  3826.  
  3827.  
  3828.  
  3829.  
  3830.  
  3831.  
  3832.  
  3833.  
  3834.  
  3835.  
  3836.  
  3837.  
  3838.  
  3839.  
  3840.  
  3841.  
  3842.  
  3843.  
  3844.  
  3845.  
  3846.  
  3847.  
  3848. [Page 66] Postel
  3849.  
  3850.  
  3851. RFC 821 August 1982
  3852. Simple Mail Transfer Protocol
  3853.  
  3854.  
  3855.  
  3856. REFERENCES
  3857.  
  3858. [1] ASCII
  3859.  
  3860. ASCII, "USA Code for Information Interchange", United States of
  3861. America Standards Institute, X3.4, 1968. Also in: Feinler, E.
  3862. and J. Postel, eds., "ARPANET Protocol Handbook", NIC 7104, for
  3863. the Defense Communications Agency by SRI International, Menlo
  3864. Park, California, Revised January 1978.
  3865.  
  3866. [2] RFC 822
  3867.  
  3868. Crocker, D., "Standard for the Format of ARPA Internet Text
  3869. Messages," RFC 822, Department of Electrical Engineering,
  3870. University of Delaware, August 1982.
  3871.  
  3872. [3] TCP
  3873.  
  3874. Postel, J., ed., "Transmission Control Protocol - DARPA Internet
  3875. Program Protocol Specification", RFC 793, USC/Information Sciences
  3876. Institute, NTIS AD Number A111091, September 1981. Also in:
  3877. Feinler, E. and J. Postel, eds., "Internet Protocol Transition
  3878. Workbook", SRI International, Menlo Park, California, March 1982.
  3879.  
  3880. [4] NCP
  3881.  
  3882. McKenzie,A., "Host/Host Protocol for the ARPA Network", NIC 8246,
  3883. January 1972. Also in: Feinler, E. and J. Postel, eds., "ARPANET
  3884. Protocol Handbook", NIC 7104, for the Defense Communications
  3885. Agency by SRI International, Menlo Park, California, Revised
  3886. January 1978.
  3887.  
  3888. [5] Initial Connection Protocol
  3889.  
  3890. Postel, J., "Official Initial Connection Protocol", NIC 7101,
  3891. 11 June 1971. Also in: Feinler, E. and J. Postel, eds., "ARPANET
  3892. Protocol Handbook", NIC 7104, for the Defense Communications
  3893. Agency by SRI International, Menlo Park, California, Revised
  3894. January 1978.
  3895.  
  3896. [6] NITS
  3897.  
  3898. PSS/SG3, "A Network Independent Transport Service", Study Group 3,
  3899. The Post Office PSS Users Group, February 1980. Available from
  3900. the DCPU, National Physical Laboratory, Teddington, UK.
  3901.  
  3902.  
  3903.  
  3904.  
  3905. Postel [Page 67]
  3906.  
  3907.  
  3908. August 1982 RFC 821
  3909. Simple Mail Transfer Protocol
  3910.  
  3911.  
  3912.  
  3913. [7] X.25
  3914.  
  3915. CCITT, "Recommendation X.25 - Interface Between Data Terminal
  3916. Equipment (DTE) and Data Circuit-terminating Equipment (DCE) for
  3917. Terminals Operating in the Packet Mode on Public Data Networks,"
  3918. CCITT Orange Book, Vol. VIII.2, International Telephone and
  3919. Telegraph Consultative Committee, Geneva, 1976.
  3920.  
  3921.  
  3922.  
  3923.  
  3924.  
  3925.  
  3926.  
  3927.  
  3928.  
  3929.  
  3930.  
  3931.  
  3932.  
  3933.  
  3934.  
  3935.  
  3936.  
  3937.  
  3938.  
  3939.  
  3940.  
  3941.  
  3942.  
  3943.  
  3944.  
  3945.  
  3946.  
  3947.  
  3948.  
  3949.  
  3950.  
  3951.  
  3952.  
  3953.  
  3954.  
  3955.  
  3956.  
  3957.  
  3958.  
  3959.  
  3960.  
  3961.  
  3962. [Page 68] Postel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement