mime
Manipulation of MIME body parts
literal type exactly as shown
argument replace with your value
?optional? may be omitted
Synopsis#
package require Tcl 8.5 9
package require mime ?1.7.2?
::mime::initialize ?-canonical type/subtype ?-param {key value}...? ?-encoding value? ?-header {key value}...?? (-file name | -string value | -parts {token1 ... tokenN})
::mime::finalize token ?-subordinates all | dynamic | none?
::mime::getproperty token ?property | -names?
::mime::getheader token ?key | -names?
::mime::setheader token key value ?-mode write | append | delete?
::mime::getbody token ?-decode? ?-command callback ?-blocksize octets??
::mime::copymessage token channel
::mime::buildmessage token
::mime::parseaddress string
::mime::parsedatetime (string | -now) property
::mime::mapencoding encoding_name
::mime::reversemapencoding charset_type
Description#
The mime library package provides the commands to create and manipulate MIME body parts.
::mime::initialize?-canonicaltype/subtype ?-param{key value}...? ?-encodingvalue? ?-header{key value}...?? (-filename |-stringvalue |-parts{token1 ... tokenN})#-
Creates a MIME part and returns a token representing it.
If the
-canonicaloption is present, then the body is in canonical (raw) form and is found by consulting either the-file,-string, or-partsoption.In addition, both the
-paramand-headeroptions may occur zero or more times to specifyContent-Typeparameters (e.g.,charset) and header keyword/values (e.g.,Content-Disposition), respectively.Also,
-encoding, if present, specifies theContent-Transfer-Encodingwhen copying the body.If the
-canonicaloption is not present, then the MIME part contained in either the-fileor the-stringoption is parsed, dynamically generating subordinates as appropriate.
::mime::finalizetoken ?-subordinatesall|dynamic|none?#-
Destroys the MIME part represented by token. It returns an empty string.
If the
-subordinatesoption is present, it specifies which subordinates should also be destroyed. The default value isdynamic, destroying all subordinates which were created by::mime::initializetogether with the containing body part. ::mime::getpropertytoken ?property |-names?#-
Returns a string or a list of strings containing the properties of a MIME part. If the command is invoked with the name of a specific property, then the corresponding value is returned; instead, if
-namesis specified, a list of all properties is returned; otherwise, a serialized array of properties and values is returned.The possible properties are:
content#-
The type/subtype describing the content
encoding#-
The "Content-Transfer-Encoding"
params#-
A list of "Content-Type" parameters
parts#-
A list of tokens for the part's subordinates. This property is present only if the MIME part has subordinates.
size#-
The approximate size of the content (unencoded)
::mime::getheadertoken ?key |-names?#-
Returns the header of a MIME part as a dictionary with possibly-redundant keys.
If key is provided, then a list of values of matching names, without regard to case, is returned.
If
-namesis provided, a list of all keys is returned. ::mime::setheadertoken key value ?-modewrite|append|delete?#-
If
appendis provided, creates a new header named key with the value of value is added. Ifwriteis provided, deletes any existing headers whose names match key and then creates a new header named key with the value of value. Ifdeleteis provided any existing header having a name that matches key is deleted. Returns a list of strings containing the previous value associated with the key.The value for
-modeis one of: ::mime::getbodytoken ?-decode? ?-commandcallback ?-blocksizeoctets??#-
Returns a string containing the body of the leaf MIME part represented by token in canonical form.
If the
-commandoption is present, then it is repeatedly invoked with a fragment of the body as this:uplevel #0 $callback [list "data" $fragment](The
-blocksizeoption, if present, specifies the maximum size of each fragment passed to the callback.)When the end of the body is reached, the callback is invoked as:
uplevel #0 $callback "end"Alternatively, if an error occurs, the callback is invoked as:
uplevel #0 $callback [list "error" reason]Regardless, the return value of the final invocation of the callback is propagated upwards by
::mime::getbody.If the
-commandoption is absent, then the return value of::mime::getbodyis a string containing the MIME part's entire body.If the option
-decodeis absent the return value computed above is returned as is. This means that it will be in the charset specified for the token and not the usual utf-8. If the option-decodeis present however the command will use the charset information associated with the token to convert the string from its encoding into utf-8 before returning it. ::mime::copymessagetoken channel#-
Copies the MIME represented by token part to the specified channel. The command operates synchronously, and uses fileevent to allow asynchronous operations to proceed independently. It returns an empty string.
::mime::buildmessagetoken#-
Returns the MIME part represented by token as a string. It is similar to
::mime::copymessage, only it returns the data as a return string instead of writing to a channel. ::mime::parseaddressstring#-
Takes a string containing one or more 822-style address specifications and returns a list of serialized arrays, one element for each address specified in the argument. If the string contains more than one address they will be separated by commas.
Each serialized array contains the properties below. Note that one or more of these properties may be empty.
address#-
local@domain
comment#-
822-style comment
domain#-
the domain part (rhs)
error#-
non-empty on a parse error
group#-
this address begins a group
friendly#-
user-friendly rendering
local#-
the local part (lhs)
memberP#-
this address belongs to a group
phrase#-
the phrase part
proper#-
822-style address specification
route#-
822-style route specification (obsolete)
::mime::parsedatetime(string |-now) property#-
Takes a string containing an 822-style date-time specification and returns the specified property as a serialized array.
The list of properties and their ranges are:
hour#-
0 .. 23
lmonth#-
January, February, ..., December
lweekday#-
Sunday, Monday, ... Saturday
mday#-
1 .. 31
min#-
0 .. 59
mon#-
1 .. 12
month#-
Jan, Feb, ..., Dec
proper#-
822-style date-time specification
rclock#-
elapsed seconds between then and now
sec#-
0 .. 59
wday#-
0 .. 6 (Sun .. Mon)
weekday#-
Sun, Mon, ..., Sat
yday#-
1 .. 366
year#-
1900 ...
zone#-
-720 .. 720 (minutes east of GMT)
::mime::mapencodingencoding_name#-
Maps tcl encodings onto the proper names for their MIME charset type. This is only done for encodings whose charset types were known. The remaining encodings return "" for now.
::mime::reversemapencodingcharset_type#-
Maps MIME charset types onto tcl encoding names. Those that are unknown return "".
Known bugs#
- Tcllib Bug #447037
-
This problem affects only people which are using Tcl and Mime on a 64-bit system. The currently recommended fix for this problem is to upgrade to Tcl version 8.4. This version has extended 64 bit support and the bug does not appear anymore.
The problem could have been generally solved by requiring the use of Tcl 8.4 for this package. We decided against this solution as it would force a large number of unaffected users to upgrade their Tcl interpreter for no reason.
See Ticket 447037 [/tktview?name=447037] for additional information.
Bugs, ideas, feedback#
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category mime of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist]. Please also report any ideas for enhancements you may have for either package and/or documentation.
When proposing code changes, please provide unified diffs, i.e the output of diff -u.
Note further that attachments are strongly preferred over inlined patches. Attachments can be made by going to the Edit form of the ticket immediately after its creation, and then using the left-most button in the secondary navigation bar.
Category#
Text processing
Copyright#
Copyright (c) 1999-2000 Marshall T. Rose
See also#
Keywords#
email · internet · mail · mime · net · rfc 2045 · rfc 2046 · rfc 2049 · rfc 821 · rfc 822 · smtp