RFC821
上传用户:knt0001
上传日期:2022-01-28
资源大小:264k
文件大小:111k
源码类别:

Email客户端

开发平台:

C/C++

  1.                                                                         
  2.    RFC 821
  3.                                     
  4.                                     
  5.                                     
  6.                                     
  7.                                     
  8.                      SIMPLE MAIL TRANSFER PROTOCOL
  9.                                     
  10.                                     
  11.                                     
  12.                            Jonathan B. Postel
  13.                               August 1982
  14.                                     
  15.                                     
  16.                                     
  17.                      Information Sciences Institute
  18.                    University of Southern California
  19.                            4676 Admiralty Way
  20.                    Marina del Rey, California  90291
  21.                              (213) 822-1511
  22.                                                                         
  23. RFC 821                                                      August 1982
  24.                                            Simple Mail Transfer Protocol
  25.                            TABLE OF CONTENTS
  26.    1.  INTRODUCTION .................................................. 1
  27.    2.  THE SMTP MODEL ................................................ 2
  28.    3.  THE SMTP PROCEDURE ............................................ 4
  29.       3.1.  Mail ..................................................... 4
  30.       3.2.  Forwarding ............................................... 7
  31.       3.3.  Verifying and Expanding .................................. 8
  32.       3.4.  Sending and Mailing ..................................... 11
  33.       3.5.  Opening and Closing ..................................... 13
  34.       3.6.  Relaying ................................................ 14
  35.       3.7.  Domains ................................................. 17
  36.       3.8.  Changing Roles .......................................... 18
  37.    4.  THE SMTP SPECIFICATIONS ...................................... 19
  38.       4.1.  SMTP Commands ........................................... 19
  39.       4.1.1.  Command Semantics ..................................... 19
  40.       4.1.2.  Command Syntax ........................................ 27
  41.       4.2.  SMTP Replies ............................................ 34
  42.       4.2.1.  Reply Codes by Function Group ......................... 35
  43.       4.2.2.  Reply Codes in Numeric Order .......................... 36
  44.       4.3.  Sequencing of Commands and Replies ...................... 37
  45.       4.4.  State Diagrams .......................................... 39
  46.       4.5.  Details ................................................. 41
  47.       4.5.1.  Minimum Implementation ................................ 41
  48.       4.5.2.  Transparency .......................................... 41
  49.       4.5.3.  Sizes ................................................. 42
  50.    APPENDIX A:  TCP ................................................. 44
  51.    APPENDIX B:  NCP ................................................. 45
  52.    APPENDIX C:  NITS ................................................ 46
  53.    APPENDIX D:  X.25 ................................................ 47
  54.    APPENDIX E:  Theory of Reply Codes ............................... 48
  55.    APPENDIX F:  Scenarios ........................................... 51
  56.    GLOSSARY ......................................................... 64
  57.    REFERENCES ....................................................... 67
  58. Network Working Group                                          J. Postel
  59. Request for Comments: DRAFT                                          ISI
  60. Replaces: RFC 788, 780, 772                                  August 1982
  61.                      SIMPLE MAIL TRANSFER PROTOCOL
  62. 1.  INTRODUCTION
  63.    The objective of Simple Mail Transfer Protocol (SMTP) is to transfer
  64.    mail reliably and efficiently.
  65.    SMTP is independent of the particular transmission subsystem and
  66.    requires only a reliable ordered data stream channel.  Appendices A,
  67.    B, C, and D describe the use of SMTP with various transport services.
  68.    A Glossary provides the definitions of terms as used in this
  69.    document.
  70.    An important feature of SMTP is its capability to relay mail across
  71.    transport service environments.  A transport service provides an
  72.    interprocess communication environment (IPCE).  An IPCE may cover one
  73.    network, several networks, or a subset of a network.  It is important
  74.    to realize that transport systems (or IPCEs) are not one-to-one with
  75.    networks.  A process can communicate directly with another process
  76.    through any mutually known IPCE.  Mail is an application or use of
  77.    interprocess communication.  Mail can be communicated between
  78.    processes in different IPCEs by relaying through a process connected
  79.    to two (or more) IPCEs.  More specifically, mail can be relayed
  80.    between hosts on different transport systems by a host on both
  81.    transport systems.
  82. Postel                                                          [Page 1]
  83.                                                                         
  84. August 1982                                                      RFC 821
  85. Simple Mail Transfer Protocol                                           
  86. 2.  THE SMTP MODEL
  87.    The SMTP design is based on the following model of communication:  as
  88.    the result of a user mail request, the sender-SMTP establishes a
  89.    two-way transmission channel to a receiver-SMTP.  The receiver-SMTP
  90.    may be either the ultimate destination or an intermediate.  SMTP
  91.    commands are generated by the sender-SMTP and sent to the
  92.    receiver-SMTP.  SMTP replies are sent from the receiver-SMTP to the
  93.    sender-SMTP in response to the commands.
  94.    Once the transmission channel is established, the SMTP-sender sends a
  95.    MAIL command indicating the sender of the mail.  If the SMTP-receiver
  96.    can accept mail it responds with an OK reply.  The SMTP-sender then
  97.    sends a RCPT command identifying a recipient of the mail.  If the
  98.    SMTP-receiver can accept mail for that recipient it responds with an
  99.    OK reply; if not, it responds with a reply rejecting that recipient
  100.    (but not the whole mail transaction).  The SMTP-sender and
  101.    SMTP-receiver may negotiate several recipients.  When the recipients
  102.    have been negotiated the SMTP-sender sends the mail data, terminating
  103.    with a special sequence.  If the SMTP-receiver successfully processes
  104.    the mail data it responds with an OK reply.  The dialog is purposely
  105.    lock-step, one-at-a-time.
  106.      -------------------------------------------------------------
  107.    
  108.                +----------+                +----------+
  109.    +------+    |          |                |          |
  110.    | User |<-->|          |      SMTP      |          |
  111.    +------+    |  Sender- |Commands/Replies| Receiver-|
  112.    +------+    |   SMTP   |<-------------->|    SMTP  |    +------+
  113.    | File |<-->|          |    and Mail    |          |<-->| File |
  114.    |System|    |          |                |          |    |System|
  115.    +------+    +----------+                +----------+    +------+
  116.    
  117.                 Sender-SMTP                Receiver-SMTP
  118.                            Model for SMTP Use
  119.                                 Figure 1
  120.      -------------------------------------------------------------
  121.    The SMTP provides mechanisms for the transmission of mail; directly
  122.    from the sending user's host to the receiving user's host when the
  123. [Page 2]                                                          Postel
  124.                                                                         
  125. RFC 821                                                      August 1982
  126.                                            Simple Mail Transfer Protocol
  127.    two host are connected to the same transport service, or via one or
  128.    more relay SMTP-servers when the source and destination hosts are not
  129.    connected to the same transport service.
  130.    To be able to provide the relay capability the SMTP-server must be
  131.    supplied with the name of the ultimate destination host as well as
  132.    the destination mailbox name.
  133.    The argument to the MAIL command is a reverse-path, which specifies
  134.    who the mail is from.  The argument to the RCPT command is a
  135.    forward-path, which specifies who the mail is to.  The forward-path
  136.    is a source route, while the reverse-path is a return route (which
  137.    may be used to return a message to the sender when an error occurs
  138.    with a relayed message).
  139.    When the same message is sent to multiple recipients the SMTP
  140.    encourages the transmission of only one copy of the data for all the
  141.    recipients at the same destination host.
  142.    The mail commands and replies have a rigid syntax.  Replies also have
  143.    a numeric code.  In the following, examples appear which use actual
  144.    commands and replies.  The complete lists of commands and replies
  145.    appears in Section 4 on specifications.
  146.    Commands and replies are not case sensitive.  That is, a command or
  147.    reply word may be upper case, lower case, or any mixture of upper and
  148.    lower case.  Note that this is not true of mailbox user names.  For
  149.    some hosts the user name is case sensitive, and SMTP implementations
  150.    must take case to preserve the case of user names as they appear in
  151.    mailbox arguments.  Host names are not case sensitive.
  152.    Commands and replies are composed of characters from the ASCII
  153.    character set [1].  When the transport service provides an 8-bit byte
  154.    (octet) transmission channel, each 7-bit character is transmitted
  155.    right justified in an octet with the high order bit cleared to zero.
  156.    When specifying the general form of a command or reply, an argument
  157.    (or special symbol) will be denoted by a meta-linguistic variable (or
  158.    constant), for example, "<string>" or "<reverse-path>".  Here the
  159.    angle brackets indicate these are meta-linguistic variables.
  160.    However, some arguments use the angle brackets literally.  For
  161.    example, an actual reverse-path is enclosed in angle brackets, i.e.,
  162.    "<John.Smith@USC-ISI.ARPA>" is an instance of <reverse-path> (the
  163.    angle brackets are actually transmitted in the command or reply).
  164. Postel                                                          [Page 3]
  165.                                                                         
  166. August 1982                                                      RFC 821
  167. Simple Mail Transfer Protocol                                           
  168. 3.  THE SMTP PROCEDURES
  169.    This section presents the procedures used in SMTP in several parts.
  170.    First comes the basic mail procedure defined as a mail transaction.
  171.    Following this are descriptions of forwarding mail, verifying mailbox
  172.    names and expanding mailing lists, sending to terminals instead of or
  173.    in combination with mailboxes, and the opening and closing exchanges.
  174.    At the end of this section are comments on relaying, a note on mail
  175.    domains, and a discussion of changing roles.  Throughout this section
  176.    are examples of partial command and reply sequences, several complete
  177.    scenarios are presented in Appendix F.
  178.    3.1.  MAIL
  179.       There are three steps to SMTP mail transactions.  The transaction
  180.       is started with a MAIL command which gives the sender
  181.       identification.  A series of one or more RCPT commands follows
  182.       giving the receiver information.  Then a DATA command gives the
  183.       mail data.  And finally, the end of mail data indicator confirms
  184.       the transaction.
  185.          The first step in the procedure is the MAIL command.  The
  186.          <reverse-path> contains the source mailbox.
  187.             MAIL <SP> FROM:<reverse-path> <CRLF>
  188.          This command tells the SMTP-receiver that a new mail
  189.          transaction is starting and to reset all its state tables and
  190.          buffers, including any recipients or mail data.  It gives the
  191.          reverse-path which can be used to report errors.  If accepted,
  192.          the receiver-SMTP returns a 250 OK reply.
  193.          The <reverse-path> can contain more than just a mailbox.  The
  194.          <reverse-path> is a reverse source routing list of hosts and
  195.          source mailbox.  The first host in the <reverse-path> should be
  196.          the host sending this command.
  197.          The second step in the procedure is the RCPT command.
  198.             RCPT <SP> TO:<forward-path> <CRLF>
  199.          This command gives a forward-path identifying one recipient.
  200.          If accepted, the receiver-SMTP returns a 250 OK reply, and
  201.          stores the forward-path.  If the recipient is unknown the
  202.          receiver-SMTP returns a 550 Failure reply.  This second step of
  203.          the procedure can be repeated any number of times.
  204. [Page 4]                                                          Postel
  205.                                                                         
  206. RFC 821                                                      August 1982
  207.                                            Simple Mail Transfer Protocol
  208.          The <forward-path> can contain more than just a mailbox.  The
  209.          <forward-path> is a source routing list of hosts and the
  210.          destination mailbox.  The first host in the <forward-path>
  211.          should be the host receiving this command.
  212.          The third step in the procedure is the DATA command.
  213.             DATA <CRLF>
  214.          If accepted, the receiver-SMTP returns a 354 Intermediate reply
  215.          and considers all succeeding lines to be the message text.
  216.          When the end of text is received and stored the SMTP-receiver
  217.          sends a 250 OK reply.
  218.          Since the mail data is sent on the transmission channel the end
  219.          of the mail data must be indicated so that the command and
  220.          reply dialog can be resumed.  SMTP indicates the end of the
  221.          mail data by sending a line containing only a period.  A
  222.          transparency procedure is used to prevent this from interfering
  223.          with the user's text (see Section 4.5.2).
  224.             Please note that the mail data includes the memo header
  225.             items such as Date, Subject, To, Cc, From [2].
  226.          The end of mail data indicator also confirms the mail
  227.          transaction and tells the receiver-SMTP to now process the
  228.          stored recipients and mail data.  If accepted, the
  229.          receiver-SMTP returns a 250 OK reply.  The DATA command should
  230.          fail only if the mail transaction was incomplete (for example,
  231.          no recipients), or if resources are not available.
  232.       The above procedure is an example of a mail transaction.  These
  233.       commands must be used only in the order discussed above.
  234.       Example 1 (below) illustrates the use of these commands in a mail
  235.       transaction.
  236. Postel                                                          [Page 5]
  237.                                                                         
  238. August 1982                                                      RFC 821
  239. Simple Mail Transfer Protocol                                           
  240.       -------------------------------------------------------------
  241.                      Example of the SMTP Procedure
  242.          This SMTP example shows mail sent by Smith at host Alpha.ARPA,
  243.          to Jones, Green, and Brown at host Beta.ARPA.  Here we assume
  244.          that host Alpha contacts host Beta directly.
  245.             S: MAIL FROM:<Smith@Alpha.ARPA>
  246.             R: 250 OK
  247.             S: RCPT TO:<Jones@Beta.ARPA>
  248.             R: 250 OK
  249.             S: RCPT TO:<Green@Beta.ARPA>
  250.             R: 550 No such user here
  251.             S: RCPT TO:<Brown@Beta.ARPA>
  252.             R: 250 OK
  253.             S: DATA
  254.             R: 354 Start mail input; end with <CRLF>.<CRLF>
  255.             S: Blah blah blah...
  256.             S: ...etc. etc. etc.
  257.             S: <CRLF>.<CRLF>
  258.             R: 250 OK
  259.          The mail has now been accepted for Jones and Brown.  Green did
  260.          not have a mailbox at host Beta.
  261.                                Example 1
  262.       -------------------------------------------------------------
  263. [Page 6]                                                          Postel
  264.                                                                         
  265. RFC 821                                                      August 1982
  266.                                            Simple Mail Transfer Protocol
  267.    3.2.  FORWARDING
  268.       There are some cases where the destination information in the
  269.       <forward-path> is incorrect, but the receiver-SMTP knows the
  270.       correct destination.  In such cases, one of the following replies
  271.       should be used to allow the sender to contact the correct
  272.       destination.
  273.          251 User not local; will forward to <forward-path>
  274.             This reply indicates that the receiver-SMTP knows the user's
  275.             mailbox is on another host and indicates the correct
  276.             forward-path to use in the future.  Note that either the
  277.             host or user or both may be different.  The receiver takes
  278.             responsibility for delivering the message.
  279.          551 User not local; please try <forward-path>
  280.             This reply indicates that the receiver-SMTP knows the user's
  281.             mailbox is on another host and indicates the correct
  282.             forward-path to use.  Note that either the host or user or
  283.             both may be different.  The receiver refuses to accept mail
  284.             for this user, and the sender must either redirect the mail
  285.             according to the information provided or return an error
  286.             response to the originating user.
  287.       Example 2 illustrates the use of these responses.
  288.       -------------------------------------------------------------
  289.                          Example of Forwarding
  290.       Either
  291.       S: RCPT TO:<Postel@USC-ISI.ARPA>
  292.       R: 251 User not local; will forward to <Postel@USC-ISIF.ARPA>
  293.       Or
  294.       S: RCPT TO:<Paul@USC-ISIB.ARPA>
  295.       R: 551 User not local; please try <Mockapetris@USC-ISIF.ARPA>
  296.                                Example 2
  297.       -------------------------------------------------------------
  298. Postel                                                          [Page 7]
  299.                                                                         
  300. August 1982                                                      RFC 821
  301. Simple Mail Transfer Protocol                                           
  302.    3.3.  VERIFYING AND EXPANDING
  303.       SMTP provides as additional features, commands to verify a user
  304.       name or expand a mailing list.  This is done with the VRFY and
  305.       EXPN commands, which have character string arguments.  For the
  306.       VRFY command, the string is a user name, and the response may
  307.       include the full name of the user and must include the mailbox of
  308.       the user.  For the EXPN command, the string identifies a mailing
  309.       list, and the multiline response may include the full name of the
  310.       users and must give the mailboxes on the mailing list.
  311.       "User name" is a fuzzy term and used purposely.  If a host
  312.       implements the VRFY or EXPN commands then at least local mailboxes
  313.       must be recognized as "user names".  If a host chooses to
  314.       recognize other strings as "user names" that is allowed.
  315.       In some hosts the distinction between a mailing list and an alias
  316.       for a single mailbox is a bit fuzzy, since a common data structure
  317.       may hold both types of entries, and it is possible to have mailing
  318.       lists of one mailbox.  If a request is made to verify a mailing
  319.       list a positive response can be given if on receipt of a message
  320.       so addressed it will be delivered to everyone on the list,
  321.       otherwise an error should be reported (e.g., "550 That is a
  322.       mailing list, not a user").  If a request is made to expand a user
  323.       name a positive response can be formed by returning a list
  324.       containing one name, or an error can be reported (e.g., "550 That
  325.       is a user name, not a mailing list").
  326.       In the case of a multiline reply (normal for EXPN) exactly one
  327.       mailbox is to be specified on each line of the reply.  In the case
  328.       of an ambiguous request, for example, "VRFY Smith", where there
  329.       are two Smith's the response must be "553 User ambiguous".
  330.       The case of verifying a user name is straightforward as shown in
  331.       example 3.
  332. [Page 8]                                                          Postel
  333.                                                                         
  334. RFC 821                                                      August 1982
  335.                                            Simple Mail Transfer Protocol
  336.       -------------------------------------------------------------
  337.                     Example of Verifying a User Name
  338.          Either
  339.             S: VRFY Smith
  340.             R: 250 Fred Smith <Smith@USC-ISIF.ARPA>
  341.          Or
  342.             S: VRFY Smith
  343.             R: 251 User not local; will forward to <Smith@USC-ISIQ.ARPA>
  344.          Or
  345.             S: VRFY Jones
  346.             R: 550 String does not match anything.
  347.          Or
  348.             S: VRFY Jones
  349.             R: 551 User not local; please try <Jones@USC-ISIQ.ARPA>
  350.          Or
  351.             S: VRFY Gourzenkyinplatz
  352.             R: 553 User ambiguous.
  353.                                Example 3
  354.       -------------------------------------------------------------
  355. Postel                                                          [Page 9]
  356.                                                                         
  357. August 1982                                                      RFC 821
  358. Simple Mail Transfer Protocol                                           
  359.       The case of expanding a mailbox list requires a multiline reply as
  360.       shown in example 4.
  361.       -------------------------------------------------------------
  362.                   Example of Expanding a Mailing List
  363.          Either
  364.             S: EXPN Example-People
  365.             R: 250-Jon Postel <Postel@USC-ISIF.ARPA>
  366.             R: 250-Fred Fonebone <Fonebone@USC-ISIQ.ARPA>
  367.             R: 250-Sam Q. Smith <SQSmith@USC-ISIQ.ARPA>
  368.             R: 250-Quincy Smith <@USC-ISIF.ARPA:Q-Smith@ISI-VAXA.ARPA>
  369.             R: 250-<joe@foo-unix.ARPA>
  370.             R: 250 <xyz@bar-unix.ARPA>
  371.          Or
  372.             S: EXPN Executive-Washroom-List
  373.             R: 550 Access Denied to You.
  374.                                Example 4
  375.       -------------------------------------------------------------
  376.       The character string arguments of the VRFY and EXPN commands
  377.       cannot be further restricted due to the variety of implementations
  378.       of the user name and mailbox list concepts.  On some systems it
  379.       may be appropriate for the argument of the EXPN command to be a
  380.       file name for a file containing a mailing list, but again there is
  381.       a variety of file naming conventions in the Internet.
  382.       The VRFY and EXPN commands are not included in the minimum
  383.       implementation (Section 4.5.1), and are not required to work
  384.       across relays when they are implemented.
  385. [Page 10]                                                         Postel
  386.                                                                         
  387. RFC 821                                                      August 1982
  388.                                            Simple Mail Transfer Protocol
  389.    3.4.  SENDING AND MAILING
  390.       The main purpose of SMTP is to deliver messages to user's
  391.       mailboxes.  A very similar service provided by some hosts is to
  392.       deliver messages to user's terminals (provided the user is active
  393.       on the host).  The delivery to the user's mailbox is called
  394.       "mailing", the delivery to the user's terminal is called
  395.       "sending".  Because in many hosts the implementation of sending is
  396.       nearly identical to the implementation of mailing these two
  397.       functions are combined in SMTP.  However the sending commands are
  398.       not included in the required minimum implementation
  399.       (Section 4.5.1).  Users should have the ability to control the
  400.       writing of messages on their terminals.  Most hosts permit the
  401.       users to accept or refuse such messages.
  402.       The following three command are defined to support the sending
  403.       options.  These are used in the mail transaction instead of the
  404.       MAIL command and inform the receiver-SMTP of the special semantics
  405.       of this transaction:
  406.          SEND <SP> FROM:<reverse-path> <CRLF>
  407.             The SEND command requires that the mail data be delivered to
  408.             the user's terminal.  If the user is not active (or not
  409.             accepting terminal messages) on the host a 450 reply may
  410.             returned to a RCPT command.  The mail transaction is
  411.             successful if the message is delivered the terminal.
  412.          SOML <SP> FROM:<reverse-path> <CRLF>
  413.             The Send Or MaiL command requires that the mail data be
  414.             delivered to the user's terminal if the user is active (and
  415.             accepting terminal messages) on the host.  If the user is
  416.             not active (or not accepting terminal messages) then the
  417.             mail data is entered into the user's mailbox.  The mail
  418.             transaction is successful if the message is delivered either
  419.             to the terminal or the mailbox.
  420.          SAML <SP> FROM:<reverse-path> <CRLF>
  421.             The Send And MaiL command requires that the mail data be
  422.             delivered to the user's terminal if the user is active (and
  423.             accepting terminal messages) on the host.  In any case the
  424.             mail data is entered into the user's mailbox.  The mail
  425.             transaction is successful if the message is delivered the
  426.             mailbox.
  427. Postel                                                         [Page 11]
  428.                                                                         
  429. August 1982                                                      RFC 821
  430. Simple Mail Transfer Protocol                                           
  431.       The same reply codes that are used for the MAIL commands are used
  432.       for these commands.
  433. [Page 12]                                                         Postel
  434.                                                                         
  435. RFC 821                                                      August 1982
  436.                                            Simple Mail Transfer Protocol
  437.    3.5.  OPENING AND CLOSING
  438.       At the time the transmission channel is opened there is an
  439.       exchange to ensure that the hosts are communicating with the hosts
  440.       they think they are.
  441.       The following two commands are used in transmission channel
  442.       opening and closing:
  443.          HELO <SP> <domain> <CRLF>
  444.          QUIT <CRLF>
  445.       In the HELO command the host sending the command identifies
  446.       itself; the command may be interpreted as saying "Hello, I am
  447.       <domain>".
  448.       -------------------------------------------------------------
  449.                      Example of Connection Opening
  450.          R: 220 BBN-UNIX.ARPA Simple Mail Transfer Service Ready
  451.          S: HELO USC-ISIF.ARPA
  452.          R: 250 BBN-UNIX.ARPA
  453.                                Example 5
  454.       -------------------------------------------------------------
  455.       -------------------------------------------------------------
  456.                      Example of Connection Closing
  457.          S: QUIT
  458.          R: 221 BBN-UNIX.ARPA Service closing transmission channel
  459.                                Example 6
  460.       -------------------------------------------------------------
  461. Postel                                                         [Page 13]
  462.                                                                         
  463. August 1982                                                      RFC 821
  464. Simple Mail Transfer Protocol                                           
  465.    3.6.  RELAYING
  466.       The forward-path may be a source route of the form
  467.       "@ONE,@TWO:JOE@THREE", where ONE, TWO, and THREE are hosts.  This
  468.       form is used to emphasize the distinction between an address and a
  469.       route.  The mailbox is an absolute address, and the route is
  470.       information about how to get there.  The two concepts should not
  471.       be confused.
  472.       Conceptually the elements of the forward-path are moved to the
  473.       reverse-path as the message is relayed from one server-SMTP to
  474.       another.  The reverse-path is a reverse source route, (i.e., a
  475.       source route from the current location of the message to the
  476.       originator of the message).  When a server-SMTP deletes its
  477.       identifier from the forward-path and inserts it into the
  478.       reverse-path, it must use the name it is known by in the
  479.       environment it is sending into, not the environment the mail came
  480.       from, in case the server-SMTP is known by different names in
  481.       different environments.
  482.       If when the message arrives at an SMTP the first element of the
  483.       forward-path is not the identifier of that SMTP the element is not
  484.       deleted from the forward-path and is used to determine the next
  485.       SMTP to send the message to.  In any case, the SMTP adds its own
  486.       identifier to the reverse-path.
  487.       Using source routing the receiver-SMTP receives mail to be relayed
  488.       to another server-SMTP  The receiver-SMTP may accept or reject the
  489.       task of relaying the mail in the same way it accepts or rejects
  490.       mail for a local user.  The receiver-SMTP transforms the command
  491.       arguments by moving its own identifier from the forward-path to
  492.       the beginning of the reverse-path.  The receiver-SMTP then becomes
  493.       a sender-SMTP, establishes a transmission channel to the next SMTP
  494.       in the forward-path, and sends it the mail.
  495.       The first host in the reverse-path should be the host sending the
  496.       SMTP commands, and the first host in the forward-path should be
  497.       the host receiving the SMTP commands.
  498.       Notice that the forward-path and reverse-path appear in the SMTP
  499.       commands and replies, but not necessarily in the message.  That
  500.       is, there is no need for these paths and especially this syntax to
  501.       appear in the "To:" , "From:", "CC:", etc. fields of the message
  502.       header.
  503.       If a server-SMTP has accepted the task of relaying the mail and
  504. [Page 14]                                                         Postel
  505.                                                                         
  506. RFC 821                                                      August 1982
  507.                                            Simple Mail Transfer Protocol
  508.       later finds that the forward-path is incorrect or that the mail
  509.       cannot be delivered for whatever reason, then it must construct an
  510.       "undeliverable mail" notification message and send it to the
  511.       originator of the undeliverable mail (as indicated by the
  512.       reverse-path).
  513.       This notification message must be from the server-SMTP at this
  514.       host.  Of course, server-SMTPs should not send notification
  515.       messages about problems with notification messages.  One way to
  516.       prevent loops in error reporting is to specify a null reverse-path
  517.       in the MAIL command of a notification message.  When such a
  518.       message is relayed it is permissible to leave the reverse-path
  519.       null.  A MAIL command with a null reverse-path appears as follows:
  520.          MAIL FROM:<>
  521.       An undeliverable mail notification message is shown in example 7.
  522.       This notification is in response to a message originated by JOE at
  523.       HOSTW and sent via HOSTX to HOSTY with instructions to relay it on
  524.       to HOSTZ.  What we see in the example is the transaction between
  525.       HOSTY and HOSTX, which is the first step in the return of the
  526.       notification message.
  527. Postel                                                         [Page 15]
  528.                                                                         
  529. August 1982                                                      RFC 821
  530. Simple Mail Transfer Protocol                                           
  531.       -------------------------------------------------------------
  532.             Example Undeliverable Mail Notification Message
  533.          S: MAIL FROM:<>
  534.          R: 250 ok
  535.          S: RCPT TO:<@HOSTX.ARPA:JOE@HOSTW.ARPA>
  536.          R: 250 ok
  537.          S: DATA
  538.          R: 354 send the mail data, end with .
  539.          S: Date: 23 Oct 81 11:22:33
  540.          S: From: SMTP@HOSTY.ARPA
  541.          S: To: JOE@HOSTW.ARPA
  542.          S: Subject: Mail System Problem
  543.          S:
  544.          S:   Sorry JOE, your message to SAM@HOSTZ.ARPA lost.
  545.          S:   HOSTZ.ARPA said this:
  546.          S:    "550 No Such User"
  547.          S: .
  548.          R: 250 ok
  549.                                Example 7
  550.       -------------------------------------------------------------
  551. [Page 16]                                                         Postel
  552.                                                                         
  553. RFC 821                                                      August 1982
  554.                                            Simple Mail Transfer Protocol
  555.    3.7.  DOMAINS
  556.       Domains are a recently introduced concept in the ARPA Internet
  557.       mail system.  The use of domains changes the address space from a
  558.       flat global space of simple character string host names to a
  559.       hierarchically structured rooted tree of global addresses.  The
  560.       host name is replaced by a domain and host designator which is a
  561.       sequence of domain element strings separated by periods with the
  562.       understanding that the domain elements are ordered from the most
  563.       specific to the most general.
  564.       For example, "USC-ISIF.ARPA", "Fred.Cambridge.UK", and
  565.       "PC7.LCS.MIT.ARPA" might be host-and-domain identifiers.
  566.       Whenever domain names are used in SMTP only the official names are
  567.       used, the use of nicknames or aliases is not allowed.
  568. Postel                                                         [Page 17]
  569.                                                                         
  570. August 1982                                                      RFC 821
  571. Simple Mail Transfer Protocol                                           
  572.    3.8.  CHANGING ROLES
  573.       The TURN command may be used to reverse the roles of the two
  574.       programs communicating over the transmission channel.
  575.       If program-A is currently the sender-SMTP and it sends the TURN
  576.       command and receives an ok reply (250) then program-A becomes the
  577.       receiver-SMTP.
  578.       If program-B is currently the receiver-SMTP and it receives the
  579.       TURN command and sends an ok reply (250) then program-B becomes
  580.       the sender-SMTP.
  581.       To refuse to change roles the receiver sends the 502 reply.
  582.       Please note that this command is optional.  It would not normally
  583.       be used in situations where the transmission channel is TCP.
  584.       However, when the cost of establishing the transmission channel is
  585.       high, this command may be quite useful.  For example, this command
  586.       may be useful in supporting be mail exchange using the public
  587.       switched telephone system as a transmission channel, especially if
  588.       some hosts poll other hosts for mail exchanges.
  589. [Page 18]                                                         Postel
  590.                                                                         
  591. RFC 821                                                      August 1982
  592.                                            Simple Mail Transfer Protocol
  593. 4.  THE SMTP SPECIFICATIONS
  594.    4.1.  SMTP COMMANDS
  595.       4.1.1.  COMMAND SEMANTICS
  596.          The SMTP commands define the mail transfer or the mail system
  597.          function requested by the user.  SMTP commands are character
  598.          strings terminated by <CRLF>.  The command codes themselves are
  599.          alphabetic characters terminated by <SP> if parameters follow
  600.          and <CRLF> otherwise.  The syntax of mailboxes must conform to
  601.          receiver site conventions.  The SMTP commands are discussed
  602.          below.  The SMTP replies are discussed in the Section 4.2.
  603.          A mail transaction involves several data objects which are
  604.          communicated as arguments to different commands.  The
  605.          reverse-path is the argument of the MAIL command, the
  606.          forward-path is the argument of the RCPT command, and the mail
  607.          data is the argument of the DATA command.  These arguments or
  608.          data objects must be transmitted and held pending the
  609.          confirmation communicated by the end of mail data indication
  610.          which finalizes the transaction.  The model for this is that
  611.          distinct buffers are provided to hold the types of data
  612.          objects, that is, there is a reverse-path buffer, a
  613.          forward-path buffer, and a mail data buffer.  Specific commands
  614.          cause information to be appended to a specific buffer, or cause
  615.          one or more buffers to be cleared.
  616.          HELLO (HELO)
  617.             This command is used to identify the sender-SMTP to the
  618.             receiver-SMTP.  The argument field contains the host name of
  619.             the sender-SMTP.
  620.             The receiver-SMTP identifies itself to the sender-SMTP in
  621.             the connection greeting reply, and in the response to this
  622.             command.
  623.             This command and an OK reply to it confirm that both the
  624.             sender-SMTP and the receiver-SMTP are in the initial state,
  625.             that is, there is no transaction in progress and all state
  626.             tables and buffers are cleared.
  627. Postel                                                         [Page 19]
  628.                                                                         
  629. August 1982                                                      RFC 821
  630. Simple Mail Transfer Protocol                                           
  631.          MAIL (MAIL)
  632.             This command is used to initiate a mail transaction in which
  633.             the mail data is delivered to one or more mailboxes.  The
  634.             argument field contains a reverse-path.
  635.             The reverse-path consists of an optional list of hosts and
  636.             the sender mailbox.  When the list of hosts is present, it
  637.             is a "reverse" source route and indicates that the mail was
  638.             relayed through each host on the list (the first host in the
  639.             list was the most recent relay).  This list is used as a
  640.             source route to return non-delivery notices to the sender.
  641.             As each relay host adds itself to the beginning of the list,
  642.             it must use its name as known in the IPCE to which it is
  643.             relaying the mail rather than the IPCE from which the mail
  644.             came (if they are different).  In some types of error
  645.             reporting messages (for example, undeliverable mail
  646.             notifications) the reverse-path may be null (see Example 7).
  647.             This command clears the reverse-path buffer, the
  648.             forward-path buffer, and the mail data buffer; and inserts
  649.             the reverse-path information from this command into the
  650.             reverse-path buffer.
  651.          RECIPIENT (RCPT)
  652.             This command is used to identify an individual recipient of
  653.             the mail data; multiple recipients are specified by multiple
  654.             use of this command.
  655.             The forward-path consists of an optional list of hosts and a
  656.             required destination mailbox.  When the list of hosts is
  657.             present, it is a source route and indicates that the mail
  658.             must be relayed to the next host on the list.  If the
  659.             receiver-SMTP does not implement the relay function it may
  660.             user the same reply it would for an unknown local user
  661.             (550).
  662.             When mail is relayed, the relay host must remove itself from
  663.             the beginning forward-path and put itself at the beginning
  664.             of the reverse-path.  When mail reaches its ultimate
  665.             destination (the forward-path contains only a destination
  666.             mailbox), the receiver-SMTP inserts it into the destination
  667.             mailbox in accordance with its host mail conventions.
  668. [Page 20]                                                         Postel
  669.                                                                         
  670. RFC 821                                                      August 1982
  671.                                            Simple Mail Transfer Protocol
  672.                For example, mail received at relay host A with arguments
  673.                   FROM:<USERX@HOSTY.ARPA>
  674.                   TO:<@HOSTA.ARPA,@HOSTB.ARPA:USERC@HOSTD.ARPA>
  675.                will be relayed on to host B with arguments
  676.                   FROM:<@HOSTA.ARPA:USERX@HOSTY.ARPA>
  677.                   TO:<@HOSTB.ARPA:USERC@HOSTD.ARPA>.
  678.             This command causes its forward-path argument to be appended
  679.             to the forward-path buffer.
  680.          DATA (DATA)
  681.             The receiver treats the lines following the command as mail
  682.             data from the sender.  This command causes the mail data
  683.             from this command to be appended to the mail data buffer.
  684.             The mail data may contain any of the 128 ASCII character
  685.             codes.
  686.             The mail data is terminated by a line containing only a
  687.             period, that is the character sequence "<CRLF>.<CRLF>" (see
  688.             Section 4.5.2 on Transparency).  This is the end of mail
  689.             data indication.
  690.             The end of mail data indication requires that the receiver
  691.             must now process the stored mail transaction information.
  692.             This processing consumes the information in the reverse-path
  693.             buffer, the forward-path buffer, and the mail data buffer,
  694.             and on the completion of this command these buffers are
  695.             cleared.  If the processing is successful the receiver must
  696.             send an OK reply.  If the processing fails completely the
  697.             receiver must send a failure reply.
  698.             When the receiver-SMTP accepts a message either for relaying
  699.             or for final delivery it inserts at the beginning of the
  700.             mail data a time stamp line.  The time stamp line indicates
  701.             the identity of the host that sent the message, and the
  702.             identity of the host that received the message (and is
  703.             inserting this time stamp), and the date and time the
  704.             message was received.  Relayed messages will have multiple
  705.             time stamp lines.
  706.             When the receiver-SMTP makes the "final delivery" of a
  707.             message it inserts at the beginning of the mail data a
  708. Postel                                                         [Page 21]
  709.                                                                         
  710. August 1982                                                      RFC 821
  711. Simple Mail Transfer Protocol                                           
  712.             return path line.  The return path line preserves the
  713.             information in the <reverse-path> from the MAIL command.
  714.             Here, final delivery means the message leaves the SMTP
  715.             world.  Normally, this would mean it has been delivered to
  716.             the destination user, but in some cases it may be further
  717.             processed and transmitted by another mail system.
  718.                It is possible for the mailbox in the return path be
  719.                different from the actual sender's mailbox, for example,
  720.                if error responses are to be delivered a special error
  721.                handling mailbox rather than the message senders.
  722.             The preceding two paragraphs imply that the final mail data
  723.             will begin with a  return path line, followed by one or more
  724.             time stamp lines.  These lines will be followed by the mail
  725.             data header and body [2].  See Example 8.
  726.             Special mention is needed of the response and further action
  727.             required when the processing following the end of mail data
  728.             indication is partially successful.  This could arise if
  729.             after accepting several recipients and the mail data, the
  730.             receiver-SMTP finds that the mail data can be successfully
  731.             delivered to some of the recipients, but it cannot be to
  732.             others (for example, due to mailbox space allocation
  733.             problems).  In such a situation, the response to the DATA
  734.             command must be an OK reply.  But, the receiver-SMTP must
  735.             compose and send an "undeliverable mail" notification
  736.             message to the originator of the message.  Either a single
  737.             notification which lists all of the recipients that failed
  738.             to get the message, or separate notification messages must
  739.             be sent for each failed recipient (see Example 7).  All
  740.             undeliverable mail notification messages are sent using the
  741.             MAIL command (even if they result from processing a SEND,
  742.             SOML, or SAML command).
  743. [Page 22]                                                         Postel
  744.                                                                         
  745. RFC 821                                                      August 1982
  746.                                            Simple Mail Transfer Protocol
  747.      -------------------------------------------------------------
  748.             Example of Return Path and Received Time Stamps
  749.       Return-Path: <@GHI.ARPA,@DEF.ARPA,@ABC.ARPA:JOE@ABC.ARPA>   
  750.       Received: from GHI.ARPA by JKL.ARPA ; 27 Oct 81 15:27:39 PST
  751.       Received: from DEF.ARPA by GHI.ARPA ; 27 Oct 81 15:15:13 PST
  752.       Received: from ABC.ARPA by DEF.ARPA ; 27 Oct 81 15:01:59 PST
  753.       Date: 27 Oct 81 15:01:01 PST                                
  754.       From: JOE@ABC.ARPA                                          
  755.       Subject: Improved Mailing System Installed                  
  756.       To: SAM@JKL.ARPA                                            
  757.                                     
  758.       This is to inform you that ...                              
  759.                                Example 8
  760.      -------------------------------------------------------------
  761.          SEND (SEND)
  762.             This command is used to initiate a mail transaction in which
  763.             the mail data is delivered to one or more terminals.  The
  764.             argument field contains a reverse-path.  This command is
  765.             successful if the message is delivered to a terminal.
  766.             The reverse-path consists of an optional list of hosts and
  767.             the sender mailbox.  When the list of hosts is present, it
  768.             is a "reverse" source route and indicates that the mail was
  769.             relayed through each host on the list (the first host in the
  770.             list was the most recent relay).  This list is used as a
  771.             source route to return non-delivery notices to the sender.
  772.             As each relay host adds itself to the beginning of the list,
  773.             it must use its name as known in the IPCE to which it is
  774.             relaying the mail rather than the IPCE from which the mail
  775.             came (if they are different).
  776.             This command clears the reverse-path buffer, the
  777.             forward-path buffer, and the mail data buffer; and inserts
  778.             the reverse-path information from this command into the
  779.             reverse-path buffer.
  780.          SEND OR MAIL (SOML)
  781.             This command is used to initiate a mail transaction in which
  782.             the mail data is delivered to one or more terminals or
  783. Postel                                                         [Page 23]
  784.                                                                         
  785. August 1982                                                      RFC 821
  786. Simple Mail Transfer Protocol                                           
  787.             mailboxes. For each recipient the mail data is delivered to
  788.             the recipient's terminal if the recipient is active on the
  789.             host (and accepting terminal messages), otherwise to the
  790.             recipient's mailbox.  The argument field contains a
  791.             reverse-path.  This command is successful if the message is
  792.             delivered to a terminal or the mailbox.
  793.             The reverse-path consists of an optional list of hosts and
  794.             the sender mailbox.  When the list of hosts is present, it
  795.             is a "reverse" source route and indicates that the mail was
  796.             relayed through each host on the list (the first host in the
  797.             list was the most recent relay).  This list is used as a
  798.             source route to return non-delivery notices to the sender.
  799.             As each relay host adds itself to the beginning of the list,
  800.             it must use its name as known in the IPCE to which it is
  801.             relaying the mail rather than the IPCE from which the mail
  802.             came (if they are different).
  803.             This command clears the reverse-path buffer, the
  804.             forward-path buffer, and the mail data buffer; and inserts
  805.             the reverse-path information from this command into the
  806.             reverse-path buffer.
  807.          SEND AND MAIL (SAML)
  808.             This command is used to initiate a mail transaction in which
  809.             the mail data is delivered to one or more terminals and
  810.             mailboxes. For each recipient the mail data is delivered to
  811.             the recipient's terminal if the recipient is active on the
  812.             host (and accepting terminal messages), and for all
  813.             recipients to the recipient's mailbox.  The argument field
  814.             contains a reverse-path.  This command is successful if the
  815.             message is delivered to the mailbox.
  816.             The reverse-path consists of an optional list of hosts and
  817.             the sender mailbox.  When the list of hosts is present, it
  818.             is a "reverse" source route and indicates that the mail was
  819.             relayed through each host on the list (the first host in the
  820.             list was the most recent relay).  This list is used as a
  821.             source route to return non-delivery notices to the sender.
  822.             As each relay host adds itself to the beginning of the list,
  823.             it must use its name as known in the IPCE to which it is
  824.             relaying the mail rather than the IPCE from which the mail
  825.             came (if they are different).
  826.             This command clears the reverse-path buffer, the
  827. [Page 24]                                                         Postel
  828.                                                                         
  829. RFC 821                                                      August 1982
  830.                                            Simple Mail Transfer Protocol
  831.             forward-path buffer, and the mail data buffer; and inserts
  832.             the reverse-path information from this command into the
  833.             reverse-path buffer.
  834.          RESET (RSET)
  835.             This command specifies that the current mail transaction is
  836.             to be aborted.  Any stored sender, recipients, and mail data
  837.             must be discarded, and all buffers and state tables cleared.
  838.             The receiver must send an OK reply.
  839.          VERIFY (VRFY)
  840.             This command asks the receiver to confirm that the argument
  841.             identifies a user.  If it is a user name, the full name of
  842.             the user (if known) and the fully specified mailbox are
  843.             returned.
  844.             This command has no effect on any of the reverse-path
  845.             buffer, the forward-path buffer, or the mail data buffer.
  846.          EXPAND (EXPN)
  847.             This command asks the receiver to confirm that the argument
  848.             identifies a mailing list, and if so, to return the
  849.             membership of that list.  The full name of the users (if
  850.             known) and the fully specified mailboxes are returned in a
  851.             multiline reply.
  852.             This command has no effect on any of the reverse-path
  853.             buffer, the forward-path buffer, or the mail data buffer.
  854.          HELP (HELP)
  855.             This command causes the receiver to send helpful information
  856.             to the sender of the HELP command.  The command may take an
  857.             argument (e.g., any command name) and return more specific
  858.             information as a response.
  859.             This command has no effect on any of the reverse-path
  860.             buffer, the forward-path buffer, or the mail data buffer.
  861. Postel                                                         [Page 25]
  862.                                                                         
  863. August 1982                                                      RFC 821
  864. Simple Mail Transfer Protocol                                           
  865.          NOOP (NOOP)
  866.             This command does not affect any parameters or previously
  867.             entered commands.  It specifies no action other than that
  868.             the receiver send an OK reply.
  869.             This command has no effect on any of the reverse-path
  870.             buffer, the forward-path buffer, or the mail data buffer.
  871.          QUIT (QUIT)
  872.             This command specifies that the receiver must send an OK
  873.             reply, and then close the transmission channel.
  874.             The receiver should not close the transmission channel until
  875.             it receives and replies to a QUIT command (even if there was
  876.             an error).  The sender should not close the transmission
  877.             channel until it send a QUIT command and receives the reply
  878.             (even if there was an error response to a previous command).
  879.             If the connection is closed prematurely the receiver should
  880.             act as if a RSET command had been received (canceling any
  881.             pending transaction, but not undoing any previously
  882.             completed transaction), the sender should act as if the
  883.             command or transaction in progress had received a temporary
  884.             error (4xx).
  885.          TURN (TURN)
  886.             This command specifies that the receiver must either (1)
  887.             send an OK reply and then take on the role of the
  888.             sender-SMTP, or (2) send a refusal reply and retain the role
  889.             of the receiver-SMTP.
  890.             If program-A is currently the sender-SMTP and it sends the
  891.             TURN command and receives an OK reply (250) then program-A
  892.             becomes the receiver-SMTP.  Program-A is then in the initial
  893.             state as if the transmission channel just opened, and it
  894.             then sends the 220 service ready greeting.
  895.             If program-B is currently the receiver-SMTP and it receives
  896.             the TURN command and sends an OK reply (250) then program-B
  897.             becomes the sender-SMTP.  Program-B is then in the initial
  898.             state as if the transmission channel just opened, and it
  899.             then expects to receive the 220 service ready greeting.
  900.             To refuse to change roles the receiver sends the 502 reply.
  901. [Page 26]                                                         Postel
  902.                                                                         
  903. RFC 821                                                      August 1982
  904.                                            Simple Mail Transfer Protocol
  905.          There are restrictions on the order in which these command may
  906.          be used.
  907.             The first command in a session must be the HELO command.
  908.             The HELO command may be used later in a session as well.  If
  909.             the HELO command argument is not acceptable a 501 failure
  910.             reply must be returned and the receiver-SMTP must stay in
  911.             the same state.
  912.             The NOOP, HELP, EXPN, and VRFY commands can be used at any
  913.             time during a session.
  914.             The MAIL, SEND, SOML, or SAML commands begin a mail
  915.             transaction.  Once started a mail transaction consists of
  916.             one of the transaction beginning commands, one or more RCPT
  917.             commands, and a DATA command, in that order.  A mail
  918.             transaction may be aborted by the RSET command.  There may
  919.             be zero or more transactions in a session.
  920.             If the transaction beginning command argument is not
  921.             acceptable a 501 failure reply must be returned and the
  922.             receiver-SMTP must stay in the same state.  If the commands
  923.             in a transaction are out of order a 503 failure reply must
  924.             be returned and the receiver-SMTP must stay in the same
  925.             state.
  926.             The last command in a session must be the QUIT command.  The
  927.             QUIT command can not be used at any other time in a session.
  928.       4.1.2.  COMMAND SYNTAX
  929.          The commands consist of a command code followed by an argument
  930.          field.  Command codes are four alphabetic characters.  Upper
  931.          and lower case alphabetic characters are to be treated
  932.          identically.  Thus, any of the following may represent the mail
  933.          command:
  934.             MAIL    Mail    mail    MaIl    mAIl
  935.          This also applies to any symbols representing parameter values,
  936.          such as "TO" or "to" for the forward-path.  Command codes and
  937.          the argument fields are separated by one or more spaces.
  938.          However, within the reverse-path and forward-path arguments
  939.          case is important.  In particular, in some hosts the user
  940.          "smith" is different from the user "Smith".
  941. Postel                                                         [Page 27]
  942.                                                                         
  943. August 1982                                                      RFC 821
  944. Simple Mail Transfer Protocol                                           
  945.          The argument field consists of a variable length character
  946.          string ending with the character sequence <CRLF>.  The receiver
  947.          is to take no action until this sequence is received.
  948.          Square brackets denote an optional argument field.  If the
  949.          option is not taken, the appropriate default is implied.
  950. [Page 28]                                                         Postel
  951.                                                                         
  952. RFC 821                                                      August 1982
  953.                                            Simple Mail Transfer Protocol
  954.          The following are the SMTP commands:
  955.             HELO <SP> <domain> <CRLF>
  956.             MAIL <SP> FROM:<reverse-path> <CRLF>
  957.             RCPT <SP> TO:<forward-path> <CRLF>
  958.             DATA <CRLF>
  959.             RSET <CRLF>
  960.             SEND <SP> FROM:<reverse-path> <CRLF>
  961.             SOML <SP> FROM:<reverse-path> <CRLF>
  962.             SAML <SP> FROM:<reverse-path> <CRLF>
  963.             VRFY <SP> <string> <CRLF>
  964.             EXPN <SP> <string> <CRLF>
  965.             HELP [<SP> <string>] <CRLF>
  966.             NOOP <CRLF>
  967.             QUIT <CRLF>
  968.             TURN <CRLF>
  969. Postel                                                         [Page 29]
  970.                                                                         
  971. August 1982                                                      RFC 821
  972. Simple Mail Transfer Protocol                                           
  973.          The syntax of the above argument fields (using BNF notation
  974.          where applicable) is given below.  The "..." notation indicates
  975.          that a field may be repeated one or more times.
  976.             <reverse-path> ::= <path>
  977.             <forward-path> ::= <path>
  978.             <path> ::= "<" [ <a-d-l> ":" ] <mailbox> ">"
  979.             <a-d-l> ::= <at-domain> | <at-domain> "," <a-d-l>
  980.             <at-domain> ::= "@" <domain>
  981.             <domain> ::=  <element> | <element> "." <domain>
  982.             <element> ::= <name> | "#" <number> | "[" <dotnum> "]"
  983.             <mailbox> ::= <local-part> "@" <domain>
  984.             <local-part> ::= <dot-string> | <quoted-string>
  985.             <name> ::= <a> <ldh-str> <let-dig>
  986.             <ldh-str> ::= <let-dig-hyp> | <let-dig-hyp> <ldh-str>
  987.             <let-dig> ::= <a> | <d>
  988.             <let-dig-hyp> ::= <a> | <d> | "-"
  989.             <dot-string> ::= <string> | <string> "." <dot-string>
  990.             <string> ::= <char> | <char> <string>
  991.             <quoted-string> ::=  """ <qtext> """
  992.             <qtext> ::=  "" <x> | "" <x> <qtext> | <q> | <q> <qtext>
  993.             <char> ::= <c> | "" <x>
  994.             <dotnum> ::= <snum> "." <snum> "." <snum> "." <snum>
  995.             <number> ::= <d> | <d> <number>
  996.             <CRLF> ::= <CR> <LF>
  997. [Page 30]                                                         Postel
  998.                                                                         
  999. RFC 821                                                      August 1982
  1000.                                            Simple Mail Transfer Protocol
  1001.             <CR> ::= the carriage return character (ASCII code 13)
  1002.             <LF> ::= the line feed character (ASCII code 10)
  1003.             <SP> ::= the space character (ASCII code 32)
  1004.             <snum> ::= one, two, or three digits representing a decimal
  1005.                       integer value in the range 0 through 255
  1006.             <a> ::= any one of the 52 alphabetic characters A through Z
  1007.                       in upper case and a through z in lower case
  1008.             <c> ::= any one of the 128 ASCII characters, but not any
  1009.                       <special> or <SP>
  1010.             <d> ::= any one of the ten digits 0 through 9
  1011.             <q> ::= any one of the 128 ASCII characters except <CR>,
  1012.                       <LF>, quote ("), or backslash ()
  1013.             <x> ::= any one of the 128 ASCII characters (no exceptions)
  1014.             <special> ::= "<" | ">" | "(" | ")" | "[" | "]" | "" | "."
  1015.                       | "," | ";" | ":" | "@"  """ | the control
  1016.                       characters (ASCII codes 0 through 31 inclusive and
  1017.                       127)
  1018.          Note that the backslash, "", is a quote character, which is
  1019.          used to indicate that the next character is to be used
  1020.          literally (instead of its normal interpretation).  For example,
  1021.          "Joe,Smith" could be used to indicate a single nine character
  1022.          user field with comma being the fourth character of the field.
  1023.          Hosts are generally known by names which are translated to
  1024.          addresses in each host.  Note that the name elements of domains
  1025.          are the official names -- no use of nicknames or aliases is
  1026.          allowed.
  1027.          Sometimes a host is not known to the translation function and
  1028.          communication is blocked.  To bypass this barrier two numeric
  1029.          forms are also allowed for host "names".  One form is a decimal
  1030.          integer prefixed by a pound sign, "#", which indicates the
  1031.          number is the address of the host.  Another form is four small
  1032.          decimal integers separated by dots and enclosed by brackets,
  1033.          e.g., "[123.255.37.2]", which indicates a 32-bit ARPA Internet
  1034.          Address in four 8-bit fields.
  1035. Postel                                                         [Page 31]
  1036.                                                                         
  1037. August 1982                                                      RFC 821
  1038. Simple Mail Transfer Protocol                                           
  1039.          The time stamp line and the return path line are formally
  1040.          defined as follows:
  1041.          <return-path-line> ::= "Return-Path:" <SP><reverse-path><CRLF>
  1042.          <time-stamp-line> ::= "Received:" <SP> <stamp> <CRLF>
  1043.             <stamp> ::= <from-domain> <by-domain> <opt-info> ";"
  1044.                       <daytime>
  1045.             <from-domain> ::= "FROM" <SP> <domain> <SP>
  1046.             <by-domain> ::= "BY" <SP> <domain> <SP>
  1047.             <opt-info> ::= [<via>] [<with>] [<id>] [<for>]
  1048.             <via> ::= "VIA" <SP> <link> <SP>
  1049.             <with> ::= "WITH" <SP> <protocol> <SP>
  1050.             <id> ::= "ID" <SP> <string> <SP>
  1051.             <for> ::= "FOR" <SP> <path> <SP>
  1052.             <link> ::= The standard names for links are registered with
  1053.                       the Network Information Center.
  1054.             <protocol> ::= The standard names for protocols are
  1055.                       registered with the Network Information Center.
  1056.             <daytime> ::= <SP> <date> <SP> <time>
  1057.             <date> ::= <dd> <SP> <mon> <SP> <yy>
  1058.             <time> ::= <hh> ":" <mm> ":" <ss> <SP> <zone>
  1059.             <dd> ::= the one or two decimal integer day of the month in
  1060.                       the range 1 to 31.
  1061.             <mon> ::= "JAN" | "FEB" | "MAR" | "APR" | "MAY" | "JUN" |
  1062.                       "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC"
  1063.             <yy> ::= the two decimal integer year of the century in the
  1064.                       range 00 to 99.
  1065. [Page 32]                                                         Postel
  1066.                                                                         
  1067. RFC 821                                                      August 1982
  1068.                                            Simple Mail Transfer Protocol
  1069.             <hh> ::= the two decimal integer hour of the day in the
  1070.                       range 00 to 24.
  1071.             <mm> ::= the two decimal integer minute of the hour in the
  1072.                       range 00 to 59.
  1073.             <ss> ::= the two decimal integer second of the minute in the
  1074.                       range 00 to 59.
  1075.             <zone> ::= "UT" for Universal Time (the default) or other
  1076.                       time zone designator (as in [2]).
  1077.             
  1078.      -------------------------------------------------------------
  1079.                           Return Path Example
  1080.          Return-Path: <@CHARLIE.ARPA,@BAKER.ARPA:JOE@ABLE.ARPA>
  1081.                                Example 9
  1082.      -------------------------------------------------------------
  1083.      -------------------------------------------------------------
  1084.                         Time Stamp Line Example
  1085.       Received: FROM ABC.ARPA BY XYZ.ARPA ; 22 OCT 81 09:23:59 PDT
  1086.          Received: from ABC.ARPA by XYZ.ARPA via TELENET with X25
  1087.                    id M12345 for Smith@PDQ.ARPA ; 22 OCT 81 09:23:59 PDT
  1088.                                Example 10
  1089.       -------------------------------------------------------------
  1090. Postel                                                         [Page 33]
  1091.                                                                         
  1092. August 1982                                                      RFC 821
  1093. Simple Mail Transfer Protocol                                           
  1094.    4.2.  SMTP REPLIES
  1095.       Replies to SMTP commands are devised to ensure the synchronization
  1096.       of requests and actions in the process of mail transfer, and to
  1097.       guarantee that the sender-SMTP always knows the state of the
  1098.       receiver-SMTP.  Every command must generate exactly one reply.
  1099.          The details of the command-reply sequence are made explicit in
  1100.          Section 5.3 on Sequencing and Section 5.4 State Diagrams.
  1101.       An SMTP reply consists of a three digit number (transmitted as
  1102.       three alphanumeric characters) followed by some text.  The number
  1103.       is intended for use by automata to determine what state to enter
  1104.       next; the text is meant for the human user.  It is intended that
  1105.       the three digits contain enough encoded information that the
  1106.       sender-SMTP need not examine the text and may either discard it or
  1107.       pass it on to the user, as appropriate.  In particular, the text
  1108.       may be receiver-dependent and context dependent, so there are
  1109.       likely to be varying texts for each reply code.  A discussion of
  1110.       the theory of reply codes is given in Appendix E.  Formally, a
  1111.       reply is defined to be the sequence:  a three-digit code, <SP>,
  1112.       one line of text, and <CRLF>, or a multiline reply (as defined in
  1113.       Appendix E).  Only the EXPN and HELP commands are expected to
  1114.       result in multiline replies in normal circumstances, however
  1115.       multiline replies are allowed for any command.
  1116. [Page 34]                                                         Postel
  1117.                                                                         
  1118. RFC 821                                                      August 1982
  1119.                                            Simple Mail Transfer Protocol
  1120.       4.2.1.  REPLY CODES BY FUNCTION GROUPS
  1121.          500 Syntax error, command unrecognized
  1122.             [This may include errors such as command line too long]
  1123.          501 Syntax error in parameters or arguments
  1124.          502 Command not implemented
  1125.          503 Bad sequence of commands
  1126.          504 Command parameter not implemented
  1127.           
  1128.          211 System status, or system help reply
  1129.          214 Help message
  1130.             [Information on how to use the receiver or the meaning of a
  1131.             particular non-standard command; this reply is useful only
  1132.             to the human user]
  1133.           
  1134.          220 <domain> Service ready
  1135.          221 <domain> Service closing transmission channel
  1136.          421 <domain> Service not available,
  1137.              closing transmission channel
  1138.             [This may be a reply to any command if the service knows it
  1139.             must shut down]
  1140.           
  1141.          250 Requested mail action okay, completed
  1142.          251 User not local; will forward to <forward-path>
  1143.          450 Requested mail action not taken: mailbox unavailable
  1144.             [E.g., mailbox busy]
  1145.          550 Requested action not taken: mailbox unavailable
  1146.             [E.g., mailbox not found, no access]
  1147.          451 Requested action aborted: error in processing
  1148.          551 User not local; please try <forward-path>
  1149.          452 Requested action not taken: insufficient system storage
  1150.          552 Requested mail action aborted: exceeded storage allocation
  1151.          553 Requested action not taken: mailbox name not allowed
  1152.             [E.g., mailbox syntax incorrect]
  1153.          354 Start mail input; end with <CRLF>.<CRLF>
  1154.          554 Transaction failed
  1155.          
  1156. Postel                                                         [Page 35]
  1157.                                                                         
  1158. August 1982                                                      RFC 821
  1159. Simple Mail Transfer Protocol                                           
  1160.       4.2.2.  NUMERIC ORDER LIST OF REPLY CODES
  1161.          211 System status, or system help reply
  1162.          214 Help message
  1163.             [Information on how to use the receiver or the meaning of a
  1164.             particular non-standard command; this reply is useful only
  1165.             to the human user]
  1166.          220 <domain> Service ready
  1167.          221 <domain> Service closing transmission channel
  1168.          250 Requested mail action okay, completed
  1169.          251 User not local; will forward to <forward-path>
  1170.           
  1171.          354 Start mail input; end with <CRLF>.<CRLF>
  1172.           
  1173.          421 <domain> Service not available,
  1174.              closing transmission channel
  1175.             [This may be a reply to any command if the service knows it
  1176.             must shut down]
  1177.          450 Requested mail action not taken: mailbox unavailable
  1178.             [E.g., mailbox busy]
  1179.          451 Requested action aborted: local error in processing
  1180.          452 Requested action not taken: insufficient system storage
  1181.           
  1182.          500 Syntax error, command unrecognized
  1183.             [This may include errors such as command line too long]
  1184.          501 Syntax error in parameters or arguments
  1185.          502 Command not implemented
  1186.          503 Bad sequence of commands
  1187.          504 Command parameter not implemented
  1188.          550 Requested action not taken: mailbox unavailable
  1189.             [E.g., mailbox not found, no access]
  1190.          551 User not local; please try <forward-path>
  1191.          552 Requested mail action aborted: exceeded storage allocation
  1192.          553 Requested action not taken: mailbox name not allowed
  1193.             [E.g., mailbox syntax incorrect]
  1194.          554 Transaction failed
  1195.          
  1196. [Page 36]                                                         Postel
  1197.                                                                         
  1198. RFC 821                                                      August 1982
  1199.                                            Simple Mail Transfer Protocol
  1200.    4.3.  SEQUENCING OF COMMANDS AND REPLIES
  1201.       The communication between the sender and receiver is intended to
  1202.       be an alternating dialogue, controlled by the sender.  As such,
  1203.       the sender issues a command and the receiver responds with a
  1204.       reply.  The sender must wait for this response before sending
  1205.       further commands.
  1206.       One important reply is the connection greeting.  Normally, a
  1207.       receiver will send a 220 "Service ready" reply when the connection
  1208.       is completed.  The sender should wait for this greeting message
  1209.       before sending any commands.
  1210.          Note: all the greeting type replies have the official name of
  1211.          the server host as the first word following the reply code.
  1212.             For example,
  1213.                220 <SP> USC-ISIF.ARPA <SP> Service ready <CRLF>
  1214.       The table below lists alternative success and failure replies for
  1215.       each command.  These must be strictly adhered to; a receiver may
  1216.       substitute text in the replies, but the meaning and action implied
  1217.       by the code numbers and by the specific command reply sequence
  1218.       cannot be altered.
  1219.       COMMAND-REPLY SEQUENCES
  1220.          Each command is listed with its possible replies.  The prefixes
  1221.          used before the possible replies are "P" for preliminary (not
  1222.          used in SMTP), "I" for intermediate, "S" for success, "F" for
  1223.          failure, and "E" for error.  The 421 reply (service not
  1224.          available, closing transmission channel) may be given to any
  1225.          command if the SMTP-receiver knows it must shut down.  This
  1226.          listing forms the basis for the State Diagrams in Section 4.4.
  1227.             CONNECTION ESTABLISHMENT
  1228.                S: 220
  1229.                F: 421
  1230.             HELO
  1231.                S: 250
  1232.                E: 500, 501, 504, 421
  1233.             MAIL
  1234.                S: 250
  1235.                F: 552, 451, 452
  1236.                E: 500, 501, 421
  1237. Postel                                                         [Page 37]
  1238.                                                                         
  1239. August 1982                                                      RFC 821
  1240. Simple Mail Transfer Protocol                                           
  1241.             RCPT
  1242.                S: 250, 251
  1243.                F: 550, 551, 552, 553, 450, 451, 452
  1244.                E: 500, 501, 503, 421
  1245.             DATA
  1246.                I: 354 -> data -> S: 250
  1247.                                  F: 552, 554, 451, 452
  1248.                F: 451, 554
  1249.                E: 500, 501, 503, 421
  1250.             RSET
  1251.                S: 250
  1252.                E: 500, 501, 504, 421
  1253.             SEND
  1254.                S: 250
  1255.                F: 552, 451, 452
  1256.                E: 500, 501, 502, 421
  1257.             SOML
  1258.                S: 250
  1259.                F: 552, 451, 452
  1260.                E: 500, 501, 502, 421
  1261.             SAML
  1262.                S: 250
  1263.                F: 552, 451, 452
  1264.                E: 500, 501, 502, 421
  1265.             VRFY
  1266.                S: 250, 251
  1267.                F: 550, 551, 553
  1268.                E: 500, 501, 502, 504, 421
  1269.             EXPN
  1270.                S: 250
  1271.                F: 550
  1272.                E: 500, 501, 502, 504, 421
  1273.             HELP
  1274.                S: 211, 214
  1275.                E: 500, 501, 502, 504, 421
  1276.             NOOP
  1277.                S: 250
  1278.                E: 500, 421
  1279.             QUIT
  1280.                S: 221
  1281.                E: 500
  1282.             TURN
  1283.                S: 250
  1284.                F: 502
  1285.                E: 500, 503
  1286. [Page 38]                                                         Postel
  1287.                                                                         
  1288. RFC 821                                                      August 1982
  1289.                                            Simple Mail Transfer Protocol
  1290.    4.4.  STATE DIAGRAMS
  1291.       Following are state diagrams for a simple-minded SMTP
  1292.       implementation.  Only the first digit of the reply codes is used.
  1293.       There is one state diagram for each group of SMTP commands.  The
  1294.       command groupings were determined by constructing a model for each
  1295.       command and then collecting together the commands with
  1296.       structurally identical models.
  1297.       For each command there are three possible outcomes:  "success"
  1298.       (S), "failure" (F), and "error" (E). In the state diagrams below
  1299.       we use the symbol B for "begin", and the symbol W for "wait for
  1300.       reply".
  1301.       First, the diagram that represents most of the SMTP commands:
  1302.          
  1303.                                   1,3    +---+
  1304.                              ----------->| E |
  1305.                             |            +---+
  1306.                             |
  1307.          +---+    cmd    +---+    2      +---+
  1308.          | B |---------->| W |---------->| S |
  1309.          +---+           +---+           +---+
  1310.                             |
  1311.                             |     4,5    +---+
  1312.                              ----------->| F |
  1313.                                          +---+
  1314.          
  1315.          This diagram models the commands:
  1316.             HELO, MAIL, RCPT, RSET, SEND, SOML, SAML, VRFY, EXPN, HELP,
  1317.             NOOP, QUIT, TURN.
  1318. Postel                                                         [Page 39]
  1319.                                                                         
  1320. August 1982                                                      RFC 821
  1321. Simple Mail Transfer Protocol                                           
  1322.       A more complex diagram models the DATA command:
  1323.          
  1324.          +---+   DATA    +---+ 1,2                 +---+
  1325.          | B |---------->| W |-------------------->| E |
  1326.          +---+           +---+        ------------>+---+
  1327.                          3| |4,5     |
  1328.                           | |        |
  1329.             --------------   -----   |
  1330.            |                      |  |             +---+
  1331.            |               ----------     -------->| S |
  1332.            |              |       |      |         +---+
  1333.            |              |  ------------
  1334.            |              | |     |
  1335.            V           1,3| |2    |
  1336.          +---+   data    +---+     --------------->+---+
  1337.          |   |---------->| W |                     | F |
  1338.          +---+           +---+-------------------->+---+
  1339.                               4,5
  1340.          Note that the "data" here is a series of lines sent from the
  1341.          sender to the receiver with no response expected until the last
  1342.          line is sent.
  1343. [Page 40]                                                         Postel
  1344.                                                                         
  1345. RFC 821                                                      August 1982
  1346.                                            Simple Mail Transfer Protocol
  1347.    4.5.  DETAILS
  1348.       4.5.1.  MINIMUM IMPLEMENTATION
  1349.          In order to make SMTP workable, the following minimum
  1350.          implementation is required for all receivers:
  1351.             COMMANDS -- HELO
  1352.                         MAIL
  1353.                         RCPT
  1354.                         DATA
  1355.                         RSET
  1356.                         NOOP
  1357.                         QUIT
  1358.       4.5.2.  TRANSPARENCY
  1359.          Without some provision for data transparency the character
  1360.          sequence "<CRLF>.<CRLF>" ends the mail text and cannot be sent
  1361.          by the user.  In general, users are not aware of such
  1362.          "forbidden" sequences.  To allow all user composed text to be
  1363.          transmitted transparently the following procedures are used.
  1364.             1. Before sending a line of mail text the sender-SMTP checks
  1365.             the first character of the line.  If it is a period, one
  1366.             additional period is inserted at the beginning of the line.
  1367.             2. When a line of mail text is received by the receiver-SMTP
  1368.             it checks the line.  If the line is composed of a single
  1369.             period it is the end of mail.  If the first character is a
  1370.             period and there are other characters on the line, the first
  1371.             character is deleted.
  1372.          The mail data may contain any of the 128 ASCII characters.  All
  1373.          characters are to be delivered to the recipient's mailbox
  1374.          including format effectors and other control characters.  If
  1375.          the transmission channel provides an 8-bit byte (octets) data
  1376.          stream, the 7-bit ASCII codes are transmitted right justified
  1377.          in the octets with the high order bits cleared to zero.
  1378.             In some systems it may be necessary to transform the data as
  1379.             it is received and stored.  This may be necessary for hosts
  1380.             that use a different character set than ASCII as their local
  1381.             character set, or that store data in records rather than
  1382. Postel                                                         [Page 41]
  1383.                                                                         
  1384. August 1982                                                      RFC 821
  1385. Simple Mail Transfer Protocol                                           
  1386.             strings.  If such transforms are necessary, they must be
  1387.             reversible -- especially if such transforms are applied to
  1388.             mail being relayed.
  1389.       4.5.3.  SIZES
  1390.          There are several objects that have required minimum maximum
  1391.          sizes.  That is, every implementation must be able to receive
  1392.          objects of at least these sizes, but must not send objects
  1393.          larger than these sizes.
  1394.                                     
  1395.           ****************************************************
  1396.           *                                                  *
  1397.           *  TO THE MAXIMUM EXTENT POSSIBLE, IMPLEMENTATION  *
  1398.           *  TECHNIQUES WHICH IMPOSE NO LIMITS ON THE LENGTH *
  1399.           *  OF THESE OBJECTS SHOULD BE USED.                *
  1400.           *                                                  *
  1401.           ****************************************************
  1402.             user
  1403.                The maximum total length of a user name is 64 characters.
  1404.             domain
  1405.                The maximum total length of a domain name or number is 64
  1406.                characters.
  1407.             path
  1408.                The maximum total length of a reverse-path or
  1409.                forward-path is 256 characters (including the punctuation
  1410.                and element separators).
  1411.             command line
  1412.                The maximum total length of a command line including the
  1413.                command word and the <CRLF> is 512 characters.
  1414.             reply line
  1415.                The maximum total length of a reply line including the
  1416.                reply code and the <CRLF> is 512 characters.
  1417. [Page 42]                                                         Postel
  1418.                                                                         
  1419. RFC 821                                                      August 1982
  1420.                                            Simple Mail Transfer Protocol
  1421.             text line
  1422.                The maximum total length of a text line including the
  1423.                <CRLF> is 1000 characters (but not counting the leading
  1424.                dot duplicated for transparency).
  1425.             recipients buffer
  1426.                The maximum total number of recipients that must be
  1427.                buffered is 100 recipients.
  1428.                                     
  1429.           ****************************************************
  1430.           *                                                  *
  1431.           *  TO THE MAXIMUM EXTENT POSSIBLE, IMPLEMENTATION  *
  1432.           *  TECHNIQUES WHICH IMPOSE NO LIMITS ON THE LENGTH *
  1433.           *  OF THESE OBJECTS SHOULD BE USED.                *
  1434.           *                                                  *
  1435.           ****************************************************
  1436.          Errors due to exceeding these limits may be reported by using
  1437.          the reply codes, for example:
  1438.             500 Line too long.
  1439.             501 Path too long
  1440.             552 Too many recipients.
  1441.             552 Too much mail data.
  1442. Postel                                                         [Page 43]
  1443.                                                                         
  1444. August 1982                                                      RFC 821
  1445. Simple Mail Transfer Protocol                                           
  1446. APPENDIX A
  1447.    TCP Transport service
  1448.       The Transmission Control Protocol [3] is used in the ARPA
  1449.       Internet, and in any network following the US DoD standards for
  1450.       internetwork protocols.
  1451.       Connection Establishment
  1452.          The SMTP transmission channel is a TCP connection established
  1453.          between the sender process port U and the receiver process port
  1454.          L.  This single full duplex connection is used as the
  1455.          transmission channel.  This protocol is assigned the service
  1456.          port 25 (31 octal), that is L=25.
  1457.       Data Transfer
  1458.          The TCP connection supports the transmission of 8-bit bytes.
  1459.          The SMTP data is 7-bit ASCII characters.  Each character is
  1460.          transmitted as an 8-bit byte with the high-order bit cleared to
  1461.          zero.
  1462. [Page 44]                                                         Postel
  1463.                                                                         
  1464. RFC 821                                                      August 1982
  1465.                                            Simple Mail Transfer Protocol
  1466. APPENDIX B
  1467.    NCP Transport service
  1468.       The ARPANET Host-to-Host Protocol [4] (implemented by the Network
  1469.       Control Program) may be used in the ARPANET.
  1470.       Connection Establishment
  1471.          The SMTP transmission channel is established via NCP between
  1472.          the sender process socket U and receiver process socket L.  The
  1473.          Initial Connection Protocol [5] is followed resulting in a pair
  1474.          of simplex connections.  This pair of connections is used as
  1475.          the transmission channel.  This protocol is assigned the
  1476.          contact socket 25 (31 octal), that is L=25.
  1477.       Data Transfer
  1478.          The NCP data connections are established in 8-bit byte mode.
  1479.          The SMTP data is 7-bit ASCII characters.  Each character is
  1480.          transmitted as an 8-bit byte with the high-order bit cleared to
  1481.          zero.
  1482. Postel                                                         [Page 45]
  1483.                                                                         
  1484. August 1982                                                      RFC 821
  1485. Simple Mail Transfer Protocol                                           
  1486. APPENDIX C
  1487.    NITS
  1488.       The Network Independent Transport Service [6] may be used.
  1489.       Connection Establishment
  1490.          The SMTP transmission channel is established via NITS between
  1491.          the sender process and receiver process.  The sender process
  1492.          executes the CONNECT primitive, and the waiting receiver
  1493.          process executes the ACCEPT primitive.
  1494.       Data Transfer
  1495.          The NITS connection supports the transmission of 8-bit bytes.
  1496.          The SMTP data is 7-bit ASCII characters.  Each character is
  1497.          transmitted as an 8-bit byte with the high-order bit cleared to
  1498.          zero.
  1499. [Page 46]                                                         Postel
  1500.                                                                         
  1501. RFC 821                                                      August 1982
  1502.                                            Simple Mail Transfer Protocol
  1503. APPENDIX D
  1504.    X.25 Transport service
  1505.       It may be possible to use the X.25 service [7] as provided by the
  1506.       Public Data Networks directly, however, it is suggested that a
  1507.       reliable end-to-end protocol such as TCP be used on top of X.25
  1508.       connections.
  1509. Postel                                                         [Page 47]
  1510.                                                                         
  1511. August 1982                                                      RFC 821
  1512. Simple Mail Transfer Protocol                                           
  1513. APPENDIX E
  1514.    Theory of Reply Codes
  1515.       The three digits of the reply each have a special significance.
  1516.       The first digit denotes whether the response is good, bad or
  1517.       incomplete.  An unsophisticated sender-SMTP will be able to
  1518.       determine its next action (proceed as planned, redo, retrench,
  1519.       etc.) by simply examining this first digit.  A sender-SMTP that
  1520.       wants to know approximately what kind of error occurred (e.g.,
  1521.       mail system error, command syntax error) may examine the second
  1522.       digit, reserving the third digit for the finest gradation of
  1523.       information.
  1524.          There are five values for the first digit of the reply code:
  1525.             1yz   Positive Preliminary reply
  1526.                The command has been accepted, but the requested action
  1527.                is being held in abeyance, pending confirmation of the
  1528.                information in this reply.  The sender-SMTP should send
  1529.                another command specifying whether to continue or abort
  1530.                the action.
  1531.                   [Note: SMTP does not have any commands that allow this
  1532.                   type of reply, and so does not have the continue or
  1533.                   abort commands.]
  1534.             2yz   Positive Completion reply
  1535.                The requested action has been successfully completed.  A
  1536.                new request may be initiated.
  1537.             3yz   Positive Intermediate reply
  1538.                The command has been accepted, but the requested action
  1539.                is being held in abeyance, pending receipt of further
  1540.                information.  The sender-SMTP should send another command
  1541.                specifying this information.  This reply is used in
  1542.                command sequence groups.
  1543.             4yz   Transient Negative Completion reply
  1544.                The command was not accepted and the requested action did
  1545.                not occur.  However, the error condition is temporary and
  1546.                the action may be requested again.  The sender should
  1547. [Page 48]                                                         Postel
  1548.                                                                         
  1549. RFC 821                                                      August 1982
  1550.                                            Simple Mail Transfer Protocol
  1551.                return to the beginning of the command sequence (if any).
  1552.                It is difficult to assign a meaning to "transient" when
  1553.                two different sites (receiver- and sender- SMTPs) must
  1554.                agree on the interpretation.  Each reply in this category
  1555.                might have a different time value, but the sender-SMTP is
  1556.                encouraged to try again.  A rule of thumb to determine if
  1557.                a reply fits into the 4yz or the 5yz category (see below)
  1558.                is that replies are 4yz if they can be repeated without
  1559.                any change in command form or in properties of the sender
  1560.                or receiver.  (E.g., the command is repeated identically
  1561.                and the receiver does not put up a new implementation.)
  1562.             5yz   Permanent Negative Completion reply
  1563.                The command was not accepted and the requested action did
  1564.                not occur.  The sender-SMTP is discouraged from repeating
  1565.                the exact request (in the same sequence).  Even some
  1566.                "permanent" error conditions can be corrected, so the
  1567.                human user may want to direct the sender-SMTP to
  1568.                reinitiate the command sequence by direct action at some
  1569.                point in the future (e.g., after the spelling has been
  1570.                changed, or the user has altered the account status).
  1571.          The second digit encodes responses in specific categories:
  1572.             x0z   Syntax -- These replies refer to syntax errors,
  1573.                   syntactically correct commands that don't fit any
  1574.                   functional category, and unimplemented or superfluous
  1575.                   commands.
  1576.             x1z   Information --  These are replies to requests for
  1577.                   information, such as status or help.
  1578.             x2z   Connections -- These are replies referring to the
  1579.                   transmission channel.
  1580.             x3z   Unspecified as yet.
  1581.             x4z   Unspecified as yet.
  1582.             x5z   Mail system -- These replies indicate the status of
  1583.                   the receiver mail system vis-a-vis the requested
  1584.                   transfer or other mail system action.
  1585.          The third digit gives a finer gradation of meaning in each
  1586.          category specified by the second digit.  The list of replies
  1587. Postel                                                         [Page 49]
  1588.                                                                         
  1589. August 1982                                                      RFC 821
  1590. Simple Mail Transfer Protocol                                           
  1591.          illustrates this.  Each reply text is recommended rather than
  1592.          mandatory, and may even change according to the command with
  1593.          which it is associated.  On the other hand, the reply codes
  1594.          must strictly follow the specifications in this section.
  1595.          Receiver implementations should not invent new codes for
  1596.          slightly different situations from the ones described here, but
  1597.          rather adapt codes already defined.
  1598.          For example, a command such as NOOP whose successful execution
  1599.          does not offer the sender-SMTP any new information will return
  1600.          a 250 reply.  The response is 502 when the command requests an
  1601.          unimplemented non-site-specific action.  A refinement of that
  1602.          is the 504 reply for a command that is implemented, but that
  1603.          requests an unimplemented parameter.
  1604.       The reply text may be longer than a single line; in these cases
  1605.       the complete text must be marked so the sender-SMTP knows when it
  1606.       can stop reading the reply.  This requires a special format to
  1607.       indicate a multiple line reply.
  1608.          The format for multiline replies requires that every line,
  1609.          except the last, begin with the reply code, followed
  1610.          immediately by a hyphen, "-" (also known as minus), followed by
  1611.          text.  The last line will begin with the reply code, followed
  1612.          immediately by <SP>, optionally some text, and <CRLF>.
  1613.             For example:
  1614.                                 123-First line
  1615.                                 123-Second line
  1616.                                 123-234 text beginning with numbers
  1617.                                 123 The last line
  1618.          In many cases the sender-SMTP then simply needs to search for
  1619.          the reply code followed by <SP> at the beginning of a line, and
  1620.          ignore all preceding lines.  In a few cases, there is important
  1621.          data for the sender in the reply "text".  The sender will know
  1622.          these cases from the current context.
  1623. [Page 50]                                                         Postel
  1624.                                                                         
  1625. RFC 821                                                      August 1982
  1626.                                            Simple Mail Transfer Protocol
  1627. APPENDIX F
  1628.    Scenarios
  1629.       This section presents complete scenarios of several types of SMTP
  1630.       sessions.
  1631.    A Typical SMTP Transaction Scenario
  1632.       This SMTP example shows mail sent by Smith at host USC-ISIF, to
  1633.       Jones, Green, and Brown at host BBN-UNIX.  Here we assume that
  1634.       host USC-ISIF contacts host BBN-UNIX directly.  The mail is
  1635.       accepted for Jones and Brown.  Green does not have a mailbox at
  1636.       host BBN-UNIX.
  1637.       -------------------------------------------------------------
  1638.          R: 220 BBN-UNIX.ARPA Simple Mail Transfer Service Ready
  1639.          S: HELO USC-ISIF.ARPA
  1640.          R: 250 BBN-UNIX.ARPA
  1641.          S: MAIL FROM:<Smith@USC-ISIF.ARPA>
  1642.          R: 250 OK
  1643.          S: RCPT TO:<Jones@BBN-UNIX.ARPA>
  1644.          R: 250 OK
  1645.          S: RCPT TO:<Green@BBN-UNIX.ARPA>
  1646.          R: 550 No such user here
  1647.          S: RCPT TO:<Brown@BBN-UNIX.ARPA>
  1648.          R: 250 OK
  1649.          S: DATA
  1650.          R: 354 Start mail input; end with <CRLF>.<CRLF>
  1651.          S: Blah blah blah...
  1652.          S: ...etc. etc. etc.
  1653.          S: .
  1654.          R: 250 OK
  1655.          S: QUIT
  1656.          R: 221 BBN-UNIX.ARPA Service closing transmission channel
  1657.                                Scenario 1
  1658.       -------------------------------------------------------------
  1659. Postel                                                         [Page 51]
  1660.                                                                         
  1661. August 1982                                                      RFC 821
  1662. Simple Mail Transfer Protocol                                           
  1663.    Aborted SMTP Transaction Scenario
  1664.       -------------------------------------------------------------
  1665.          R: 220 MIT-Multics.ARPA Simple Mail Transfer Service Ready
  1666.          S: HELO ISI-VAXA.ARPA
  1667.          R: 250 MIT-Multics.ARPA
  1668.          S: MAIL FROM:<Smith@ISI-VAXA.ARPA>
  1669.          R: 250 OK
  1670.          S: RCPT TO:<Jones@MIT-Multics.ARPA>
  1671.          R: 250 OK
  1672.          S: RCPT TO:<Green@MIT-Multics.ARPA>
  1673.          R: 550 No such user here
  1674.          S: RSET
  1675.          R: 250 OK
  1676.          S: QUIT
  1677.          R: 221 MIT-Multics.ARPA Service closing transmission channel
  1678.                                Scenario 2
  1679.       -------------------------------------------------------------
  1680. [Page 52]                                                         Postel
  1681.                                                                         
  1682. RFC 821                                                      August 1982
  1683.                                            Simple Mail Transfer Protocol
  1684.    Relayed Mail Scenario
  1685.       -------------------------------------------------------------
  1686.          Step 1  --  Source Host to Relay Host
  1687.             R: 220 USC-ISIE.ARPA Simple Mail Transfer Service Ready
  1688.             S: HELO MIT-AI.ARPA
  1689.             R: 250 USC-ISIE.ARPA
  1690.             S: MAIL FROM:<JQP@MIT-AI.ARPA>
  1691.             R: 250 OK
  1692.             S: RCPT TO:<@USC-ISIE.ARPA:Jones@BBN-VAX.ARPA>
  1693.             R: 250 OK
  1694.             S: DATA
  1695.             R: 354 Start mail input; end with <CRLF>.<CRLF>
  1696.             S: Date: 2 Nov 81 22:33:44
  1697.             S: From: John Q. Public <JQP@MIT-AI.ARPA>
  1698.             S: Subject:  The Next Meeting of the Board
  1699.             S: To: Jones@BBN-Vax.ARPA
  1700.             S:
  1701.             S: Bill:
  1702.             S: The next meeting of the board of directors will be
  1703.             S: on Tuesday.
  1704.             S:                                              John.
  1705.             S: .
  1706.             R: 250 OK
  1707.             S: QUIT
  1708.             R: 221 USC-ISIE.ARPA Service closing transmission channel
  1709. Postel                                                         [Page 53]
  1710.                                                                         
  1711. August 1982                                                      RFC 821
  1712. Simple Mail Transfer Protocol                                           
  1713.          Step 2  --  Relay Host to Destination Host
  1714.             R: 220 BBN-VAX.ARPA Simple Mail Transfer Service Ready
  1715.             S: HELO USC-ISIE.ARPA
  1716.             R: 250 BBN-VAX.ARPA
  1717.             S: MAIL FROM:<@USC-ISIE.ARPA:JQP@MIT-AI.ARPA>
  1718.             R: 250 OK
  1719.             S: RCPT TO:<Jones@BBN-VAX.ARPA>
  1720.             R: 250 OK
  1721.             S: DATA
  1722.             R: 354 Start mail input; end with <CRLF>.<CRLF>
  1723.             S: Received: from MIT-AI.ARPA by USC-ISIE.ARPA ;
  1724.                2 Nov 81 22:40:10 UT
  1725.             S: Date: 2 Nov 81 22:33:44
  1726.             S: From: John Q. Public <JQP@MIT-AI.ARPA>
  1727.             S: Subject:  The Next Meeting of the Board
  1728.             S: To: Jones@BBN-Vax.ARPA
  1729.             S:
  1730.             S: Bill:
  1731.             S: The next meeting of the board of directors will be
  1732.             S: on Tuesday.
  1733.             S:                                              John.
  1734.             S: .
  1735.             R: 250 OK
  1736.             S: QUIT
  1737.             R: 221 USC-ISIE.ARPA Service closing transmission channel
  1738.                                Scenario 3
  1739.       -------------------------------------------------------------
  1740. [Page 54]                                                         Postel
  1741.                                                                         
  1742. RFC 821                                                      August 1982
  1743.                                            Simple Mail Transfer Protocol
  1744.    Verifying and Sending Scenario
  1745.       -------------------------------------------------------------
  1746.          R: 220 SU-SCORE.ARPA Simple Mail Transfer Service Ready
  1747.          S: HELO MIT-MC.ARPA
  1748.          R: 250 SU-SCORE.ARPA
  1749.          S: VRFY Crispin
  1750.          R: 250 Mark Crispin <Admin.MRC@SU-SCORE.ARPA>
  1751.          S: SEND FROM:<EAK@MIT-MC.ARPA>
  1752.          R: 250 OK
  1753.          S: RCPT TO:<Admin.MRC@SU-SCORE.ARPA>
  1754.          R: 250 OK
  1755.          S: DATA
  1756.          R: 354 Start mail input; end with <CRLF>.<CRLF>
  1757.          S: Blah blah blah...
  1758.          S: ...etc. etc. etc.
  1759.          S: .
  1760.          R: 250 OK
  1761.          S: QUIT
  1762.          R: 221 SU-SCORE.ARPA Service closing transmission channel
  1763.                                Scenario 4
  1764.       -------------------------------------------------------------
  1765. Postel                                                         [Page 55]
  1766.                                                                         
  1767. August 1982                                                      RFC 821
  1768. Simple Mail Transfer Protocol                                           
  1769.    Sending and Mailing Scenarios
  1770.       First the user's name is verified, then  an attempt is made to
  1771.       send to the user's terminal.  When that fails, the messages is
  1772.       mailed to the user's mailbox.
  1773.       -------------------------------------------------------------
  1774.          R: 220 SU-SCORE.ARPA Simple Mail Transfer Service Ready
  1775.          S: HELO MIT-MC.ARPA
  1776.          R: 250 SU-SCORE.ARPA
  1777.          S: VRFY Crispin
  1778.          R: 250 Mark Crispin <Admin.MRC@SU-SCORE.ARPA>
  1779.          S: SEND FROM:<EAK@MIT-MC.ARPA>
  1780.          R: 250 OK
  1781.          S: RCPT TO:<Admin.MRC@SU-SCORE.ARPA>
  1782.          R: 450 User not active now
  1783.          S: RSET
  1784.          R: 250 OK
  1785.          S: MAIL FROM:<EAK@MIT-MC.ARPA>
  1786.          R: 250 OK
  1787.          S: RCPT TO:<Admin.MRC@SU-SCORE.ARPA>
  1788.          R: 250 OK
  1789.          S: DATA
  1790.          R: 354 Start mail input; end with <CRLF>.<CRLF>
  1791.          S: Blah blah blah...
  1792.          S: ...etc. etc. etc.
  1793.          S: .
  1794.          R: 250 OK
  1795.          S: QUIT
  1796.          R: 221 SU-SCORE.ARPA Service closing transmission channel
  1797.                                Scenario 5
  1798.       -------------------------------------------------------------
  1799. [Page 56]                                                         Postel
  1800.                                                                         
  1801. RFC 821                                                      August 1982
  1802.                                            Simple Mail Transfer Protocol
  1803.       Doing the preceding scenario more efficiently.
  1804.       -------------------------------------------------------------
  1805.          R: 220 SU-SCORE.ARPA Simple Mail Transfer Service Ready
  1806.          S: HELO MIT-MC.ARPA
  1807.          R: 250 SU-SCORE.ARPA
  1808.          S: VRFY Crispin
  1809.          R: 250 Mark Crispin <Admin.MRC@SU-SCORE.ARPA>
  1810.          S: SOML FROM:<EAK@MIT-MC.ARPA>
  1811.          R: 250 OK
  1812.          S: RCPT TO:<Admin.MRC@SU-SCORE.ARPA>
  1813.          R: 250 User not active now, so will do mail.
  1814.          S: DATA
  1815.          R: 354 Start mail input; end with <CRLF>.<CRLF>
  1816.          S: Blah blah blah...
  1817.          S: ...etc. etc. etc.
  1818.          S: .
  1819.          R: 250 OK
  1820.          S: QUIT
  1821.          R: 221 SU-SCORE.ARPA Service closing transmission channel
  1822.                                Scenario 6
  1823.       -------------------------------------------------------------
  1824. Postel                                                         [Page 57]
  1825.                                                                         
  1826. August 1982                                                      RFC 821
  1827. Simple Mail Transfer Protocol                                           
  1828.    Mailing List Scenario
  1829.       First each of two mailing lists are expanded in separate sessions
  1830.       with different hosts.  Then the message is sent to everyone that
  1831.       appeared on either list (but no duplicates) via a relay host.
  1832.       -------------------------------------------------------------
  1833.          Step 1  --  Expanding the First List
  1834.             R: 220 MIT-AI.ARPA Simple Mail Transfer Service Ready
  1835.             S: HELO SU-SCORE.ARPA
  1836.             R: 250 MIT-AI.ARPA
  1837.             S: EXPN Example-People
  1838.             R: 250-<ABC@MIT-MC.ARPA>
  1839.             R: 250-Fred Fonebone <Fonebone@USC-ISIQ.ARPA>
  1840.             R: 250-Xenon Y. Zither <XYZ@MIT-AI.ARPA>
  1841.             R: 250-Quincy Smith <@USC-ISIF.ARPA:Q-Smith@ISI-VAXA.ARPA>
  1842.             R: 250-<joe@foo-unix.ARPA>
  1843.             R: 250 <xyz@bar-unix.ARPA>
  1844.             S: QUIT
  1845.             R: 221 MIT-AI.ARPA Service closing transmission channel
  1846. [Page 58]                                                         Postel
  1847.                                                                         
  1848. RFC 821                                                      August 1982
  1849.                                            Simple Mail Transfer Protocol
  1850.          Step 2  --  Expanding the Second List
  1851.             R: 220 MIT-MC.ARPA Simple Mail Transfer Service Ready
  1852.             S: HELO SU-SCORE.ARPA
  1853.             R: 250 MIT-MC.ARPA
  1854.             S: EXPN Interested-Parties
  1855.             R: 250-Al Calico <ABC@MIT-MC.ARPA>
  1856.             R: 250-<XYZ@MIT-AI.ARPA>
  1857.             R: 250-Quincy Smith <@USC-ISIF.ARPA:Q-Smith@ISI-VAXA.ARPA>
  1858.             R: 250-<fred@BBN-UNIX.ARPA>
  1859.             R: 250 <xyz@bar-unix.ARPA>
  1860.             S: QUIT
  1861.             R: 221 MIT-MC.ARPA Service closing transmission channel
  1862. Postel                                                         [Page 59]
  1863.                                                                         
  1864. August 1982                                                      RFC 821
  1865. Simple Mail Transfer Protocol                                           
  1866.          Step 3  --  Mailing to All via a Relay Host
  1867.             R: 220 USC-ISIE.ARPA Simple Mail Transfer Service Ready
  1868.             S: HELO SU-SCORE.ARPA
  1869.             R: 250 USC-ISIE.ARPA
  1870.             S: MAIL FROM:<Account.Person@SU-SCORE.ARPA>
  1871.             R: 250 OK
  1872.             S: RCPT TO:<@USC-ISIE.ARPA:ABC@MIT-MC.ARPA>
  1873.             R: 250 OK
  1874.             S: RCPT TO:<@USC-ISIE.ARPA:Fonebone@USC-ISIQA.ARPA>
  1875.             R: 250 OK
  1876.             S: RCPT TO:<@USC-ISIE.ARPA:XYZ@MIT-AI.ARPA>
  1877.             R: 250 OK
  1878.             S: RCPT
  1879.                 TO:<@USC-ISIE.ARPA,@USC-ISIF.ARPA:Q-Smith@ISI-VAXA.ARPA>
  1880.             R: 250 OK
  1881.             S: RCPT TO:<@USC-ISIE.ARPA:joe@FOO-UNIX.ARPA>
  1882.             R: 250 OK
  1883.             S: RCPT TO:<@USC-ISIE.ARPA:xyz@BAR-UNIX.ARPA>
  1884.             R: 250 OK
  1885.             S: RCPT TO:<@USC-ISIE.ARPA:fred@BBN-UNIX.ARPA>
  1886.             R: 250 OK
  1887.             S: DATA
  1888.             R: 354 Start mail input; end with <CRLF>.<CRLF>
  1889.             S: Blah blah blah...
  1890.             S: ...etc. etc. etc.
  1891.             S: .
  1892.             R: 250 OK
  1893.             S: QUIT
  1894.             R: 221 USC-ISIE.ARPA Service closing transmission channel
  1895.                                Scenario 7
  1896.       -------------------------------------------------------------
  1897. [Page 60]                                                         Postel
  1898.                                                                         
  1899. RFC 821                                                      August 1982
  1900.                                            Simple Mail Transfer Protocol
  1901.    Forwarding Scenarios
  1902.       -------------------------------------------------------------
  1903.          R: 220 USC-ISIF.ARPA Simple Mail Transfer Service Ready
  1904.          S: HELO LBL-UNIX.ARPA
  1905.          R: 250 USC-ISIF.ARPA
  1906.          S: MAIL FROM:<mo@LBL-UNIX.ARPA>
  1907.          R: 250 OK
  1908.          S: RCPT TO:<fred@USC-ISIF.ARPA>
  1909.          R: 251 User not local; will forward to <Jones@USC-ISI.ARPA>
  1910.          S: DATA
  1911.          R: 354 Start mail input; end with <CRLF>.<CRLF>
  1912.          S: Blah blah blah...
  1913.          S: ...etc. etc. etc.
  1914.          S: .
  1915.          R: 250 OK
  1916.          S: QUIT
  1917.          R: 221 USC-ISIF.ARPA Service closing transmission channel
  1918.                                Scenario 8
  1919.       -------------------------------------------------------------
  1920. Postel                                                         [Page 61]
  1921.                                                                         
  1922. August 1982                                                      RFC 821
  1923. Simple Mail Transfer Protocol                                           
  1924.       -------------------------------------------------------------
  1925.          Step 1  --  Trying the Mailbox at the First Host
  1926.             R: 220 USC-ISIF.ARPA Simple Mail Transfer Service Ready
  1927.             S: HELO LBL-UNIX.ARPA
  1928.             R: 250 USC-ISIF.ARPA
  1929.             S: MAIL FROM:<mo@LBL-UNIX.ARPA>
  1930.             R: 250 OK
  1931.             S: RCPT TO:<fred@USC-ISIF.ARPA>
  1932.             R: 251 User not local; will forward to <Jones@USC-ISI.ARPA>
  1933.             S: RSET
  1934.             R: 250 OK
  1935.             S: QUIT
  1936.             R: 221 USC-ISIF.ARPA Service closing transmission channel
  1937.          Step 2  --  Delivering the Mail at the Second Host
  1938.             R: 220 USC-ISI.ARPA Simple Mail Transfer Service Ready
  1939.             S: HELO LBL-UNIX.ARPA
  1940.             R: 250 USC-ISI.ARPA
  1941.             S: MAIL FROM:<mo@LBL-UNIX.ARPA>
  1942.             R: 250 OK
  1943.             S: RCPT TO:<Jones@USC-ISI.ARPA>
  1944.             R: OK
  1945.             S: DATA
  1946.             R: 354 Start mail input; end with <CRLF>.<CRLF>
  1947.             S: Blah blah blah...
  1948.             S: ...etc. etc. etc.
  1949.             S: .
  1950.             R: 250 OK
  1951.             S: QUIT
  1952.             R: 221 USC-ISI.ARPA Service closing transmission channel
  1953.                                Scenario 9
  1954.       -------------------------------------------------------------
  1955. [Page 62]                                                         Postel
  1956.                                                                         
  1957. RFC 821                                                      August 1982
  1958.                                            Simple Mail Transfer Protocol
  1959.    Too Many Recipients Scenario
  1960.       -------------------------------------------------------------
  1961.          R: 220 BERKELEY.ARPA Simple Mail Transfer Service Ready
  1962.          S: HELO USC-ISIF.ARPA
  1963.          R: 250 BERKELEY.ARPA
  1964.          S: MAIL FROM:<Postel@USC-ISIF.ARPA>
  1965.          R: 250 OK
  1966.          S: RCPT TO:<fabry@BERKELEY.ARPA>
  1967.          R: 250 OK
  1968.          S: RCPT TO:<eric@BERKELEY.ARPA>
  1969.          R: 552 Recipient storage full, try again in another transaction
  1970.          S: DATA
  1971.          R: 354 Start mail input; end with <CRLF>.<CRLF>
  1972.          S: Blah blah blah...
  1973.          S: ...etc. etc. etc.
  1974.          S: .
  1975.          R: 250 OK
  1976.          S: MAIL FROM:<Postel@USC-ISIF.ARPA>
  1977.          R: 250 OK
  1978.          S: RCPT TO:<eric@BERKELEY.ARPA>
  1979.          R: 250 OK
  1980.          S: DATA
  1981.          R: 354 Start mail input; end with <CRLF>.<CRLF>
  1982.          S: Blah blah blah...
  1983.          S: ...etc. etc. etc.
  1984.          S: .
  1985.          R: 250 OK
  1986.          S: QUIT
  1987.          R: 221 BERKELEY.ARPA Service closing transmission channel
  1988.                               Scenario 10
  1989.       -------------------------------------------------------------
  1990.       Note that a real implementation must handle many recipients as
  1991.       specified in Section 4.5.3.