Tcl MIMEDover Beach Consulting, Inc.POB 255268SacramentoCA95865-5268US+1 916 483 8878+1 916 483 8848mrose@dbc.mtview.ca.usTcl MIME generates and parses MIME body parts.Tcl MIME is an implementation of a Tcl package that generates and
parses MIME body parts.Each MIME part consists of a header
(zero or more key/value pairs),
an empty line,
and a structured body.
A MIME part is either a "leaf" or has (zero or more) subordinates.MIME defines four keys that may appear in the headers:
describes the data contained in the body
("the content");describes how the content is
encoded for transmission in an ASCII stream;a textual description of the
content; and,a globally-unique identifier for the
content.Consult for a list of standard content types.
Further,
consult for a list of several other header keys
(e.g., "To", "cc", etc.)In addition to an implementation of the mime package,
Tcl MIME includes an implementation of the smtp package.This package requires:
Tcl/Tk version 8.0.3
or laterIn addition, this package requires one of the following:Trf version 2.0p5
or laterbase 64 version 2.0 or later (included with tcllib)If it is available, Trf will be used to provide better performance;
if not, Tcl-only equivalent functions, based on the base64 package,
are used.(c) 1999-2000 Marshall T. RoseHold harmless the author, and any lawful use is allowed.mime::initialize creates a MIME part:
If the -canonical option is present,
then the body is in canonical (raw) form and is found by consulting
either the -file, -string, or -part option.
In addition,
both the -param and -header options may occur zero or more times to
specify "Content-Type" parameters (e.g., "charset")
and header keyword/values (e.g., "Content-Disposition"),
respectively.
Also, -encoding, if present,
specifies the "Content-Transfer-Encoding" when copying the body.If the -canonical option is not present,
then the MIME part contained in either the -file or the -string option
is parsed,
dynamically generating subordinates as appropriate.mime::finalize destroys a MIME part.If the -subordinates option is present,
it specifies which subordinates should also be destroyed.
The default value is "dynamic".mime::getproperty returns the properties of a MIME part.If mime::getproperty is invoked with the name of a specific property,
then the corresponding value is returned;
instead,
if -names is specified,
a list of all properties is returned;
otherwise,
a serialized array of properties and values is returned.mime::getheader returns the header of a MIME part.A header consists of zero or more key/value pairs.
Each value is a list containing one or more strings.If mime::getheader is invoked with the name of a specific key,
then a list containing the corresponding value(s) is returned;
instead,
if -names is specified,
a list of all keys is returned;
otherwise,
a serialized array of keys and values is returned.
Note that when a key is specified (e.g., "Subject"),
the list returned usually contains exactly one string;
however,
some keys (e.g., "Received") often occur more than once in the header,
accordingly the list returned usually contains more than one string.mime::setheader writes, appends to, or deletes the value associated
with a key in the header.The value for -mode is one of:
the key/value is either created or
overwritten (the default); a new value is appended for the key
(creating it as necessary); or, all values associated with the key are removed
(the "value" parameter is ignored).Regardless,
mime::setheader returns the previous value associated with the key.mime::getbody returns the body of a leaf MIME part in canonical form.Regardless,
the return value of the final invocation of the callback is propagated
upwards by mime::getbody.If the -command option is absent,
then the return value of mime::getbody is a string containing the MIME
part's entire body.mime::copymessage copies the MIME part to the specified channel.mime::copymessage operates synchronously,
and uses fileevent to allow asynchronous operations to proceed
independently.mime::buildmessage returns the MIME part as a string. It is similar
to mime::copymessage, only it returns the data as a return string
instead of writing to a channel.smtp::sendmessage sends a MIME part to an SMTP server.
(Note that this procedure is in the "smtp" package,
not the "mime" package.)The options are:
a list of SMTP servers
(the default is "localhost");a list of SMTP ports
(the default is 25);indicates that the SMTP server should be
asked to queue the message for later processing;indicates that the SMTP server must find
at least one recipient acceptable for the message to be sent;a string containing an 822-style address
specification
(if present the header isn't examined for an originator address);a string containing one or more 822-style
address specifications
(if present the header isn't examined for recipient addresses); and,a keyword/value pairing
(may occur zero or more times).If the -originator option is not present,
the originator address is taken from "From" (or "Resent-From");
similarly,
if the -recipients option is not present,
recipient addresses are taken from "To", "cc", and "Bcc" (or
"Resent-To", and so on).
Note that the header key/values supplied by the "-header" option
(not those present in the MIME part)
are consulted.
Regardless,
header key/values are added to the outgoing message as necessary to
ensure that a valid 822-style message is sent.smtp::sendmessage returns a list indicating which recipients were
unacceptable to the SMTP server.
Each element of the list is another list,
containing the address, an SMTP error code, and a textual diagnostic.
Depending on the -atleastone option and the intended recipients,,
a non-empty list may still indicate that the message was accepted by
the server.mime::parseaddr 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.mime::parsedatetime takes a string containing an 822-style
date-time specification and returns the specified property.mime::mapencoding 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::reversemapencoding maps MIME charset types onto tcl encoding names.
Those that are unknown return "".Multipurpose Internet Mail Extensions (MIME)
Part One: Format of Internet Message BodiesInnosoft International, Inc.ned@innosoft.comFirst Virtual Holdings, Incorporatednsb@messagemedia.comMultipurpose Internet Mail Extensions (MIME)
Part Two: Media TypesInnosoft International, Inc.ned@innosoft.comFirst Virtual Holdings, Incorporatednsb@messagemedia.comStandard for the format of ARPA Internet Text MessagesUniversity of DelawareDCrocker@UDel-Relaywell-defined errorCode valuescatch nested errors when processing a multipartThis package is influenced by the safe-tcl package
(Borenstein and Rose, circa 1993),
and also by Darren New's
unpublished package of 1999.This package makes use of
Andreas Kupries's
excellent Trf package.