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

  1.  
  2.  
  3. Network Working Group                                          M. Butler Request for Comments: 937                                      J. Postel                                                                 D. Chase                                                            J. Goldberger                                                           J. K. Reynolds Obsoletes: RFC 918                                                   ISI                                                            February 1985 
  4.  
  5.                      POST OFFICE PROTOCOL - VERSION 2 
  6.  
  7.  Status of this Memo 
  8.  
  9.    This RFC suggests a simple method for workstations to dynamically    access mail from a mailbox server.  This RFC specifies a proposed    protocol for the ARPA-Internet community, and requests discussion and    suggestions for improvement.  This memo is a revision of RFC 918.    Distribution of this memo is unlimited. 
  10.  
  11. Introduction 
  12.  
  13.    The intent of the Post Office Protocol Version 2 (POP2) is to allow a    user's workstation to access mail from a mailbox server.  It is    expected that mail will be posted from the workstation to the mailbox    server via the Simple Mail Transfer Protocol (SMTP).  For further    information see RFC-821 [1] and RFC-822 [2]. 
  14.  
  15.    This protocol assumes a reliable data stream such as provided by TCP    or any similar protocol.  When TCP is used, the POP2 server listens    on port 109 [4]. 
  16.  
  17. System Model and Philosophy 
  18.  
  19.    While we view the workstation as an Internet host in the sense that    it implements IP, we do not expect the workstation to contain the    user's mailbox.  We expect the mailbox to be on a server machine. 
  20.  
  21.    We believe it is important for the mailbox to be on an "always up"    machine and that a workstation may be frequently powered down, or    otherwise unavailable as an SMTP server. 
  22.  
  23.    POP2 is designed for an environment of workstations and servers on a    low-delay, high-throughput, local networks (such as Ethernets).  POP2    may be useful in other environments as well, but if the environment    is substantially different, a different division of labor between the    client and server may be appropriate, and a different protocol    required. 
  24.  
  25.    Suppose the user's real name is John Smith, the user's machine is    called FIDO, and that the mailbox server is called DOG-HOUSE.  Then 
  26.  
  27.  
  28.  
  29. Butler, et. al.                                                 [Page 1] 
  30.  
  31.  
  32.  RFC 937                                                    February 1985 Post Office Protocol 
  33.  
  34.     we expect the user's mail to be addressed to JSmith@DOG-HOUSE.ARPA    (not JSmith@FIDO.ARPA). 
  35.  
  36.    That is, the destination of the mail is the mailbox on the server    machine.  The POP2 protocol and the workstation are merely a    mechanism for viewing the messages in the mailbox. 
  37.  
  38.    The user is not tied to any particular workstation for accessing his    mail.  The workstation does not appear as any part of the mailbox    address. 
  39.  
  40.    This is a very simple protocol.  This is not a user interface.  We    expect that there is a program in the workstation that is friendly to    the user.  This protocol is not "user friendly".  One basic rule of    this protocol is "if anything goes wrong close the connection".    Another basic rule is to have few options. 
  41.  
  42.    POP2 does not parse messages in any way.  It does not analyze message    headers (Date:, From:, To:, Cc:, or Subject:).  POP2 simply transmits    whole messages from a mailbox server to a client workstation. 
  43.  
  44. The Protocol 
  45.  
  46.    The POP2 protocol is a sequence of commands and replies.  The design    draws from many previous protocols of the ARPA-Internet community. 
  47.  
  48.       The server must be listening for a connection.  When a connection       is opened the server sends a greeting message and waits for       commands.  When commands are received the server acts on them and       responds with replies. 
  49.  
  50.       The client opens a connection, waits for the greeting, then sends       the HELO command with the user name and password arguments to       establish authorization to access mailboxes.  The server returns       the number of messages in the default mailbox. 
  51.  
  52.       The client may read the default mailbox associated with the user       name or may select another mailbox by using the FOLD command.  The       server returns the number of messages in the mailbox selected. 
  53.  
  54.       The client begins a message reading transaction with a READ       command.  The read command may optionally indicate which message       number to read, the default is the current message (incremented       when a message is read and set to one when a new folder is       selected).  The server returns the number of characters in the       message. 
  55.  
  56.  
  57.  
  58.  Butler, et. al.                                                 [Page 2] 
  59.  
  60.  
  61.  RFC 937                                                    February 1985 Post Office Protocol 
  62.  
  63.        The client asks for the content of the message to be sent with the       RETR command.  The server sends the message data. 
  64.  
  65.       When all the data has been received the client sends an       acknowledgment command.  This is one of ACKS, ACKD, and NACK. 
  66.  
  67.          ACKS means "I've received the message successfully and please          keep it in the mailbox". 
  68.  
  69.          ACKD means "I've received the message successfully and please          delete it from the mailbox". 
  70.  
  71.          NACK means "I did not receive the message and please keep it in          the mailbox". 
  72.  
  73.       In the case of ACKS or ACKD the server increments the current       message indicator.  In the case of NACK the current message       indicator stays the same. 
  74.  
  75.       In all cases the server returns the number of characters in the       (now) current message. 
  76.  
  77.       The client terminates the session with the QUIT command.  The       server returns an ok. 
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  Butler, et. al.                                                 [Page 3] 
  104.  
  105.  
  106.  RFC 937                                                    February 1985 Post Office Protocol 
  107.  
  108.     The Normal Scenario 
  109.  
  110.            Client                    Server            ------                    ------                                 Wait for Connection       Open Connection  -->                            <--  + POP2 Server Ready                                 Wait for Command       HELO Fred Secret -->                            <--  #13 messages for you                                 Wait for Command       READ 13          -->                               <--  =537 characters in that message                                 Wait for Command       RETR             -->                               <--  (send the message data)                                 Wait for Command       ACKS             -->                               <--  =0 no more messages                                 Wait for Command       QUIT             -->                            <--  + OK       Close connection --> <--  Close connection                                 Wait for Connection (go back to start) 
  111.  
  112. Conventions 
  113.  
  114.    Arguments 
  115.  
  116.       These arguments have system specific definitions. 
  117.  
  118.          user - A login account name. 
  119.  
  120.          password - The password for the login account. 
  121.  
  122.          mailbox - A mailbox name (also called a mail folder). 
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  Butler, et. al.                                                 [Page 4] 
  137.  
  138.  
  139.  RFC 937                                                    February 1985 Post Office Protocol 
  140.  
  141.     Default Mailboxes 
  142.  
  143.       TOPS-20 
  144.  
  145.          MAIL.TXT.1 - from login directory 
  146.  
  147.       UNIX 
  148.  
  149.          both             /usr/spool/mail/user          and             /usr/user/Mail/inbox/* 
  150.  
  151.             where "user" is the user value supplied in the HELO command. 
  152.  
  153.    End of Line 
  154.  
  155.       End of Line is Carriage Return (CR) followed by Line Feed (LF).       This sequence is indicated by "CRLF" in this document.  This end       of line convention must be used for commands and replies. 
  156.  
  157.    Message Length 
  158.  
  159.       The reply to the READ command or an acknowledgment command (ACKS,       ACKD, NACK) is the length (a character count) of the next message       to be transmitted.  This includes all the characters in the data       transmitted.  CRLF counts as two characters.  A length of zero       means the message does not exist or is empty.  A request to       transmit a message of zero length will result in the server       closing the connection.  The message is transmitted in the       standard internet format described in RFC-822 [2] and NVT-ASCII.       This may be different from the storage format and may make       computing the message length from the stored message non-trivial. 
  160.  
  161.    Message Numbers 
  162.  
  163.       The reply to the HELO and FOLD commands is a count of the number       of messages in a the selected mailbox.  The READ command has a       message number as an optional argument.  These numbers are       decimal, start at one, and computed with respect to the current       mailbox.  That is, the first message in a mailbox is message       number 1. 
  164.  
  165.    Numbers 
  166.  
  167.       All numbers in this memo and protocol are decimal. 
  168.  
  169.  
  170.  
  171.  Butler, et. al.                                                 [Page 5] 
  172.  
  173.  
  174.  RFC 937                                                    February 1985 Post Office Protocol 
  175.  
  176.     Quoting 
  177.  
  178.       In a few cases, there may be a need to have a special character in       an argument (user, password, or mailbox) that is not allowed by       the syntax.  For example, a space in a password. To allow for       this, a quoting convention is defined.  Unfortunately, such       quoting conventions "use up" another otherwise uninteresting       character.  In this protocol the back slash "\" is used as the       quote character.  To include a space in an argument the two       character sequence "back-slash, space" is transmitted.  To include       a back-slash in an argument the two character sequence       "back-slash, back-slash" is transmitted.  This quoting convention       is used in the command arguments only, it is not used in the mail       data transmitted in response to a RETR command. 
  179.  
  180.    Reply Strings 
  181.  
  182.       The first character is required to be as specified (i.e.,       "+", "-", "=", "#").  The optional strings that follow can be       whatever the implementer thinks is appropriate. 
  183.  
  184. Definitions of Commands and Replies 
  185.  
  186.    Summary of Commands and Replies 
  187.  
  188.       Commands                          Replies       --------                          -------       HELO user password                + OK       FOLD mailbox                      - Error       READ [n]                          #xxx       RETR                              =yyy       ACKS       ACKD       NACK       QUIT 
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204. Butler, et. al.                                                 [Page 6] 
  205.  
  206.  
  207.  RFC 937                                                    February 1985 Post Office Protocol 
  208.  
  209.     Commands 
  210.  
  211.       HELO user password 
  212.  
  213.          The Hello command identifies the user to the server and carries          the password authenticating this user.  This information is          used by the server to control access to the mailboxes.  The          Hello command is the "HELO" keyword, followed by the user          argument, followed by the password argument, followed by CRLF. 
  214.  
  215.             Possible responses: 
  216.  
  217.                "#nnn" 
  218.  
  219.                   where nnn is the number of messages in the default                   mailbox," 
  220.  
  221.                "- error report" and Close the connection. 
  222.  
  223.       FOLD mailbox 
  224.  
  225.          The Folder command selects another mailbox or mail folder.  The          server must check that the user is permitted read access to          this mailbox.  If the mailbox is empty or does not exist, the          number of messages reported is zero.  The Folder command is the          "FOLD" keyword, followed by the mailbox argument, followed by          CRLF. 
  226.  
  227.             Possible responses: 
  228.  
  229.                "#nnn" 
  230.  
  231.                   where nnn is the number of messages in this mailbox. 
  232.  
  233.       READ [nnn] 
  234.  
  235.          The Read command begins a message reading transaction.  If the          Read command is given without an argument the current message          is  implied (the current message indicator is incremented  by          the ACKS or ACKD commands).  If an argument is used with the          Read command it is the message number to be read, and this          command sets the current message indicator to that value.  The          server returns the count of characters in the message to be          transmitted.  If there is no message to be read, the count of          zero is returned.  If the message was previously deleted with          the ACKD command, the count of zero is returned.  The Read          command is followed by the RETR command, the READ command, the          FOLD command, or the QUIT command.  Do not attempt to RETR a 
  236.  
  237.  Butler, et. al.                                                 [Page 7] 
  238.  
  239.  
  240.  RFC 937                                                    February 1985 Post Office Protocol 
  241.  
  242.           message of zero characters.  The Read command is the "READ"          keyword, optionally followed by the message number argument,          followed by CRLF. 
  243.  
  244.             Possible responses: 
  245.  
  246.                "=ccc" 
  247.  
  248.                   where ccc is the number of characters in this message. 
  249.  
  250.       RETR 
  251.  
  252.          The Retrieve command confirms that the client is ready to          receive the mail data.  It must be followed by an          acknowledgment command.  The server will close the connection          if asked to transmit a message of zero characters (i.e.,          transmit a non-existent message).  The message is transmitted          according to the Internet mail format standard RFC-822 [2] in          NVT-ASCII.  The Retrieve command is the "RETR" keyword,          followed by CRLF. 
  253.  
  254.             Possible responses: 
  255.  
  256.                the message data 
  257.  
  258.                Close the connection 
  259.  
  260.       ACKS 
  261.  
  262.          The Acknowledge and Save command confirms that the client has          received and accepted the message.  The ACKS command ends the          message reading transaction.  The message is kept in the          mailbox.  The current message indicator is incremented.  The          server returns the count of characters in the now current          message to be transmitted.  If there is no message to be read          or the message is marked deleted, the count of zero is          returned.  The Acknowledge and Save command is the "ACKS"          keyword, followed by CRLF. 
  263.  
  264.             Possible responses: 
  265.  
  266.                "=ccc" 
  267.  
  268.                   where ccc is the number of characters in the next                   message. 
  269.  
  270.  
  271.  
  272.  
  273.  
  274. Butler, et. al.                                                 [Page 8] 
  275.  
  276.  
  277.  RFC 937                                                    February 1985 Post Office Protocol 
  278.  
  279.        ACKD 
  280.  
  281.          The Acknowledge and Delete command confirms that the client has          received and accepted the message.  The ACKD command ends the          message reading transaction.  If the user is authorized to have          write access to the mailbox, the message is deleted from the          mailbox.  Actually, the message is only marked for deletion.          The actual change is made  when the mailbox is released at the          end of the session or when the client selects another mailbox          with the FOLD command.  The messages are not renumbered until          the mailbox is released.  If the user does not have write          access to the mailbox no change is made to the mailbox.  The          response is the same whether or not the message was actually          deleted.  The current message indicator is incremented.  The          server returns the count of characters in the now current          message to be transmitted.  If there is no message to be read          or the message is marked deleted, the count of zero is          returned.  The Acknowledge and Delete command is the "ACKD"          keyword, followed by CRLF. 
  282.  
  283.             Possible responses: 
  284.  
  285.                "=ccc" 
  286.  
  287.                   where ccc is the number of characters in the next                   message. 
  288.  
  289.       NACK 
  290.  
  291.          The Negative Acknowledge command reports that the client did          not receive the message.  The NACK command ends the message          reading transaction.  The message is kept in the mailbox.  The          current message indicator remains the same.  The server returns          the count of characters in the current message.  Since the          count to be returned is for the message just transmitted it the          message must exist and not be marked deleted, and the count          must be positive (non-zero).  The Negative Acknowledge command          is the "NACK" keyword, followed by CRLF. 
  292.  
  293.             Possible responses: 
  294.  
  295.                "=ccc" 
  296.  
  297.                   where ccc is the number of characters in this message. 
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  Butler, et. al.                                                 [Page 9] 
  304.  
  305.  
  306.  RFC 937                                                    February 1985 Post Office Protocol 
  307.  
  308.        QUIT 
  309.  
  310.          The Quit command indicates the client is done with the session.          The server sends an OK response and then closes the connection.          The Quit command is the "QUIT" keyword, followed by CRLF. 
  311.  
  312.             Possible responses: 
  313.  
  314.                "+ OK" and Close the connection 
  315.  
  316.    Replies 
  317.  
  318.       Greeting 
  319.  
  320.          The greeting is sent by the server as soon as the connection is          established.  The greeting is a plus sign, followed by the          protocol name ("POP2"), followed by the server host name,          optionally followed by text, and ending with a CRLF. 
  321.  
  322.       + 
  323.  
  324.          The success or plus sign response indicates successful          completion of the operation specified in the command.  The          success response is a plus sign, optionally followed by text,          and ending with a CRLF. 
  325.  
  326.       - 
  327.  
  328.          The failure or minus sign response indicates the failure of the          operation specified in the command.  The failure response is a          minus sign, optionally followed by text, and ending with a          CRLF. 
  329.  
  330.       = 
  331.  
  332.          The length or equal sign response tells the length in          characters of the message referenced by the command.  The          length response is a equal sign, followed by a number,          optionally followed by text, and ending with a CRLF. 
  333.  
  334.       # 
  335.  
  336.          The count or number sign response tells the number of messages          in a folder or mailbox referenced by the command.  The count          response is a number sign, followed by a number, optionally          followed by text, and ending with a CRLF. 
  337.  
  338.  
  339.  
  340.  Butler, et. al.                                                [Page 10] 
  341.  
  342.  
  343.  RFC 937                                                    February 1985 Post Office Protocol 
  344.  
  345.     Timeouts 
  346.  
  347.       In any protocol of this type there have to be timeouts.  Neither       side wants to get stuck waiting forever for the other side       (particularly is the other side has gone crazy or crashed). 
  348.  
  349.       The client expects a reply to a command fairly quickly and so       should have a short timeout for this.  This timeout is called T1. 
  350.  
  351.          For some servers, it may take some processing to compute the          number of messages in a mailbox, or the length of a message, or          to reformat a stored message for transmission, so this time out          has to allow for such processing time.  Also care must be taken          not to timeout waiting for the completion of a RETR reply while          a long message is in fact being transfered. 
  352.  
  353.       The server expects the session to progress with some but not       excessive delay between commands and so should have a long timeout       waiting for the next command.  This time out is T2. 
  354.  
  355.          One model of use of this protocol is that any number of          different types of clients can be built with different ways of          interacting with the human user and the server, but still          expecting the client to open the connection to the server,          present a sequence of commands, and close the connection,          without waiting for intervention by the human user.  With such          client implementations, it is reasonable for the server to have          a fairly small value for timeout T2. 
  356.  
  357.          On the other hand, one could easily have the client be very          human user directed with the user making decisions between          commands.  This would cause arbitrary delays between client          commands to the server, and require the value of timeout T2 to          be quite large. 
  358.  
  359. Implementation Discussion 
  360.  
  361.    Comments on a Server on TOPS-20 
  362.  
  363.       On TOPS-20, a mailbox is a single file.  New messages are appended       to the file.  There is a separator line between messages. 
  364.  
  365.       The tricky part of implementing a POP2 server on TOPS-20 is to       provide for deleting messages.  This only has to be done for the       mailboxes (files) for which the user has write access.  The       problem is to avoid both (1) preventing other users from accessing       or updating the mailbox for long periods, and (2) accidentally       deleting a message the user has not seen. 
  366.  
  367.  Butler, et. al.                                                [Page 11] 
  368.  
  369.  
  370.  RFC 937                                                    February 1985 Post Office Protocol 
  371.  
  372.        One suggestion is as follows: 
  373.  
  374.          When a mailbox is first selected, if the user has write access,          rename the mailbox file to some temporary name.  Thus new          messages will be placed in a new instance of the mailbox file.          Conduct all POP2 operation on the temporary mailbox file          (including deleting messages).  When the POP2 session is over          or another mailbox is selected, prepend any messages left          undeleted in the temporary file to the new instance of the          mailbox file. 
  375.  
  376.    Sizes 
  377.  
  378.       The maximum length of a command line is 512 characters (including       the command word and the CRLF). 
  379.  
  380.       The maximum length of a reply line is 512 characters (including       the success indicator (+, -, =, #) and the CRLF). 
  381.  
  382.       The maximum length of a text line is 1000 characters (including       CRLF). 
  383.  
  384.    ISI has developed a POP2 server for TOPS-20 and for Berkeley 4.2    Unix, and a POP2 client for an IBM-PC and for Berkeley 4.2 Unix. 
  385.  
  386. Extensions Not Supported 
  387.  
  388.    POP2 does not examine the internal data of messages.  In particular,    the server does not parse message headers. 
  389.  
  390.    The server doesn't have any state information (i.e., it doesn't know    from one session to the next what has happened).  For example, the    server doesn't know which messages were received since the last time    the user used POP2, so it can't send just the "new" messages. 
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  Butler, et. al.                                                [Page 12] 
  407.  
  408.  
  409.  RFC 937                                                    February 1985 Post Office Protocol 
  410.  
  411.  Examples 
  412.  
  413.    Example 1: 
  414.  
  415.            Client                    Server            ------                    ------                                 Wait for connection       Open connection  -->                            <--  + POP2 USC-ISIF.ARPA Server       HELO POSTEL SECRET -->                            <--  #2 messages in your mailbox       READ             -->                               <--  =537 characters in message 1       RETR             -->                               <--  [data of message 1]       ACKD             -->                               <--  =234 characters in message 2       RETR             -->                               <--  [data of message 2]       ACKD             -->                               <--  =0 no more messages       QUIT             -->                            <--  + OK, bye, bye       Close connection --> <--  Close connection                                 Go back to start 
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441. Butler, et. al.                                                [Page 13] 
  442.  
  443.  
  444.  RFC 937                                                    February 1985 Post Office Protocol 
  445.  
  446.     Example 2: 
  447.  
  448.            Client                    Server            ------                    ------                                 Wait for connection       Open connection  -->                            <--  + POP2 ISI-VAXA.ARPA server here       HELO smith secret -->                            <--  #35 messages       FOLD /usr/spool/mail/smith -->                            <--  #27 messages       READ  27         -->                               <--  =10123 characters in that message       RETR             -->                               <--  [data of message 27]       ACKS             -->                               <--  =0 no more messages       QUIT             -->                            <--  + bye, call again sometime.       Close connection --> <--  Close connection                                 Go back to start 
  449.  
  450.    Example 3: 
  451.  
  452.            Client                    Server            ------                    ------                                 Wait for connection       Open connection  -->                            <--  + POP2 ISI-VAXA.ARPA server here       HELO Jones secret -->                            <--  #0 messages       READ             -->                               <--  Close connection       Close connection -->                                 Go back to start 
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468. Butler, et. al.                                                [Page 14] 
  469.  
  470.  
  471.  RFC 937                                                    February 1985 Post Office Protocol 
  472.  
  473.  Formal Syntax 
  474.  
  475.    <digit>    = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 
  476.  
  477.    <letter>   = A | B | C | ... | Z                 a | b | c | ... | z 
  478.  
  479.    <punct>    = ! | " | # | $ | % | & | ' | ( | ) | * |                 + | , | - | / | : | < | = | > | ? | @ |                 [ | ] | ^ | _ | ` | { | | | } | ~ 
  480.  
  481.    <quote>    = \ 
  482.  
  483.    <any>      = any one of the 128 ASCII codes 
  484.  
  485.    <CR>       = carriage return, code 10 
  486.  
  487.    <LF>       = line feed, code 13 
  488.  
  489.    <SP>       = space, code 32 
  490.  
  491.    <CRLF>     = <CR> <LF> 
  492.  
  493.    <print>    = <letter> | <digit> | <punct> | <quote> <any> 
  494.  
  495.    <char>     = <print> | <SP> 
  496.  
  497.    <word>     = <print> | <print> <word> 
  498.  
  499.    <string>   = <char> | <char> <string> 
  500.  
  501.    <ld>       = <letter> | <digit> 
  502.  
  503.    <ldh>      = <letter> | <digit> | - 
  504.  
  505.    <ldhs>     = <ldh> | <ldh> <ldhs> 
  506.  
  507.    <name>     = <letter> [ [ <ldhs> ] <ld> ] 
  508.  
  509.    <host>     =  <name> | <name> . <host> 
  510.  
  511.    <user>     = <word> 
  512.  
  513.    <password> = <word> 
  514.  
  515.    <mailbox>  = <string> 
  516.  
  517.    <number>   = <digit> | <digit> <number> 
  518.  
  519.  Butler, et. al.                                                [Page 15] 
  520.  
  521.  
  522.  RFC 937                                                    February 1985 Post Office Protocol 
  523.  
  524.     <helo>     = HELO <SP> <user> <SP> <password> <CRLF> 
  525.  
  526.    <fold>     = FOLD <SP> <mailbox> <CRLF> 
  527.  
  528.    <read>     = READ [<SP> <number>] <CRLF> 
  529.  
  530.    <retr>     = RETR <CRLF> 
  531.  
  532.    <acks>     = ACKS <CRLF> 
  533.  
  534.    <ackd>     = ACKD <CRLF> 
  535.  
  536.    <nack>     = NACK <CRLF> 
  537.  
  538.    <quit>     = QUIT <CRLF> 
  539.  
  540.    <ok>       = + [<SP> <string>] <CRLF> 
  541.  
  542.    <err>      = - [<SP> <string>] <CRLF> 
  543.  
  544.    <count>    = # <number> [<SP> <string>] <CRLF> 
  545.  
  546.    <greet>    = + <SP> POP2 <SP> <host> [<SP> <string>] <CRLF> 
  547.  
  548.    <length>   = = <number> [<SP> <string>] <CRLF> 
  549.  
  550.    <command>  = <helo> | <fold> | <read> | <retr> |                 <acks> | <ackd> | <nack> | <quit> 
  551.  
  552.    <reply>    = <ok> | <err> | <count> | <length> | <greet> 
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  Butler, et. al.                                                [Page 16] 
  573.  
  574.  
  575.  RFC 937                                                    February 1985 Post Office Protocol 
  576.  
  577.  Client State Diagram 
  578.  
  579.                               |                    ^  + BYE                             |  Open              |  -----                             |           Greet    |  Close                             V           -----    |                                +-------+       QUIT    +-------+                         | CALL  |-------------->| EXIT  |                         +-------+               +-------+                             |                       ^                                 |  Greet                |                                 |  -----                |                                 |  HELO                 |                     +---->+     |                       |               #NNN  ^     |     |        #NNN           |               ----  |     V     V        ----           |               FOLD  |    +-------+       QUIT           |                     +<---| NMBR  |--------------------->+                          +-------+                      ^                           ^     |                       |                           |     |  #NNN                 |                           |     |  ----                 |                     =CCC  |     |  READ                 |                     ----  |     |                       |                     FOLD  |     |        =CCC           |                           |     V        ----           |               =CCC  +--->+-------+       QUIT           |               ----  ^    | SIZE  |--------------------->+               READ  +<---+-------+                                                  ^     |                                                   |     |  =CCC                                       data  |     |  ----                                       ----  |     |  RETR                                       ack   |     |                                                   |     V                                                  +-------+                                                 | XFER  |                                                 +-------+                                  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  Butler, et. al.                                                [Page 17] 
  590.  
  591.  
  592.  RFC 937                                                    February 1985 Post Office Protocol 
  593.  
  594.  Server State Diagram 
  595.  
  596.                            +<----------------------+  Close                          |                       |  -----                  Listen  |                       |  Close                          V                       |                             +-------+                  +-------+                      | LSTN  |                  | DONE  |                      +-------+                  +-------+                          |                          ^                              |  Open                    |                              |  -----                   |                              |  Greet                   |                              |                          |                              |           QUIT           |                              V           -----          |                          +-------+       + BYE          |                          | AUTH  |--------------------->+                          +-------+                      ^                              |                          |                              |  HELO                    |                              |  ----                    |                              |  #NNN                    |                              |                          |                              |           QUIT           |                              V           -----          |               FOLD  +--->+-------+       + BYE          |               ----  ^    | MBOX  |--------------------->+               #NNN  +<---+-------+                      ^                           ^     |                       |                           |     |  READ                 |                     FOLD  |     |  ----                 |                     ----  |     |  =CCC                 |                     #NNN  |     |        QUIT           |                           |     V        -----          |               READ  +--->+-------+       + BYE          |               ----  ^    | ITEM  |--------------------->+               =CCC  +<---+-------+                                                  ^     |                                                   |     |  RETR                                       ack   |     |  ----                                       ----  |     |  data                                       =CCC  |     |                                                   |     V                                                  +-------+                                                 | NEXT  |                                                 +-------+                              
  597.  
  598.  Butler, et. al.                                                [Page 18] 
  599.  
  600.  
  601.  RFC 937                                                    February 1985 Post Office Protocol 
  602.  
  603.  Combined Flow Diagram 
  604.  
  605.        +----+                                                                  |CALL|<------------------------------------------------------------+    |LSTN|                                                             ^    +----+                                                             |     | Greet                                                           |     |                                                                 |     |  +----------------------------------------------------->+       |     |  ^ QUIT                                                 |       |     V  |                                                      V       |    +----+        +----+                                      +----+   |    |CALL| HELO   |NMBR|                                      |EXIT|   |    |AUTH|------->|AUTH|                                      |AUTH|   |    +----+        +----+                                      +----+   |                   | #NNN                                   + Bye |    |                   |                                              |    |                   |  +------------------------------------>+     |    |                   |  ^ QUIT                                |     |    |                   V  |                                     V     |    |             +--->+----+        +----+                     +----+ |    |        FOLD ^    |NMBR| READ   |SIZE|                     |EXIT| |    |        ---- |    |MBOX|------->|MBOX|                     |MBOX| |    |        #NNN +<---+----+        +----+                     +----+ |    |                      ^           | =CCC                 + Bye |  |    |                      |           |                            |  |    |                 FOLD +<--------+ | +------------------->+     |  |    |                 ----           ^ | ^ QUIT               |     |  |    |                 #NNN           | V |                    V     |  |    |                          +--->+-----+        +----+    +----+ |  |    |                     READ ^    |SIZE | RETR   |XFER|    |EXIT| |  |    |                     ---- |    | ITEM|------->|ITEM|    |ITEM| |  |    |                     =CCC +<---+-----+        +----+    +----+ |  |    |                                  ^             | data      |  |  |    |                                  |             |           |  |  |    |                             =CCC |             V     + Bye |  |  |    |                                +----+        +----+        |  |  |    |                                |SIZE|    Ack |XFER|        |  |  |    |                                |NEXT|<-------|NEXT|        |  |  |    |                                +----+        +----+        |  |  |    |                                                            |  |  |    |                                                            |  |  |    |                                                            V  V  V    |                                                           +-------+   |                                                           | EXIT  |-->+                                                           | DONE  |                                                               +-------+     
  606.  
  607.  Butler, et. al.                                                [Page 19] 
  608.  
  609.  
  610.  RFC 937                                                    February 1985 Post Office Protocol 
  611.  
  612.  Client Decision Table 
  613.  
  614.               |            STATE                 |    -------+----------------------------------|    INPUT  | CALL | NMBR | SIZE | XFER | EXIT |    -------+----------------------------------|    Greet  |  2   |  1   |  1   |  1   |  6   |    -------+----------------------------------|    #NNN   |  1   |  3   |  1   |  1   |  6   |    -------+----------------------------------|    =CCC   |  1   |  1   |  4   |  1   |  6   |    -------+----------------------------------|    data   |  1   |  1   |  1   |  5   |  6   |    -------+----------------------------------|    + Bye  |  1   |  1   |  1   |  1   |  6   |    -------+----------------------------------|    Close  |  1   |  1   |  1   |  1   |  6   |    -------+----------------------------------|    other  |  1   |  1   |  1   |  1   |  6   |    -------+----------------------------------|    Timeout|  1   |  1   |  1   |  1   |  6   |    -------+----------------------------------|     
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  Butler, et. al.                                                [Page 20] 
  641.  
  642.  
  643.  RFC 937                                                    February 1985 Post Office Protocol 
  644.  
  645.     Actions: 
  646.  
  647.       1.  This is garbage.  Send "QUIT", and go to EXIT state. 
  648.  
  649.       2.  (a) If the greeting is right then send "HELO"               and go to NMBR state,           (b) Else send "QUIT" and go to EXIT state. 
  650.  
  651.       3.  (a) If user wants this folder and NNN > 0               then send "READ" and go to SIZE state,           (b) If user wants a this folder and NNN = 0               then send "QUIT" and go to EXIT state,           (c) If user wants a different folder               then send "FOLD" and go to NMBR state. 
  652.  
  653.       4.  (a) If user wants this message and CCC > 0               then send "RETR" and go to XFER state,           (b) If user wants a this message and CCC = 0               then send "QUIT" and go to EXIT state,           (c) If user wants a different message               then send "READ" and go to SIZE state. 
  654.  
  655.       5.  (a) If user wants this message kept               then send "ACKS" and go to SIZE state,           (b) If user wants a this message deleted               then send "ACKD" and go to SIZE state,           (c) If user wants a this message again               then send "NACK" and go to SIZE state. 
  656.  
  657.       6.  Close the connection. 
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675.  
  676.  
  677.  Butler, et. al.                                                [Page 21] 
  678.  
  679.  
  680.  RFC 937                                                    February 1985 Post Office Protocol 
  681.  
  682.  Server Decision Table 
  683.  
  684.               |              STATE                           -------+-----------------------------------------     INPUT  | LSTN | AUTH | MBOX | ITEM | NEXT | DONE |    -------+-----------------------------------------|    Open   |  2   |  1   |  1   |  1   |  1   |  1   |    -------+-----------------------------------------|    HELO   |  1   |  3   |  1   |  1   |  1   |  1   |    -------+-----------------------------------------|    FOLD   |  1   |  1   |  5   |  5   |  1   |  1   |    -------+-----------------------------------------|    READ   |  1   |  1   |  6   |  6   |  1   |  1   |    -------+-----------------------------------------|    RETR   |  1   |  1   |  1   |  7   |  1   |  1   |    -------+-----------------------------------------|    ACKS   |  1   |  1   |  1   |  1   |  8   |  1   |    -------+-----------------------------------------|    ACKD   |  1   |  1   |  1   |  1   |  8   |  1   |    -------+-----------------------------------------|    NACK   |  1   |  1   |  1   |  1   |  8   |  1   |    -------+-----------------------------------------|    QUIT   |  1   |  4   |  4   |  4   |  1   |  1   |    -------+-----------------------------------------|    Close  |  1   |  1   |  1   |  1   |  1   |  9   |    -------+-----------------------------------------|    other  |  1   |  1   |  1   |  1   |  1   |  1   |    -------+-----------------------------------------|    Timeout|      |  1   |  1   |  1   |  1   |  1   |    -------+-----------------------------------------|     
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694.  
  695.  
  696.  
  697.  
  698.  
  699.  
  700.  
  701.  
  702.  Butler, et. al.                                                [Page 22] 
  703.  
  704.  
  705.  RFC 937                                                    February 1985 Post Office Protocol 
  706.  
  707.     Actions: 
  708.  
  709.       1.  This is garbage.  Send "- error", and Close the connection. 
  710.  
  711.       2.  Send the greeting. Go to AUTH state. 
  712.  
  713.       3.  (a) If authorized user then send "#NNN" and go tp MBOX state,           (b) Else send "- error" and Close the connection. 
  714.  
  715.       4.  Send "+ Bye" and go to DONE state. 
  716.  
  717.       5.  Send "+NNN" and go to MBOX state. 
  718.  
  719.       6.  Send "=CCC" and go to ITEM state. 
  720.  
  721.       7.  If message exists then send the data and got to NEXT state,           Else Close the connection. 
  722.  
  723.       8.  Do what ACKS/ACKD/NACK require and go to ITEM state. 
  724.  
  725.       9.  Close the connection. 
  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.  
  753.  
  754.  
  755. Butler, et. al.                                                [Page 23] 
  756.  
  757.  
  758.  RFC 937                                                    February 1985 Post Office Protocol 
  759.  
  760.  Acknowledgment 
  761.  
  762.    We would like to acknowledge the helpful comments that we received on    the first version of POP described in RFC 918, and the draft of POP2    distributed to interested parties. 
  763.  
  764. References 
  765.  
  766.    [1]  Postel, J., "Simple Mail Transfer Protocol", RFC 821,    USC/Information Sciences Institute, August 1982. 
  767.  
  768.    [2]  Crocker, D., "Standard for the Format of ARPA-Internet Text    Messages", RFC 822, University of Delaware, August 1982. 
  769.  
  770.    [3]  Reynolds, J.K., "Post Office Protocol", RFC 918, USC/Information    Sciences Institute, October 1984. 
  771.  
  772.    [4]  Reynolds, J.K., and J. Postel, "Assigned Numbers", RFC 923,    USC/Information Sciences Institute, October 1984. 
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799.  
  800.  
  801.  
  802.  
  803.  
  804. Butler, et. al.                                                [Page 24] 
  805.  
  806.