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

Email服务器

开发平台:

C#

  1. Network Working Group                               J. Klensin, WG Chair
  2. Request For Comments: 1869                                           MCI
  3. STD: 10                                                 N. Freed, Editor
  4. Obsoletes: 1651                             Innosoft International, Inc.
  5. Category: Standards Track                                        M. Rose
  6.                                             Dover Beach Consulting, Inc.
  7.                                                             E. Stefferud
  8.                                      Network Management Associates, Inc.
  9.                                                               D. Crocker
  10.                                                   Brandenburg Consulting
  11.                                                            November 1995
  12.                         SMTP Service Extensions
  13. Status of this Memo
  14.    This document specifies an Internet standards track protocol for the
  15.    Internet community, and requests discussion and suggestions for
  16.    improvements.  Please refer to the current edition of the "Internet
  17.    Official Protocol Standards" (STD 1) for the standardization state
  18.    and status of this protocol.  Distribution of this memo is unlimited.
  19. 1.  Abstract
  20.    This memo defines a framework for extending the SMTP service by
  21.    defining a means whereby a server SMTP can inform a client SMTP as to
  22.    the service extensions it supports.  Extensions to the SMTP service
  23.    are registered with the IANA. This framework does not require
  24.    modification of existing SMTP clients or servers unless the features
  25.    of the service extensions are to be requested or provided.
  26. 2.  Introduction
  27.    The Simple Mail Transfer Protocol (SMTP) [1] has provided a stable,
  28.    effective basis for the relay function of message transfer agents.
  29.    Although a decade old, SMTP has proven remarkably resilient.
  30.    Nevertheless, the need for a number of protocol extensions has become
  31.    evident. Rather than describing these extensions as separate and
  32.    haphazard entities, this document enhances SMTP in a straightforward
  33.    fashion that provides a framework in which all future extensions can
  34.    be built in a single consistent way.
  35. 3.  Framework for SMTP Extensions
  36.    For the purpose of service extensions to SMTP, SMTP relays a mail
  37.    object containing an envelope and a content.
  38. Klensin, et al              Standards Track                     [Page 1]
  39. RFC 1869                SMTP Service Extensions            November 1995
  40.  (1)   The SMTP envelope is straightforward, and is sent as a
  41.        series of SMTP protocol units: it consists of an
  42.        originator address (to which error reports should be
  43.        directed); a delivery mode (e.g., deliver to recipient
  44.        mailboxes); and, one or more recipient addresses.
  45.  (2)   The SMTP content is sent in the SMTP DATA protocol unit
  46.        and has two parts: the headers and the body. The
  47.        headers form a collection of field/value pairs
  48.        structured according to RFC 822 [2], whilst the body,
  49.        if structured, is defined according to MIME [3]. The
  50.        content is textual in nature, expressed using the US
  51.        ASCII repertoire (ANSI X3.4-1986). Although extensions
  52.        (such as MIME) may relax this restriction for the
  53.        content body, the content headers are always encoded
  54.        using the US ASCII repertoire. The algorithm defined in
  55.        [4] is used to represent header values outside the US
  56.        ASCII repertoire, whilst still encoding them using the
  57.        US ASCII repertoire.
  58.    Although SMTP is widely and robustly deployed, some parts of the
  59.    Internet community might wish to extend the SMTP service.  This memo
  60.    defines a means whereby both an extended SMTP client and server may
  61.    recognize each other as such and the server can inform the client as
  62.    to the service extensions that it supports.
  63.    It must be emphasized that any extension to the SMTP service should
  64.    not be considered lightly. SMTP's strength comes primarily from its
  65.    simplicity.  Experience with many protocols has shown that:
  66.      protocols with few options tend towards ubiquity, whilst
  67.      protocols with many options tend towards obscurity.
  68.    This means that each and every extension, regardless of its benefits,
  69.    must be carefully scrutinized with respect to its implementation,
  70.    deployment, and interoperability costs. In many cases, the cost of
  71.    extending the SMTP service will likely outweigh the benefit.
  72.    Given this environment, the framework for the extensions described in
  73.    this memo consists of:
  74.  (1)   a new SMTP command (section 4)
  75.  (2)   a registry of SMTP service extensions (section 5)
  76.  (3)   additional parameters to the SMTP MAIL FROM and RCPT TO
  77.        commands (section 6).
  78. Klensin, et al              Standards Track                     [Page 2]
  79. RFC 1869                SMTP Service Extensions            November 1995
  80. 4.  The EHLO command
  81.    A client SMTP supporting SMTP service extensions should start an SMTP
  82.    session by issuing the EHLO command instead of the HELO command. If
  83.    the SMTP server supports the SMTP service extensions it will give a
  84.    successful response (see section 4.3), a failure response (see 4.4),
  85.    or an error response (4.5). If the SMTP server does not support any
  86.    SMTP service extensions it will generate an error response (see
  87.    section 4.5).
  88. 4.1.  Changes to STD 10, RFC 821
  89.    This specification is intended to extend STD 10, RFC 821 without
  90.    impacting existing services in any way.  The minor changes needed are
  91.    enumerated below.
  92. 4.1.1.  First command
  93.    RFC 821 states that the first command in an SMTP session must be the
  94.    HELO command. This requirement is hereby amended to allow a session
  95.    to start with either EHLO or HELO.
  96. 4.1.2.  Maximum command line length
  97.    This specification extends the SMTP MAIL FROM and RCPT TO to allow
  98.    additional parameters and parameter values.  It is possible that the
  99.    MAIL FROM and RCPT TO lines that result will exceed the 512 character
  100.    limit on command line length imposed by RFC 821.  This limit is
  101.    hereby amended to only apply to command lines without any parameters.
  102.    Each specification that defines new MAIL FROM or RCPT TO parameters
  103.    must also specify maximum parameter value lengths for each parameter
  104.    so that implementors of some set of extensions know how much buffer
  105.    space must be allocated. The maximum command length that must be
  106.    supported by an SMTP implementation with extensions is 512 plus the
  107.    sum of all the maximum parameter lengths for all the extensions
  108.    supported.
  109. 4.2.  Command syntax
  110.    The syntax for this command, using the ABNF notation of [2], is:
  111.      ehlo-cmd ::= "EHLO" SP domain CR LF
  112.    If successful, the server SMTP responds with code 250. On failure,
  113.    the server SMTP responds with code 550. On error, the server SMTP
  114.    responds with one of codes 500, 501, 502, 504, or 421.
  115. Klensin, et al              Standards Track                     [Page 3]
  116. RFC 1869                SMTP Service Extensions            November 1995
  117.    This command is issued instead of the HELO command, and may be issued
  118.    at any time that a HELO command would be appropriate.  That is, if
  119.    the EHLO command is issued, and a successful response is returned,
  120.    then a subsequent HELO or EHLO command will result in the server SMTP
  121.    replying with code 503.  A client SMTP must not cache any information
  122.    returned if the EHLO command succeeds. That is, a client SMTP must
  123.    issue the EHLO command at the start of each SMTP session if
  124.    information about extended facilities is needed.
  125. 4.3.  Successful response
  126.    If the server SMTP implements and is able to perform the EHLO
  127.    command, it will return code 250.  This indicates that both the
  128.    server and client SMTP are in the initial state, that is, there is no
  129.    transaction in progress and all state tables and buffers are cleared.
  130.    Normally, this response will be a multiline reply. Each line of the
  131.    response contains a keyword and, optionally, one or more parameters.
  132.    The syntax for a positive response, using the ABNF notation of [2],
  133.    is:
  134.      ehlo-ok-rsp  ::=      "250"    domain [ SP greeting ] CR LF
  135.                     / (    "250-"   domain [ SP greeting ] CR LF
  136.                         *( "250-"      ehlo-line           CR LF )
  137.                            "250"    SP ehlo-line           CR LF   )
  138.                   ; the usual HELO chit-chat
  139.      greeting     ::= 1*<any character other than CR or LF>
  140.      ehlo-line    ::= ehlo-keyword *( SP ehlo-param )
  141.      ehlo-keyword ::= (ALPHA / DIGIT) *(ALPHA / DIGIT / "-")
  142.                   ; syntax and values depend on ehlo-keyword
  143.      ehlo-param   ::= 1*<any CHAR excluding SP and all
  144.                          control characters (US ASCII 0-31
  145.                          inclusive)>
  146.      ALPHA        ::= <any one of the 52 alphabetic characters
  147.                        (A through Z in upper case, and,
  148.                         a through z in lower case)>
  149.      DIGIT        ::= <any one of the 10 numeric characters
  150.                        (0 through 9)>
  151.      CR           ::= <the carriage-return character
  152.                        (ASCII decimal code 13)>
  153.      LF           ::= <the line-feed character
  154.                        (ASCII decimal code 10)>
  155. Klensin, et al              Standards Track                     [Page 4]
  156. RFC 1869                SMTP Service Extensions            November 1995
  157.      SP           ::= <the space character
  158.                        (ASCII decimal code 32)>
  159.    Although EHLO keywords may be specified in upper, lower, or mixed
  160.    case, they must always be recognized and processed in a case-
  161.    insensitive manner. This is simply an extension of practices begun in
  162.    RFC 821.
  163.    The IANA maintains a registry of SMTP service extensions.  Associated
  164.    with each such extension is a corresponding EHLO keyword value. Each
  165.    service extension registered with the IANA must be defined in an RFC.
  166.    Such RFCs must either be on the standards-track or must define an
  167.    IESG-approved experimental protocol.  The definition must include:
  168.  (1)   the textual name of the SMTP service extension;
  169.  (2)   the EHLO keyword value associated with the extension;
  170.  (3)   the syntax and possible values of parameters associated
  171.        with the EHLO keyword value;
  172.  (4)   any additional SMTP verbs associated with the extension
  173.        (additional verbs will usually be, but are not required
  174.        to be, the same as the EHLO keyword value);
  175.  (5)   any new parameters the extension associates with the
  176.        MAIL FROM or RCPT TO verbs;
  177.  (6)   how support for the extension affects the behavior of a
  178.        server and client SMTP; and,
  179.  (7)   the increment by which the extension is increasing the
  180.        maximum length of the commands MAIL FROM, RCPT TO, or
  181.        both, over that specified in RFC 821.
  182.    In addition, any EHLO keyword value that starts with an upper or
  183.    lower case "X" refers to a local SMTP service extension, which is
  184.    used through bilateral, rather than standardized, agreement. Keywords
  185.    beginning with "X" may not be used in a registered service extension.
  186.    Any keyword values presented in the EHLO response that do not begin
  187.    with "X" must correspond to a standard, standards-track, or IESG-
  188.    approved experimental SMTP service extension registered with IANA.  A
  189.    conforming server must not offer non "X" prefixed keyword values that
  190.    are not described in a registered extension.
  191. Klensin, et al              Standards Track                     [Page 5]
  192. RFC 1869                SMTP Service Extensions            November 1995
  193.    Additional verbs are bound by the same rules as EHLO keywords;
  194.    specifically, verbs begining with "X" are local extensions that may
  195.    not be registered or standardized and verbs not beginning with "X"
  196.    must always be registered.
  197. 4.4.  Failure response
  198.    If for some reason the server SMTP is unable to list the service
  199.    extensions it supports, it will return code 554.
  200.    In the case of a failure response, the client SMTP should issue
  201.    either the HELO or QUIT command.
  202. 4.5.  Error responses from extended servers
  203.    If the server SMTP recognizes the EHLO command, but the command
  204.    argument is unacceptable, it will return code 501.
  205.    If the server SMTP recognizes, but does not implement, the EHLO
  206.    command, it will return code 502.
  207.    If the server SMTP determines that the SMTP service is no longer
  208.    available (e.g., due to imminent system shutdown), it will return
  209.    code 421.
  210.    In the case of any error response, the client SMTP should issue
  211.    either the HELO or QUIT command.
  212. 4.6.  Responses from servers without extensions
  213.    A server SMTP that conforms to RFC 821 but does not support the
  214.    extensions specified here will not recognize the EHLO command and
  215.    will consequently return code 500, as specified in RFC 821.  The
  216.    server SMTP should stay in the same state after returning this code
  217.    (see section 4.1.1 of RFC 821).  The client SMTP may then issue
  218.    either a HELO or a QUIT command.
  219. 4.7.  Responses from improperly implemented servers
  220.    Some SMTP servers are known to disconnect the SMTP transmission
  221.    channel upon receipt of the EHLO command. The disconnect can occur
  222.    immediately or after sending a response.  Such behavior violates
  223.    section 4.1.1 of RFC 821, which explicitly states that disconnection
  224.    should only occur after a QUIT command is issued.
  225.    Nevertheless, in order to achieve maxmimum interoperablity it is
  226.    suggested that extended SMTP clients using EHLO be coded to check for
  227.    server connection closure after EHLO is sent, either before or after
  228. Klensin, et al              Standards Track                     [Page 6]
  229. RFC 1869                SMTP Service Extensions            November 1995
  230.    returning a reply.  If this happens the client must decide if the
  231.    operation can be successfully completed without using any SMTP
  232.    extensions. If it can a new connection can be opened and the HELO
  233.    command can be used.
  234.    Other improperly-implemented servers will not accept a HELO command
  235.    after EHLO has been sent and rejected.  In some cases, this problem
  236.    can be worked around by sending a RSET after the failure response to
  237.    EHLO, then sending the HELO.  Clients that do this should be aware
  238.    that many implementations will return a failure code (e.g., 503 Bad
  239.    sequence of commands) in response to the RSET.  This code can be
  240.    safely ignored.
  241. 5.  Initial IANA Registry
  242.    The IANA's initial registry of SMTP service extensions consists of
  243.    these entries:
  244.    Service Ext   EHLO Keyword Parameters Verb       Added Behavior
  245.    ------------- ------------ ---------- ---------- ------------------
  246.    Send             SEND         none       SEND    defined in RFC 821
  247.    Send or Mail     SOML         none       SOML    defined in RFC 821
  248.    Send and Mail    SAML         none       SAML    defined in RFC 821
  249.    Expand           EXPN         none       EXPN    defined in RFC 821
  250.    Help             HELP         none       HELP    defined in RFC 821
  251.    Turn             TURN         none       TURN    defined in RFC 821
  252.    which correspond to those SMTP commands which are defined as optional
  253.    in [5].  (The mandatory SMTP commands, according to [5], are HELO,
  254.    MAIL, RCPT, DATA, RSET, VRFY, NOOP, and QUIT.)
  255. 6.  MAIL FROM and RCPT TO Parameters
  256.    It is recognized that several of the extensions planned for SMTP will
  257.    make use of additional parameters associated with the MAIL FROM and
  258.    RCPT TO command. The syntax for these commands, again using the ABNF
  259.    notation of [2] as well as underlying definitions from [1], is:
  260.      esmtp-cmd        ::= inner-esmtp-cmd [SP esmtp-parameters] CR LF
  261.      esmtp-parameters ::= esmtp-parameter *(SP esmtp-parameter)
  262.      esmtp-parameter  ::= esmtp-keyword ["=" esmtp-value]
  263.      esmtp-keyword    ::= (ALPHA / DIGIT) *(ALPHA / DIGIT / "-")
  264.                           ; syntax and values depend on esmtp-keyword
  265.      esmtp-value      ::= 1*<any CHAR excluding "=", SP, and all
  266.                              control characters (US ASCII 0-31
  267.                              inclusive)>
  268. Klensin, et al              Standards Track                     [Page 7]
  269. RFC 1869                SMTP Service Extensions            November 1995
  270.                           ; The following commands are extended to
  271.                           ; accept extended parameters.
  272.      inner-esmtp-cmd  ::= ("MAIL FROM:" reverse-path)   /
  273.                           ("RCPT TO:" forward-path)
  274.    All esmtp-keyword values must be registered as part of the IANA
  275.    registration process described above. This definition only provides
  276.    the framework for future extension; no extended MAIL FROM or RCPT TO
  277.    parameters are defined by this RFC.
  278. 6.1.  Error responses
  279.    If the server SMTP does not recognize or cannot implement one or more
  280.    of the parameters associated with a particular MAIL FROM or RCPT TO
  281.    command, it will return code 555.
  282.    If for some reason the server is temporarily unable to accomodate one
  283.    or more of the parameters associated with a MAIL FROM or RCPT TO
  284.    command, and if the definition of the specific parameter does not
  285.    mandate the use of another code, it should return code 455.
  286.    Errors specific to particular parameters and their values will be
  287.    specified in the parameter's defining RFC.
  288. 7.  Received: Header Field Annotation
  289.    SMTP servers are required to add an appropriate Received: field to
  290.    the headers of all messages they receive. A "with ESMTP" clause
  291.    should be added to this field when any SMTP service extensions are
  292.    used. "ESMTP" is hereby added to the list of standard protocol names
  293.    registered with IANA.
  294. 8.  Usage Examples
  295.  (1)   An interaction of the form:
  296.        S: <wait for connection on TCP port 25>
  297.        C: <open connection to server>
  298.        S: 220 dbc.mtview.ca.us SMTP service ready
  299.        C: EHLO ymir.claremont.edu
  300.        S: 250 dbc.mtview.ca.us says hello
  301.         ...
  302.        indicates that the server SMTP implements only those
  303.        SMTP commands which are defined as mandatory in [5].
  304. Klensin, et al              Standards Track                     [Page 8]
  305. RFC 1869                SMTP Service Extensions            November 1995
  306.  (2)   In contrast, an interaction of the form:
  307.        S: <wait for connection on TCP port 25>
  308.        C: <open connection to server>
  309.        S: 220 dbc.mtview.ca.us SMTP service ready
  310.        C: EHLO ymir.claremont.edu
  311.        S: 250-dbc.mtview.ca.us says hello
  312.        S: 250-EXPN
  313.        S: 250-HELP
  314.        S: 250-8BITMIME
  315.        S: 250-XONE
  316.        S: 250 XVRB
  317.         ...
  318.        indicates that the server SMTP also implements the SMTP
  319.        EXPN and HELP commands, one standard service extension
  320.        (8BITMIME), and two nonstandard and unregistered
  321.        service extensions (XONE and XVRB).
  322.  (3)   Finally, a server that does not support SMTP service
  323.        extensions would act as follows:
  324.        S: <wait for connection on TCP port 25>
  325.        C: <open connection to server>
  326.        S: 220 dbc.mtview.ca.us SMTP service ready
  327.        C: EHLO ymir.claremont.edu
  328.        S: 500 Command not recognized: EHLO
  329.         ...
  330.        The 500 response indicates that the server SMTP does
  331.        not implement the extensions specified here.  The
  332.        client would normally send a HELO command and proceed
  333.        as specified in RFC 821.   See section 4.7 for
  334.        additional discussion.
  335. 9.  Security Considerations
  336.    This RFC does not discuss security issues and is not believed to
  337.    raise any security issues not already endemic in electronic mail and
  338.    present in fully conforming implementations of RFC-821.  It does
  339.    provide an announcement of server mail capabilities via the response
  340.    to the EHLO verb. However, all information provided by announcement
  341.    of any of the initial set of service extensions defined by this RFC
  342.    can be readily deduced by selective probing of the verbs required to
  343.    transport and deliver mail. The security implications of service
  344.    extensions described in other RFCs should be dealt with in those
  345.    RFCs.
  346. Klensin, et al              Standards Track                     [Page 9]
  347. RFC 1869                SMTP Service Extensions            November 1995
  348. 10.  Acknowledgements
  349.    This document represents a synthesis of the ideas of many people and
  350.    reactions to the ideas and proposals of others.  Randall Atkinson,
  351.    Craig Everhart, Risto Kankkunen, and Greg Vaudreuil contributed ideas
  352.    and text sufficient to be considered co-authors.  Other important
  353.    suggestions, text, or encouragement came from Harald Alvestrand, Jim
  354.    Conklin, Mark Crispin, Frank da Cruz, 'Olafur Gudmundsson, Per
  355.    Hedeland, Christian Huitma, Neil Katin, Eliot Lear, Harold A.
  356.    Miller, Keith Moore, John Myers, Dan Oscarsson, Julian Onions, Rayan
  357.    Zachariassen, and the contributions of the entire IETF SMTP Working
  358.    Group. Of course, none of the individuals are necessarily responsible
  359.    for the combination of ideas represented here. Indeed, in some cases,
  360.    the response to a particular criticism was to accept the problem
  361.    identification but to include an entirely different solution from the
  362.    one originally proposed.
  363. 11.  References
  364.    [1] Postel, J., "Simple Mail Transfer Protocol", STD 10, RFC 821,
  365.        USC/Information Sciences Institute, August 1982.
  366.    [2] Crocker, D., "Standard for the Format of ARPA Internet Text
  367.        Messages", STD 11, RFC 822, UDEL, August 1982.
  368.    [3] Borenstein, N., and N. Freed, "Multipurpose Internet Mail
  369.        Extensions", RFC 1521, Bellcore, Innosoft, September 1993.
  370.    [4] Moore, K., "Representation of Non-ASCII Text in Internet Message
  371.        Headers", RFC 1522, University of Tennessee, September 1993.
  372.    [5] Braden, R., "Requirements for Internet Hosts - Application and
  373.        Support", STD 3, RFC 1123, USC/Information Sciences Institute,
  374.        October 1989.
  375. 12.  Chair, Editor, and Author Addresses
  376.    John Klensin, WG Chair
  377.    MCI
  378.    2100 Reston Parkway
  379.    Reston, VA 22091
  380.    Phone: +1 703 715-7361
  381.    Fax: +1 703 715-7436
  382.    EMail: klensin@mci.net
  383. Klensin, et al              Standards Track                    [Page 10]
  384. RFC 1869                SMTP Service Extensions            November 1995
  385.    Ned Freed, Editor
  386.    Innosoft International, Inc.
  387.    1050 East Garvey Avenue South
  388.    West Covina, CA 91790
  389.    USA
  390.    Phone: +1 818 919 3600
  391.    Fax: +1 818 919 3614
  392.    EMail: ned@innosoft.com
  393.    Marshall T. Rose
  394.    Dover Beach Consulting, Inc.
  395.    420 Whisman Court
  396.    Moutain View, CA  94043-2186
  397.    USA
  398.    Phone: +1 415 968 1052
  399.    Fax: +1 415 968 2510
  400.    EMail: mrose@dbc.mtview.ca.us
  401.    Einar A. Stefferud
  402.    Network Management Associates, Inc.
  403.    17301 Drey Lane
  404.    Huntington Beach, CA, 92647-5615
  405.    USA
  406.    Phone: +1 714 842 3711
  407.    Fax: +1 714 848 2091
  408.    EMail: stef@nma.com
  409.    Dave Crocker
  410.    Brandenburg Consulting
  411.    675 Spruce Dr.
  412.    Sunnyvale, CA 94086 USA
  413.    USA
  414.    Phone: +1 408 246 8253
  415.    Fax: +1 408 249 6205
  416.    EMail: dcrocker@mordor.stanford.edu
  417. Klensin, et al              Standards Track                    [Page 11]