home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc0821.txt < prev    next >
Text File  |  1996-05-07  |  124KB  |  2,676 lines

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