rfc1870_SizeExtention.txt
上传用户:horngjaan
上传日期:2009-12-12
资源大小:2882k
文件大小:18k
源码类别:

Email服务器

开发平台:

C#

  1. Network Working Group                               J. Klensin, WG Chair
  2. Request For Comments: 1870                                           MCI
  3. STD: 10                                                 N. Freed, Editor
  4. Obsoletes: 1653                             Innosoft International, Inc.
  5. Category: Standards Track                                       K. Moore
  6.                                                  University of Tennessee
  7.                                                            November 1995
  8.                          SMTP Service Extension
  9.                       for Message Size Declaration
  10. Status of this Memo
  11.    This document specifies an Internet standards track protocol for the
  12.    Internet community, and requests discussion and suggestions for
  13.    improvements.  Please refer to the current edition of the "Internet
  14.    Official Protocol Standards" (STD 1) for the standardization state
  15.    and status of this protocol.  Distribution of this memo is unlimited.
  16. 1.  Abstract
  17.    This memo defines an extension to the SMTP service whereby an SMTP
  18.    client and server may interact to give the server an opportunity to
  19.    decline to accept a message (perhaps temporarily) based on the
  20.    client's estimate of the message size.
  21. 2.  Introduction
  22.    The MIME extensions to the Internet message protocol provide for the
  23.    transmission of many kinds of data which were previously unsupported
  24.    in Internet mail.  One expected result of the use of MIME is that
  25.    SMTP will be expected to carry a much wider range of message sizes
  26.    than was previously the case.  This has an impact on the amount of
  27.    resources (e.g. disk space) required by a system acting as a server.
  28.    This memo uses the mechanism defined in [5] to define extensions to
  29.    the SMTP service whereby a client ("sender-SMTP") may declare the
  30.    size of a particular message to a server ("receiver-SMTP"), after
  31.    which the server may indicate to the client that it is or is not
  32.    willing to accept the message based on the declared message size and
  33.    whereby a server ("receiver-SMTP") may declare the maximum message
  34.    size it is willing to accept to a client ("sender-SMTP").
  35. Klensin, et al              Standards Track                     [Page 1]
  36. RFC 1870                 SMTP Size Declaration             November 1995
  37. 3.  Framework for the Size Declaration Extension
  38.    The following service extension is therefore defined:
  39.    (1) the name of the SMTP service extension is "Message Size
  40.        Declaration";
  41.    (2) the EHLO keyword value associated with this extension is "SIZE";
  42.    (3) one optional parameter is allowed with this EHLO keyword value, a
  43.        decimal number indicating the fixed maximum message size in bytes
  44.        that the server will accept.  The syntax of the parameter is as
  45.        follows, using the augmented BNF notation of [2]:
  46.            size-param ::= [1*DIGIT]
  47.        A parameter value of 0 (zero) indicates that no fixed maximum
  48.        message size is in force.  If the parameter is omitted no
  49.        information is conveyed about the server's fixed maximum message
  50.        size;
  51.    (4) one optional parameter using the keyword "SIZE" is added to the
  52.        MAIL FROM command.  The value associated with this parameter is a
  53.        decimal number indicating the size of the message that is to be
  54.        transmitted.  The syntax of the value is as follows, using the
  55.        augmented BNF notation of [2]:
  56.            size-value ::= 1*20DIGIT
  57.    (5) the maximum length of a MAIL FROM command line is increased by 26
  58.        characters by the possible addition of the SIZE keyword and
  59.        value;
  60.    (6) no additional SMTP verbs are defined by this extension.
  61.    The remainder of this memo specifies how support for the extension
  62.    affects the behavior of an SMTP client and server.
  63. 4.  The Message Size Declaration service extension
  64.    An SMTP server may have a fixed upper limit on message size.  Any
  65.    attempt by a client to transfer a message which is larger than this
  66.    fixed upper limit will fail.  In addition, a server normally has
  67.    limited space with which to store incoming messages.  Transfer of a
  68.    message may therefore also fail due to a lack of storage space, but
  69.    might succeed at a later time.
  70. Klensin, et al              Standards Track                     [Page 2]
  71. RFC 1870                 SMTP Size Declaration             November 1995
  72.    A client using the unextended SMTP protocol defined in [1], can only
  73.    be informed of such failures after transmitting the entire message to
  74.    the server (which discards the transferred message).  If, however,
  75.    both client and server support the Message Size Declaration service
  76.    extension, such conditions may be detected before any transfer is
  77.    attempted.
  78.    An SMTP client wishing to relay a large content may issue the EHLO
  79.    command to start an SMTP session, to determine if the server supports
  80.    any of several service extensions.  If the server responds with code
  81.    250 to the EHLO command, and the response includes the EHLO keyword
  82.    value SIZE, then the Message Size Declaration extension is supported.
  83.    If a numeric parameter follows the SIZE keyword value of the EHLO
  84.    response, it indicates the size of the largest message that the
  85.    server is willing to accept.  Any attempt by a client to transfer a
  86.    message which is larger than this limit will be rejected with a
  87.    permanent failure (552) reply code.
  88.    A server that supports the Message Size Declaration extension will
  89.    accept the extended version of the MAIL command described below.
  90.    When supported by the server, a client may use the extended MAIL
  91.    command (instead of the MAIL command as defined in [1]) to declare an
  92.    estimate of the size of a message it wishes to transfer.  The server
  93.    may then return an appropriate error code if it determines that an
  94.    attempt to transfer a message of that size would fail.
  95. 5.  Definitions
  96.    The message size is defined as the number of octets, including CR-LF
  97.    pairs, but not the SMTP DATA command's terminating dot or doubled
  98.    quoting dots, to be transmitted by the SMTP client after receiving
  99.    reply code 354 to the DATA command.
  100.    The fixed maximum message size is defined as the message size of the
  101.    largest message that a server is ever willing to accept.  An attempt
  102.    to transfer any message larger than the fixed maximum message size
  103.    will always fail.  The fixed maximum message size may be an
  104.    implementation artifact of the SMTP server, or it may be chosen by
  105.    the administrator of the server.
  106.    The declared message size is defined as a client's estimate of the
  107.    message size for a particular message.
  108. Klensin, et al              Standards Track                     [Page 3]
  109. RFC 1870                 SMTP Size Declaration             November 1995
  110. 6.  The extended MAIL command
  111.    The extended MAIL command is issued by a client when it wishes to
  112.    inform a server of the size of the message to be sent.  The extended
  113.    MAIL command is identical to the MAIL command as defined in [1],
  114.    except that a SIZE parameter appears after the address.
  115.    The complete syntax of this extended command is defined in [5]. The
  116.    esmtp-keyword is "SIZE" and the syntax for esmtp-value is given by
  117.    the syntax for size-value shown above.
  118.    The value associated with the SIZE parameter is a decimal
  119.    representation of the declared message size in octets.  This number
  120.    should include the message header, body, and the CR-LF sequences
  121.    between lines, but not the SMTP DATA command's terminating dot or
  122.    doubled quoting dots. Only one SIZE parameter may be specified in a
  123.    single MAIL command.
  124.    Ideally, the declared message size is equal to the true message size.
  125.    However, since exact computation of the message size may be
  126.    infeasable, the client may use a heuristically-derived estimate.
  127.    Such heuristics should be chosen so that the declared message size is
  128.    usually larger than the actual message size. (This has the effect of
  129.    making the counting or non-counting of SMTP DATA dots largely an
  130.    academic point.)
  131.    NOTE: Servers MUST NOT use the SIZE parameter to determine end of
  132.    content in the DATA command.
  133. 6.1  Server action on receipt of the extended MAIL command
  134.    Upon receipt of an extended MAIL command containing a SIZE parameter,
  135.    a server should determine whether the declared message size exceeds
  136.    its fixed maximum message size.  If the declared message size is
  137.    smaller than the fixed maximum message size, the server may also wish
  138.    to determine whether sufficient resources are available to buffer a
  139.    message of the declared message size and to maintain it in stable
  140.    storage, until the message can be delivered or relayed to each of its
  141.    recipients.
  142.    A server may respond to the extended MAIL command with any of the
  143.    error codes defined in [1] for the MAIL command.  In addition, one of
  144.    the following error codes may be returned:
  145.    (1) If the server currently lacks sufficient resources to accept a
  146.        message of the indicated size, but may be able to accept the
  147.        message at a later time, it responds with code "452 insufficient
  148.        system storage".
  149. Klensin, et al              Standards Track                     [Page 4]
  150. RFC 1870                 SMTP Size Declaration             November 1995
  151.    (2) If the indicated size is larger than the server's fixed maximum
  152.        message size, the server responds with code "552 message size
  153.        exceeds fixed maximium message size".
  154.    A server is permitted, but not required, to accept a message which
  155.    is, in fact, larger than declared in the extended MAIL command, such
  156.    as might occur if the client employed a size-estimation heuristic
  157.    which was inaccurate.
  158. 6.2  Client action on receiving response to extended MAIL command
  159.    The client, upon receiving the server's response to the extended MAIL
  160.    command, acts as follows:
  161.    (1) If the code "452 insufficient system storage" is returned, the
  162.        client should next send either a RSET command (if it wishes to
  163.        attempt to send other messages) or a QUIT command. The client
  164.        should then repeat the attempt to send the message to the server
  165.        at a later time.
  166.    (2) If the code "552 message exceeds fixed maximum message size" is
  167.        received, the client should immediately send either a RSET command
  168.        (if it wishes to attempt to send additional messages), or a QUIT
  169.        command.  The client should then declare the message undeliverable
  170.        and return appropriate notification to the sender (if a sender
  171.        address was present in the MAIL command).
  172.    A successful (250) reply code in response to the extended MAIL
  173.    command does not constitute an absolute guarantee that the message
  174.    transfer will succeed.  SMTP clients using the extended MAIL command
  175.    must still be prepared to handle both temporary and permanent error
  176.    reply codes (including codes 452 and 552), either immediately after
  177.    issuing the DATA command, or after transfer of the message.
  178. 6.3  Messages larger than the declared size.
  179.    Once a server has agreed (via the extended MAIL command) to accept a
  180.    message of a particular size, it should not return a 552 reply code
  181.    after the transfer phase of the DATA command, unless the actual size
  182.    of the message transferred is greater than the declared message size.
  183.    A server may also choose to accept a message which is somewhat larger
  184.    than the declared message size.
  185.    A client is permitted to declare a message to be smaller than its
  186.    actual size.  However, in this case, a successful (250) reply code is
  187.    no assurance that the server will accept the message or has
  188.    sufficient resources to do so.  The server may reject such a message
  189.    after its DATA transfer.
  190. Klensin, et al              Standards Track                     [Page 5]
  191. RFC 1870                 SMTP Size Declaration             November 1995
  192. 6.4  Per-recipient rejection based on message size.
  193.    A server that implements this extension may return a 452 or 552 reply
  194.    code in response to a RCPT command, based on its unwillingness to
  195.    accept a message of the declared size for a particular recipient.
  196.    (1) If a 452 code is returned, the client may requeue the message for
  197.        later delivery to the same recipient.
  198.    (2) If a 552 code is returned, the client may not requeue the message
  199.        for later delivery to the same recipient.
  200. 7.  Minimal usage
  201.    A "minimal" client may use this extension to simply compare its
  202.    (perhaps estimated) size of the message that it wishes to relay, with
  203.    the server's fixed maximum message size (from the parameter to the
  204.    SIZE keyword in the EHLO response), to determine whether the server
  205.    will ever accept the message.  Such an implementation need not
  206.    declare message sizes via the extended MAIL command.  However,
  207.    neither will it be able to discover temporary limits on message size
  208.    due to server resource limitations, nor per-recipient limitations on
  209.    message size.
  210.    A minimal server that employs this service extension may simply use
  211.    the SIZE keyword value to inform the client of the size of the
  212.    largest message it will accept, or to inform the client that there is
  213.    no fixed limit on message size.  Such a server must accept the
  214.    extended MAIL command and return a 552 reply code if the client's
  215.    declared size exceeds its fixed size limit (if any), but it need not
  216.    detect "temporary" limitations on message size.
  217.    The numeric parameter to the EHLO SIZE keyword is optional.  If the
  218.    parameter is omitted entirely it indicates that the server does not
  219.    advertise a fixed maximum message size.  A server that returns the
  220.    SIZE keyword with no parameter in response to the EHLO command may
  221.    not issue a positive (250) response to an extended MAIL command
  222.    containing a SIZE specification without first checking to see if
  223.    sufficient resources are available to transfer a message of the
  224.    declared size, and to retain it in stable storage until it can be
  225.    relayed or delivered to its recipients.  If possible, the server
  226.    should actually reserve sufficient storage space to transfer the
  227.    message.
  228. Klensin, et al              Standards Track                     [Page 6]
  229. RFC 1870                 SMTP Size Declaration             November 1995
  230. 8. Example
  231.    The following example illustrates the use of size declaration with
  232.    some permanent and temporary failures.
  233.    S: <wait for connection on TCP port 25>
  234.    C: <open connection to server>
  235.    S: 220 sigurd.innosoft.com -- Server SMTP (PMDF V4.2-6 #1992)
  236.    C: EHLO ymir.claremont.edu
  237.    S: 250-sigurd.innosoft.com
  238.    S: 250-EXPN
  239.    S: 250-HELP
  240.    S: 250 SIZE 1000000
  241.    C: MAIL FROM:<ned@thor.innosoft.com> SIZE=500000
  242.    S: 250 Address Ok.
  243.    C: RCPT TO:<ned@innosoft.com>
  244.    S: 250 ned@innosoft.com OK; can accomodate 500000 byte message
  245.    C: RCPT TO:<ned@ymir.claremont.edu>
  246.    S: 552 Channel size limit exceeded: ned@YMIR.CLAREMONT.EDU
  247.    C: RCPT TO:<ned@hmcvax.claremont.edu>
  248.    S: 452 Insufficient channel storage: ned@hmcvax.CLAREMONT.EDU
  249.    C: DATA
  250.    S: 354 Send message, ending in CRLF.CRLF.
  251.     ...
  252.    C: .
  253.    S: 250 Some recipients OK
  254.    C: QUIT
  255.    S: 221 Goodbye
  256. 9. Security Considerations
  257.    The size declaration extensions described in this memo can
  258.    conceivably be used to facilitate crude service denial attacks.
  259.    Specifically, both the information contained in the SIZE parameter
  260.    and use of the extended MAIL command make it somewhat quicker and
  261.    easier to devise an efficacious service denial attack.  However,
  262.    unless implementations are very weak, these extensions do not create
  263.    any vulnerability that has not always existed with SMTP. In addition,
  264.    no issues are addressed involving trusted systems and possible
  265.    release of information via the mechanisms described in this RFC.
  266. 10.  Acknowledgements
  267.    This document was derived from an earlier Working Group work in
  268.    progess contribution.  Jim Conklin, Dave Crocker, Neil Katin, Eliot
  269.    Lear, Marshall T. Rose, and Einar Stefferud provided extensive
  270.    comments in response to earlier works in progress of both this and
  271.    the previous memo.
  272. Klensin, et al              Standards Track                     [Page 7]
  273. RFC 1870                 SMTP Size Declaration             November 1995
  274. 11.  References
  275.    [1] Postel, J., "Simple Mail Transfer Protocol", STD 10, RFC 821,
  276.        USC/Information Sciences Institute, August 1982.
  277.    [2] Crocker, D., "Standard for the Format of ARPA Internet Text
  278.        Messages", STD 11, RFC 822, UDEL, August 1982.
  279.    [3] Borenstein, N., and N. Freed, "Multipurpose Internet Mail
  280.        Extensions", RFC 1521, Bellcore, Innosoft, September 1993.
  281.    [4] Moore, K., "Representation of Non-ASCII Text in Internet Message
  282.        Headers", RFC 1522, University of Tennessee, September 1993.
  283.    [5] Klensin, J., Freed, N., Rose, M., Stefferud, E., and D. Crocker,
  284.        "SMTP Service Extensions", STD 11, RFC 1869, MCI, Innosoft
  285.        International, Inc., Dover Beach Consulting, Inc., Network
  286.        Management Associates, Inc., Brandenburg Consulting, November
  287.        1995.
  288.    [6] Partridge, C., "Mail Routing and the Domain System", STD 14, RFC
  289.        974, BBN, January 1986.
  290. Klensin, et al              Standards Track                     [Page 8]
  291. RFC 1870                 SMTP Size Declaration             November 1995
  292. 12.  Chair, Editor, and Author Addresses
  293.    John Klensin, WG Chair
  294.    MCI
  295.    2100 Reston Parkway
  296.    Reston, VA 22091
  297.    Phone: +1 703 715-7361
  298.    Fax: +1 703 715-7436
  299.    EMail: klensin@mci.net
  300.    Ned Freed, Editor
  301.    Innosoft International, Inc.
  302.    1050 East Garvey Avenue South
  303.    West Covina, CA 91790
  304.    USA
  305.    Phone: +1 818 919 3600
  306.    Fax: +1 818 919 3614
  307.    EMail: ned@innosoft.com
  308.    Keith Moore
  309.    Computer Science Dept.
  310.    University of Tennessee
  311.    107 Ayres Hall
  312.    Knoxville, TN 37996-1301
  313.    USA
  314.    EMail: moore@cs.utk.edu
  315. Klensin, et al              Standards Track                     [Page 9]