<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="no"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc toc="no"?>
<?rfc-ext allow-markup-in-artwork="yes"?>


<rfc number="2183" updates="1806" category="std" xmlns:x="http://purl.org/net/xml2rfc/ext" ipr="none">

  <x:assign-section-number number="suppress" builtin-target="authors"/>

  <front>
    <title abbrev='Content-Disposition'>Communicating Presentation Information in Internet Messages: The&#160;Content&#x2011;Disposition&#160;Header&#160;Field</title>

    <author anchor="author.rens.troost" initials='R.' surname='Troost' fullname='Rens Troost'>
      <organization>New Century Systems</organization>
      <address>
        <postal>
          <street>324 East 41st Street #804</street>
          <city>New York</city>
          <region>NY</region>
          <code>10017</code>
          <country>USA</country>
        </postal>
        <phone>+1 (212) 557-2050</phone>
        <facsimile>+1 (212) 557-2049</facsimile>
        <email>rens@century.com</email>
      </address>
    </author>

    <author anchor="author.steve.dorner" initials='S.' surname='Dorner' fullname='Steve Dorner'>
      <organization>QUALCOMM Incorporated</organization>
      <address>
        <postal>
          <street>6455 Lusk Boulevard</street>
          <city>San Diego</city>
          <region>CA</region>
          <code>92121</code>
          <country>USA</country>
        </postal>
        <email>sdorner@qualcomm.com</email>
      </address>
    </author>
    
    <author anchor="author.keith.moore" initials='K.' surname='Moore' fullname='Keith Moore' role="editor">
      <organization>University of Tennessee</organization>
      <address>
      <postal>
        <street>Computer Science Dept.</street>
        <street>107 Ayres Hall</street>
        <city>Knoxville</city>
        <region>TN</region>  
        <code>37996-1301</code>
        <country>USA</country>
      </postal>
      <email>moore@cs.utk.edu</email></address>
    </author>
    <date year='1997' month='August' />
    
  <abstract>
    <t>
      This memo provides a mechanism whereby messages conforming to the
      MIME specifications [<xref target="RFC2045" format="none">RFC 2045</xref>, <xref target="RFC2046" format="none">RFC 2046</xref>, <xref target="RFC2047" format="none">RFC 2047</xref>, <xref target="RFC2048" format="none">RFC 2048</xref>, <xref target="RFC2049" format="none">RFC 2049</xref>]
      can convey presentational information.  It specifies the
      "Content-Disposition" header field, which is optional and valid for
      any MIME entity ("message" or "body part").  Two values for this
      header field are described in this memo; one for the ordinary linear
      presentation of the body part, and another to facilitate the use of
      mail to transfer files.  It is expected that more values will be
      defined in the future, and procedures are defined for extending this
      set of values.
    </t>
    <t>
      This document is intended as an extension to MIME.  As such, the
      reader is assumed to be familiar with the MIME specifications, and
      [<xref target="RFC822" format="none">RFC 822</xref>].  The information presented herein supplements but does not
      replace that found in those documents.
    </t>
    <t>
      This document is a revision to the Experimental protocol defined in
      RFC 1806.  As compared to RFC 1806, this document contains minor
      editorial updates, adds new parameters needed to support the File
      Transfer Body Part, and references a separate specification for the
      handling of non-ASCII and/or very long parameter values.
    </t>
  </abstract>
    
  </front>
  <middle>

<section title="Introduction">
  <t>
   MIME specifies a standard format for encapsulating multiple pieces of
   data into a single Internet message. That document does not address
   the issue of presentation styles; it provides a framework for the
   interchange of message content, but leaves presentation issues solely
   in the hands of mail user agent (MUA) implementors.
  </t>
  <t>
   Two common ways of presenting multipart electronic messages are as a
   main document with a list of separate attachments, and as a single
   document with the various parts expanded (displayed) inline. The
   display of an attachment is generally construed to require positive
   action on the part of the recipient, while inline message components
   are displayed automatically when the message is viewed. A mechanism
   is needed to allow the sender to transmit this sort of presentational
   information to the recipient; the Content-Disposition header provides
   this mechanism, allowing each component of a message to be tagged
   with an indication of its desired presentation semantics.
  </t>
  <t>
   Tagging messages in this manner will often be sufficient for basic
   message formatting. However, in many cases a more powerful and
   flexible approach will be necessary. The definition of such
   approaches is beyond the scope of this memo; however, such approaches
   can benefit from additional Content-Disposition values and
   parameters, to be defined at a later date.
  </t>
  <t>
   In addition to allowing the sender to specify the presentational
   disposition of a message component, it is desirable to allow her to
   indicate a default archival disposition; a filename. The optional
   "filename" parameter provides for this.  Further, the creation-date,
   modification-date, and read-date parameters allow preservation of
   those file attributes when the file is transmitted over MIME email.
  </t>
  <t>
   NB: The keywords MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD,
   SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL, when they appear in this
   document, are to be interpreted as described in [<xref target="RFC2119" format="none">RFC 2119</xref>].
  </t>
</section>

<section title="The Content-Disposition Header Field">
  <t>
   Content-Disposition is an optional header field. In its absence, the
   MUA may use whatever presentation method it deems suitable.
  </t>
  <t>
   It is desirable to keep the set of possible disposition types small
   and well defined, to avoid needless complexity. Even so, evolving
   usage will likely require the definition of additional disposition
   types or parameters, so the set of disposition values is extensible;
   see below.
  </t>
  <t>
   In the extended BNF notation of [<xref target="RFC822" format="none">RFC 822</xref>], the Content-Disposition
   header field is defined as follows:
  </t>
  <figure><artwork type="inline">
  disposition := "Content-Disposition" ":"
                 disposition-type
                 *(";" disposition-parm)

  disposition-type := "inline"
                    / "attachment"
                    / extension-token
                    ; values are not case-sensitive

  disposition-parm := filename-parm
                    / creation-date-parm
                    / modification-date-parm
                    / read-date-parm
                    / size-parm
                    / parameter

  filename-parm := "filename" "=" value

  creation-date-parm := "creation-date" "=" quoted-date-time

  modification-date-parm := "modification-date" "=" quoted-date-time

  read-date-parm := "read-date" "=" quoted-date-time

  size-parm := "size" "=" 1*DIGIT

  quoted-date-time := quoted-string
                   ; contents MUST be an <xref target="RFC822" format="none">RFC 822</xref> `date-time'
                   ; numeric timezones (+HHMM or -HHMM) MUST be used
</artwork></figure>
  <t>
   NOTE ON PARAMETER VALUE LENGHTS: A short (length &lt;= 78 characters)
   parameter value containing only non-`tspecials' characters SHOULD be
   represented as a single `token'.  A short parameter value containing
   only ASCII characters, but including `tspecials' characters, SHOULD
   be represented as `quoted-string'.  Parameter values longer than 78
   characters, or which contain non-ASCII characters, MUST be encoded as
   specified in [<xref target="RFC2184" format="none">RFC 2184</xref>].
  </t>
  <t>
   `Extension-token', `parameter', `tspecials' and `value' are defined
   according to [<xref target="RFC2045" format="none">RFC 2045</xref>] (which references [<xref target="RFC822" format="none">RFC 822</xref>] in the definition
   of some of these tokens).  `quoted-string' and `DIGIT' are defined in
   [<xref target="RFC822" format="none">RFC 822</xref>].
  </t>
  
<section title="The Inline Disposition Type">
  <t>
   A bodypart should be marked `inline' if it is intended to be
   displayed automatically upon display of the message.  Inline
   bodyparts should be presented in the order in which they occur,
   subject to the normal semantics of multipart messages.
  </t>
</section>

<section title="The Attachment Disposition Type">
  <t>
   Bodyparts can be designated `attachment' to indicate that they are
   separate from the main body of the mail message, and that their
   display should not be automatic, but contingent upon some further
   action of the user.  The MUA might instead present the user of a
   bitmap terminal with an iconic representation of the attachments, or,
   on character terminals, with a list of attachments from which the
   user could select for viewing or storage.
  </t>  
</section>
  
<section title="The Filename Parameter">
  <t>
   The sender may want to suggest a filename to be used if the entity is
   detached and stored in a separate file. If the receiving MUA writes
   the entity to a file, the suggested filename should be used as a
   basis for the actual filename, where possible.
  </t>
  <t>
   It is important that the receiving MUA not blindly use the suggested
   filename.  The suggested filename SHOULD be checked (and possibly
   changed) to see that it conforms to local filesystem conventions,
   does not overwrite an existing file, and does not present a security
   problem (see Security Considerations below).
  </t>
  <t>
   The receiving MUA SHOULD NOT respect any directory path information
   that may seem to be present in the filename parameter.  The filename
   should be treated as a terminal component only.  Portable
   specification of directory paths might possibly be done in the future
   via a separate Content-Disposition parameter, but no provision is
   made for it in this draft.
  </t>
  <t>
   Current [<xref target="RFC2045" format="none">RFC 2045</xref>] grammar restricts parameter values (and hence
   Content-Disposition filenames) to US-ASCII.  We recognize the great
   desirability of allowing arbitrary character sets in filenames, but
   it is beyond the scope of this document to define the necessary
   mechanisms.  We expect that the basic [RFC 1521] `value'
   specification will someday be amended to allow use of non-US-ASCII
   characters, at which time the same mechanism should be used in the
   Content-Disposition filename parameter.
  </t>
  <t>
   Beyond the limitation to US-ASCII, the sending MUA may wish to bear
   in mind the limitations of common filesystems.  Many have severe
   length and character set restrictions.  Short alphanumeric filenames
   are least likely to require modification by the receiving system.
  </t>
  <t>
   The presence of the filename parameter does not force an
   implementation to write the entity to a separate file. It is
   perfectly acceptable for implementations to leave the entity as part
   of the normal mail stream unless the user requests otherwise. As a
   consequence, the parameter may be used on any MIME entity, even
   `inline' ones. These will not normally be written to files, but the
   parameter could be used to provide a filename if the receiving user
   should choose to write the part to a file.
  </t>
</section>
  
<section title="The Creation-Date parameter">
  <t>
   The creation-date parameter MAY be used to indicate the date at which
   the file was created.  If this parameter is included, the paramter
   value MUST be a quoted-string which contains a representation of the
   creation date of the file in [<xref target="RFC822" format="none">RFC 822</xref>] `date-time' format.
  </t>
  <t>
   UNIX and POSIX implementors are cautioned that the `st_ctime' file
   attribute of the `stat' structure is not the creation time of the
   file; it is thus not appropriate as a source for the creation-date
   parameter value.
  </t>
</section>  

<section title="The Modification-Date parameter">
  <t>
   The modification-date parameter MAY be used to indicate the date at
   which the file was last modified.  If the modification-date parameter
   is included, the paramter value MUST be a quoted-string which
   contains a representation of the last modification date of the file
   in [<xref target="RFC822" format="none">RFC 822</xref>] `date-time' format.
  </t>
</section>
  
<section title="The Read-Date parameter">
  <t>
   The read-date parameter MAY be used to indicate the date at which the
   file was last read.  If the read-date parameter is included, the
   parameter value MUST be a quoted-string which contains a
   representation of the last-read date of the file in [<xref target="RFC822" format="none">RFC 822</xref>] `date-
   time' format.
  </t>
</section>  

<section title="The Size parameter">
  <t>
   The size parameter indicates an approximate size of the file in
   octets.  It can be used, for example, to pre-allocate space before
   attempting to store the file, or to determine whether enough space
   exists.
  </t>
</section>

<section title="Future Extensions and Unrecognized Disposition Types">
  <t>
   In the likely event that new parameters or disposition types are
   needed, they should be registered with the Internet Assigned Numbers
   Authority (IANA), in the manner specified in Section <xref format="counter" target="registration"/> of this memo.
  </t>
  <t>
   Once new disposition types and parameters are defined, there is of
   course the likelihood that implementations will see disposition types
   and parameters they do not understand.  Furthermore, since x-tokens
   are allowed, implementations may also see entirely unregistered
   disposition types and parameters.
  </t>
  <t>
   Unrecognized parameters should be ignored. Unrecognized disposition
   types should be treated as `attachment'. The choice of `attachment'
   for unrecognized types is made because a sender who goes to the
   trouble of producing a Content-Disposition header with a new
   disposition type is more likely aiming for something more elaborate
   than inline presentation.
  </t>
  <t>
   Unless noted otherwise in the definition of a parameter, Content-Disposition
   parameters are valid for all dispositions.  (In contrast
   to MIME content-type parameters, which are defined on a per-content-type
   basis.) Thus, for example, the `filename' parameter still means
   the name of the file to which the part should be written, even if the
   disposition itself is unrecognized.
  </t>
</section>

<section title="Content-Disposition and Multipart">
  <t>
   If a Content-Disposition header is used on a multipart body part, it
   applies to the multipart as a whole, not the individual subparts.
   The disposition types of the subparts do not need to be consulted
   until the multipart itself is presented.  When the multipart is
   displayed, then the dispositions of the subparts should be respected.
  </t>
  <t>
   If the `inline' disposition is used, the multipart should be
   displayed as normal; however, an `attachment' subpart should require
   action from the user to display.
  </t>
  <t>
   If the `attachment' disposition is used, presentation of the
   multipart should not proceed without explicit user action.  Once the
   user has chosen to display the multipart, the individual subpart
   dispositions should be consulted to determine how to present the
   subparts.
  </t>
</section>
  
<section title="Content-Disposition and the Main Message">
  <t>
   It is permissible to use Content-Disposition on the main body of an
   [<xref target="RFC822" format="none">RFC 822</xref>] message.
  </t>
</section>
</section>  

<section title="Examples">
  <t>
   Here is a an example of a body part containing a JPEG image that is
   intended to be viewed by the user immediately:
  </t>
<figure><artwork type="example">
     Content-Type: image/jpeg
     Content-Disposition: inline
     Content-Description: just a small picture of me

      &lt;jpeg data>
</artwork></figure>
  <t>
   The following body part contains a JPEG image that should be
   displayed to the user only if the user requests it. If the JPEG is
   written to a file, the file should be named "genome.jpg".  The
   recipient's user might also choose to set the last-modified date of
   the stored file to date in the modification-date parameter:
  </t>
<figure><artwork type="example">
     Content-Type: image/jpeg
     Content-Disposition: attachment; filename=genome.jpeg;
       modification-date="Wed, 12 Feb 1997 16:29:51 -0500";
     Content-Description: a complete map of the human genome

     &lt;jpeg data>
</artwork></figure>
  <t>
   The following is an example of the use of the `attachment'
   disposition with a multipart body part.  The user should see text-part-1
   immediately, then take some action to view multipart-2.  After
   taking action to view multipart-2, the user will see text-part-2
   right away, and be required to take action to view jpeg-1.  Subparts
   are indented for clarity; they would not be so indented in a real
   message.
  </t>
<figure><artwork type="example">
     Content-Type: multipart/mixed; boundary=outer
     Content-Description: multipart-1

     --outer
       Content-Type: text/plain
       Content-Disposition: inline
       Content-Description: text-part-1

       Some text goes here

     --outer
       Content-Type: multipart/mixed; boundary=inner
       Content-Disposition: attachment
       Content-Description: multipart-2

       --inner
         Content-Type: text/plain
         Content-Disposition: inline
         Content-Description: text-part-2

         Some more text here.

       --inner
         Content-Type: image/jpeg
         Content-Disposition: attachment
         Content-Description: jpeg-1

         &lt;jpeg data>
       --inner--
     --outer--
</artwork></figure>
</section>

<section title="Summary">
  <t>
   Content-Disposition takes one of two values, `inline' and
   `attachment'.  `Inline' indicates that the entity should be
   immediately displayed to the user, whereas `attachment' means that
   the user should take additional action to view the entity.
  </t>
  <t>
   The `filename' parameter can be used to suggest a filename for
   storing the bodypart, if the user wishes to store it in an external
   file.
  </t>
</section>
  
<section title="Security Considerations">
  <t>
   There are security issues involved any time users exchange data.
   While these are not to be minimized, neither does this memo change
   the status quo in that regard, except in one instance.
  </t>
  <t>
   Since this memo provides a way for the sender to suggest a filename,
   a receiving MUA must take care that the sender's suggested filename
   does not represent a hazard. Using UNIX as an example, some hazards
   would be:
    <list style="symbols">
      <t>Creating startup files (e.g., ".login").</t>
      <t>Creating or overwriting system files (e.g., "/etc/passwd").</t>
      <t>Overwriting any existing file.</t>
      <t>Placing executable files into any command search path
        (e.g., "~/bin/more").</t>
      <t>Sending the file to a pipe (e.g., "| sh").</t>
    </list>
  </t>
  <t>
   In general, the receiving MUA should not name or place the file such
   that it will get interpreted or executed without the user explicitly
   initiating the action.
  </t>
  <t>
   It is very important to note that this is not an exhaustive list; it
   is intended as a small set of examples only.  Implementors must be
   alert to the potential hazards on their target systems.
  </t>
</section>  
  
  </middle>  
  <back>
  <references>
<reference anchor="RFC2119">
  <front>
    <title abbrev="RFC Key Words">Key words for use in RFCs to Indicate Requirement Levels</title>
    <author initials="S." surname="Bradner" fullname="Scott Bradner">
      <organization>Harvard University</organization>
      <address><email>sob@harvard.edu</email></address>
    </author>
    <date month="March" year="1997"/>
    <area>General</area>
    <keyword>keyword</keyword>
  </front>
  <seriesInfo name="RFC" value="2119"/>
</reference>

<reference anchor='RFC2184'>
  <front>
    <title abbrev='MIME Parameter Value and Encoded Word Extensions'>MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations</title>
    <author initials='N.' surname='Freed' fullname='Ned Freed'>
      <organization>Innosoft International, Inc.</organization>
      <address>
      <email>ned@innosoft.com</email></address>
    </author>
    <author initials='K.' surname='Moore' fullname='Keith Moore'>
      <organization>Computer Science Dept.</organization>
      <address>
      <email>moore@cs.utk.edu</email></address>
    </author>
    <date year='1997' month='August' />
  </front>
  <seriesInfo name='RFC' value='2184' />
</reference>

<reference anchor='RFC2045'>
  <front>
    <title abbrev='Internet Message Bodies'>Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies</title>
    <author initials='N.' surname='Freed' fullname='Ned Freed'>
      <organization>Innosoft International, Inc.</organization>
      <address>
      <postal>
      <street>1050 East Garvey Avenue South</street>
      <city>West Covina</city>
      <region>CA</region>
      <code>91790</code>
      <country>US</country></postal>
      <phone>+1 818 919 3600</phone>
      <facsimile>+1 818 919 3614</facsimile>
      <email>ned@innosoft.com</email></address>
    </author>
    <author initials='N.' surname='Borenstein' fullname='Nathaniel S. Borenstein'>
      <organization>First Virtual Holdings</organization>
      <address>
      <postal>
      <street>25 Washington Avenue</street>
      <city>Morristown</city>
      <region>NJ</region>
      <code>07960</code>
      <country>US</country></postal>
      <phone>+1 201 540 8967</phone>
      <facsimile>+1 201 993 3032</facsimile>
      <email>nsb@nsb.fv.com</email></address>
    </author>
    <date month='November' year='1996' />
  </front>
  <seriesInfo name='RFC' value='2045' />
</reference>

<reference anchor='RFC2046'>
  <front>
    <title abbrev='Media Types'>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</title>
      <author initials='N.' surname='Freed' fullname='Ned Freed'>
      <organization>Innosoft International, Inc.</organization>
      <address>
      <postal>
      <street>1050 East Garvey Avenue South</street>
      <city>West Covina</city>
      <region>CA</region>
      <code>91790</code>
      <country>US</country></postal>
      <phone>+1 818 919 3600</phone>
      <facsimile>+1 818 919 3614</facsimile>
      <email>ned@innosoft.com</email></address>
    </author>
    <author initials='N.' surname='Borenstein' fullname='Nathaniel S. Borenstein'>
      <organization>First Virtual Holdings</organization>
      <address>
      <postal>
      <street>25 Washington Avenue</street>
      <city>Morristown</city>
      <region>NJ</region>
      <code>07960</code>
      <country>US</country></postal>
      <phone>+1 201 540 8967</phone>
      <facsimile>+1 201 993 3032</facsimile>
      <email>nsb@nsb.fv.com</email></address>
    </author>
    <date month='November' year='1996' />
  </front>
  <seriesInfo name='RFC' value='2046' />
</reference>

<reference anchor="RFC2047">
  <front>
  <title abbrev="Message Header Extensions">MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text</title>
    <author initials="K." surname="Moore" fullname="Keith Moore">
    <organization>University of Tennessee</organization>
    <address>
    <postal>
    <street>107 Ayres Hall</street>
    <street>Knoxville TN 37996-1301</street></postal>
    <email>moore@cs.utk.edu</email></address>
  </author>
  <date month="November" year="1996"/>
  <area>Applications</area>
  <keyword>Amercian Standard Code for Information Interchange</keyword>
  <keyword>mail</keyword>
  <keyword>multipurpose internet mail extensions</keyword>
  </front>
  <seriesInfo name="RFC" value="2047"/>
</reference>

<reference anchor='RFC2048'>

<front>
  <title abbrev='MIME Registration Procedures'>Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures</title>
  <author initials='N.' surname='Freed' fullname='Ned Freed'>
  <organization>Innosoft International, Inc.</organization>
  <address>
  <postal>
  <street>1050 East Garvey Avenue South</street>
  <street>West Covina</street>
  <street>CA 91790</street>
  
  <country>USA</country></postal>
  <phone>+1 818 919 3600</phone>
  <facsimile>+1 818 919 3614</facsimile>
  <email>ned@innosoft.com</email></address></author>
  <author initials='J.' surname='Klensin' fullname='John Klensin'>
  <organization>MCI</organization>
  <address>
  <postal>
  <street>2100 Reston Parkway</street>
  <street>Reston</street>
  
  <street>VA 22091</street></postal>
  <phone>+1 703 715-7361</phone>
  <facsimile>+1 703 715-7436</facsimile>
  <email>klensin@mci.net</email></address></author>
  <author initials='J.' surname='Postel' fullname='Jon Postel'>
  <organization>USC/Information Sciences Institute</organization>
  <address>
  <postal>
  <street>4676 Admiralty Way</street>
  <street>Marina del Rey</street>
  
  <street>CA  90292</street>
  <country>USA</country></postal>
  <phone>+1 310 822 1511</phone>
  <facsimile>+1 310 823 6714</facsimile>
  <email>Postel@ISI.EDU</email></address></author>
  <date year='1996' month='November' />
  <area>Applications</area>
  <keyword>mail</keyword>
  <keyword>media type</keyword>
  
  <keyword>multipurpose internet mail extensions</keyword>

  </front>
  <seriesInfo name='RFC' value='2048' />
</reference>

<reference anchor="RFC2049">
  <front>
    <title abbrev="MIME Conformance">Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples</title>
    <author initials="N." surname="Freed" fullname="Ned Freed">
    <organization>Innosoft International, Inc.</organization>
    <address>
    <postal>
    <street>1050 East Garvey Avenue South</street>
    <street>West Covina</street>
    <street>CA 91790</street>
    <country>USA</country></postal>
    <phone>+1 818 919 3600</phone>
    <facsimile>+1 818 919 3614</facsimile>
    <email>ned@innosoft.com</email></address></author>
    <author initials="N.S." surname="Borenstein" fullname="Nathaniel S. Borenstein">
    <organization>First Virtual Holdings</organization>
    <address>
    <postal>
    <street>25 Washington Avenue</street>
    <street>Morristown</street>
    <street>NJ 07960</street>
    <country>USA</country></postal>
    <phone>+1 201 540 8967</phone>
    <facsimile>+1 201 993 3032</facsimile>
    <email>nsb@nsb.fv.com</email></address></author>
    <date month="November" year="1996"/>
    <area>Applications</area>
    <keyword>mail</keyword>
    <keyword>multipurpose internet mail extensions</keyword>
  </front>
  <seriesInfo name="RFC" value="2049"/>
</reference>

<reference anchor='RFC822'>
  <front>
    <title abbrev='Standard for ARPA Internet Text Messages'>Standard for the format of ARPA Internet text messages</title>
    <author initials='D.H.' surname='Crocker' fullname='David H. Crocker'>
      <organization>University of Delaware, Dept. of Electrical Engineering</organization>
      <address>
        <email>DCrocker@UDel-Relay</email>
      </address>
    </author>
    <date month='August' day='13' year='1982' />
  </front>
  <seriesInfo name='STD' value='11' />
  <seriesInfo name='RFC' value='822' />
</reference>

</references>
  
<section title="Acknowledgements" x:fixed-section-number="7">
  <t>
   We gratefully acknowledge the help these people provided during the
   preparation of this draft:
    <list>
        <t>Nathaniel Borenstein</t>
        <t>Ned Freed</t>
        <t>Keith Moore</t>
        <t>Dave Crocker</t>
        <t>Dan Pritchett</t>
    </list>
  </t>
</section>

<section title="Authors' Addresses" x:fixed-section-number="8" anchor="rfc.authors">
<t>
  You should blame the editor of this version of the document for any
  changes since RFC 1806:
</t>
<x:include-author target="author.keith.moore"/>
<t>
  The authors of RFC 1806 are:
</t>
<x:include-author target="author.rens.troost"/>
<x:include-author target="author.steve.dorner"/>
</section>

<section title="Registration of New Content-Disposition Values and Parameters" x:fixed-section-number="9" anchor="registration">
  <t>
   New Content-Disposition values (besides "inline" and "attachment")
   may be defined only by Internet standards-track documents, or in
   Experimental documents approved by the Internet Engineering Steering
   Group.
  </t>
  <t>
   New content-disposition parameters may be registered by supplying the
   information in the following template and sending it via electronic
   mail to IANA@IANA.ORG:
  </t>
<figure><artwork type="inline">
     To: IANA@IANA.ORG
     Subject: Registration of new Content-Disposition parameter

     Content-Disposition parameter name:

     Allowable values for this parameter:
          (If the parameter can only assume a small number of values,
          list each of those values.  Otherwise, describe the values
          that the parameter can assume.)
     Description:
          (What is the purpose of this parameter and how is it used?)
</artwork></figure>
</section>

<section title="Changes since RFC 1806" x:fixed-section-number="10">
  <t>
   The following changes have been made since the earlier version of
   this document, published in RFC 1806 as an Experimental protocol:
    <list style="symbols">
      <t>Updated references to MIME documents.  In some cases this
        involved substituting a reference to one of the current MIME
        RFCs for a reference to RFC 1521; in other cases, a reference to
        RFC 1521 was simply replaced with the word "MIME".</t>

      <t>Added  a section on registration procedures, since none of the
        procedures in <xref target="RFC2048" format="none">RFC 2048</xref> seemed to be appropriate.</t>

      <t>Added new parameter types: creation-date, modification-date,
        read-date, and size.</t>
      
      <t>Incorporated a reference to draft-freed-pvcsc-* for encoding
        long or non-ASCII parameter values.</t>

      <t>Added reference to <xref target="RFC2119" format="none">RFC 2119</xref> to define MUST, SHOULD, etc.
        keywords.</t>
    </list>
  </t>
</section>
  </back>  
</rfc>