★ wanayoo — archive 1999 http://nodevice.com/sections/ManIndex/man0825.htmlNouvelle recherche | Portail wanayoo

MHBUILD (1)

translate MIME composition draft

Previous   Next   Man IndexSections: 0 1 2 3 4 5 6 7 8 N

SYNOPSIS

DESCRIPTION

-.5i

First, mhbuild will look for an entry of the form: +.5i mhbuild-compose-<type>/<subtype> -.5i to determine the command to use to compose the content. If this isn't found, mhbuild will look for an entry of the form: +.5i mhbuild-compose-<type> -.5i to determine the composition command.

If this isn't found, mhbuild will complain.

An example entry might be: +.5i mhbuild-compose-audio/basic: record | raw2audio -F -.5i Because commands like these will vary, depending on the display environment used for login, composition strings for different contents should probably be put in the file specified by the $MHBUILD environment variable, instead of directly in your user profile.

The \*(lqexternal-type\*(rq directives are used to provide a MIME reference to a content, rather than enclosing the contents itself (for instance, by specifying an ftp site). Hence, instead of providing a filename as with the type directives, external-parameters are supplied. These look like regular parameters, so they must be separated accordingly. For example,

+.5i
#@application/octet-stream; \\
    type=tar; \\
    conversions=compress \\
    [this is the nmh distribution] \\
    name="nmh.tar.gz"; \\
    directory="/pub/nmh"; \\
    site="ftp.math.gatech.edu"; \\
    access-type=anon-ftp; \\
    mode="image"
-.5i
You must give a description string to separate the content parameters from the external-parameters (although this string may be empty). This description string is specified by enclosing it within \*(lq[]\*(rq. 19 These parameters are of the form:
+.5i
\w'access-type=  'u
access-type=    usually anon-ftp or mail-server
name=   filename
permission=     read-only or read-write
site=   hostname
directory=      directoryname (optional)
mode=   usually ascii or image (optional)
size=   number of octets
server= mailbox
subject=        subject to send
body=   command to send for retrieval
-.5i

The \*(lqmessage\*(rq directive (#forw) is used to specify a message or group of messages to include. You may optionally specify the name of the folder and which messages are to be forwarded. If a folder is not given, it defaults to the current folder. Similarly, if a message is not given, it defaults to the current message. Hence, the message directive is similar to the forw\0(1) command, except that the former uses the MIME rules for encapsulation rather than those specified in RFC-934. For example,

+.5i
#forw +inbox 42 43 99
-.5i
If you include a single message, it will be included directly as a content of type \*(lqmessage/rfc822\*(rq. If you include more than one message, then mhbuild will add a content of type \*(lqmultipart/digest\*(rq and include each message as a subpart of this content.

If you are using this directive to include more than one message, you may use the `-rfc934mode' switch. This switch will indicate that mhbuild should attempt to utilize the MIME encapsulation rules in such a way that the \*(lqmultipart/digest\*(rq that is created is (mostly) compatible with the encapsulation specified in RFC-934. If given, then RFC-934 compliant user-agents should be able to burst the message on reception\0--\0providing that the messages being encapsulated do not contain encapsulated messages themselves. The drawback of this approach is that the encapsulations are generated by placing an extra newline at the end of the body of each message.

The \*(lqbegin\*(rq directive is used to create a multipart content. When using the \*(lqbegin\*(rq directive, you must specify at least one content between the begin and end pairs.

+.5i
#begin
This will be a multipart with only one part.
#end
-.5i
If you use multiple directives in a composition draft, mhbuild will automatically encapsulate them inside a multipart content. Therefore the \*(lqbegin\*(rq directive is only necessary if you wish to use nested multiparts, or create a multipart message containing only one part.

For all of these directives, the user may include a brief description of the content between the \*(lq[\*(rq character and the \*(lq]\*(rq character. This description will be copied into the \*(lqContent-Desciption\*(rq header when the directive is processed.

+.5i
#forw [important mail from Bob] +bob 1 2 3 4 5
-.5i
By default, mhbuild will generate a unique \*(lqContent-ID:\*(rq for each directive; however, the user may override this by defining the ID using the \*(lq<\*(rq and \*(lq>\*(rq characters.

In addition to the various directives, plaintext can be present. Plaintext is gathered, until a directive is found or the draft is exhausted, and this is made to form a text content. If the plaintext must contain a \*(lq#\*(rq at the beginning of a line, simply double it, 6 e.g., +.5i ##when sent, this line will start with only one # -.5i If you want to end the plaintext prior to a directive, e.g., to have two plaintext contents adjacent, simply insert a line containing a single \*(lq#\*(rq character, 10 e.g.,

+.5i
this is the first content
#
and this is the second
-.5i
Finally, if the plaintext starts with a line of the form: +.5i Content-Description: text -.5i then this will be used to describe the plaintext content. You MUST follow this line with a blank line before starting your text.

By default, plaintext is captured as a text/plain content. You can override this by starting the plaintext with \*(lq#<\*(rq followed by a content-type specification. For example, 11 e.g.,

+.5i
#<text/enriched
this content will be tagged as text/enriched
#
and this content will be tagged as text/plain
#
#<application/x-patch [this is a patch]
and this content will be tagged as application/x-patch
-.5i
Note that if you use the \*(lq#<\*(rq plaintext-form, then the content-description must be on the same line which identifies the content type of the plaintext.

When composing a text content, you may indicate the relevant character set by adding the \*(lqcharset\*(rq parameter to the directive. +.5i #<text/plain; charset=iso-8859-5 -.5i If a text content contains any 8bit characters (characters with the high bit set) and the character set is not specified as above, then mhbuild will assume the character set is of the type given by the environment variable MM_CHARSET. If this environment variable is not set, then the character set will be labeled as \*(lqx-unknown\*(rq.

If a text content contains only 7bit characters and the character set is not specified as above, then the character set will be labeled as \*(lqus-ascii\*(rq

Putting this all together, 15 here is an example of a more complicated message draft. The following draft will expand into a multipart/mixed message containing five parts:

+.5i
To: nobody@nowhere.org
cc:
Subject: Look and listen to me!
--------
The first part will be text/plain
#<text/enriched
The second part will be text/enriched
#
This third part will be text/plain
#audio/basic [silly giggle]  \\
    |raw2audio -F < /usr/lib/sounds/giggle.au
#image/gif   [photo of foobar] \\
                    /home/foobar/lib/picture.gif
-.5i
"Integrity Check" If mhbuild is given the `-check' switch, then it will also associate an integrity check with each \*(lqleaf\*(rq content. This will add a Content-MD5 header field to the content, along with the md5 sum of the unencoded contents. This may be used by the receiver of the message to verify that the contents of the message were not changed in transport.

"Transfer Encodings" After mhbuild constructs the new MIME message by parsing directives, including files, etc., it scans the contents of the message to determine which transfer encoding to use. It will check for 8bit data, long lines, spaces at the end of lines, and clashes with multipart boundaries. It will then choose a transfer encoding appropriate for each content type.

If an integrity check is being associated with each content by using the `-check' switch, then mhbuild will encode each content with a transfer encoding, even it the content contains only 7bit data. This is to increase the likelihood that the content is not changed while in transport.

The switch `-ebcdicsafe' will cause mhbuild to slightly change the way in which it performs the \*(lqquoted-printable\*(rq transfer encoding. Along with encoding 8bit characters, it will now also encode certain common punctuation characters as well. This slightly reduces the readability of the message, but allows the message to pass more reliably through mail gateways which involve the EBCDIC character encoding.

"Invoking mhbuild" Typically, mhbuild is invoked by the whatnow program. This command will expect the body of the draft to be formatted as an mhbuild composition file. Once you have composed this input file using a command such as comp, repl, or forw, you invoke mhbuild at the \*(lqWhat now\*(rq prompt with +.5i What now? mime -.5i prior to sending the draft. This will cause whatnow to execute mhbuild to translate the composition file into MIME format.

It is also possible to have the whatnow program invoke mhbuild automatically when a message is sent. To do this, you must add the line +.5i automimeproc: 1 -.5i to your .mh\(ruprofile file.

Finally, you should consider adding this line to your profile: +.5i lproc: show -.5i This way, if you decide to list after invoking mime, the command +.5i What now? list -.5i will work as you expect.

"User Environment" Because the environment in which mhbuild operates may vary for a user, mhbuild will look for the environment variable $MHBUILD. If present, this specifies the name of an additional user profile which should be read. Hence, when a user logs in on a particular machine, this environment variable should be set to refer to a file containing definitions useful for that machine.

Finally, mhbuild will attempt to consult a global mhbuild user profile, 6 e.g., +.5i /etc/nmh/mhbuild.defaults -.5i if it exists.

"Syntax of Composition Files" 59 The following is the formal syntax of a mhbuild \*(lqcomposition file\*(rq.

+.5i
   body         ::=     1*(content | EOL)

content ::= directive | plaintext

directive ::= "#" type "/" subtype 0*(";" attribute "=" value) [ "(" comment ")" ] [ "<" id ">" ] [ "[" description "]" ] [ filename ] EOL

| "#@" type "/" subtype 0*(";" attribute "=" value) [ "(" comment ")" ] [ "<" id ">" ] [ "[" description "]" ] external-parameters EOL

| "#forw" [ "<" id ">" ] [ "[" description "]" ] [ "+"folder ] [ 0*msg ] EOL

| "#begin" [ "<" id ">" ] [ "[" description "]" ] [ "alternative" | "parallel" | something-else ] EOL 1*body "#end" EOL

plaintext ::= [ "Content-Description:" description EOL EOL ] 1*line [ "#" EOL ]

| "#<" type "/" subtype 0*(";" attribute "=" value) [ "(" comment ")" ] [ "[" description "]" ] EOL 1*line [ "#" EOL ]

line ::= "##" text EOL -- interpreted as "#"text EOL | text EOL -.5i

^$HOME/.mh\(ruprofile~^The user profile ^$MHBUILD~^Additional profile entries ^/etc/nmh/mhbuild.defaults~^System-default profile entries ^Path:~^To determine the user's nmh directory ^Current-Folder:~^To find the default current folder ^mhbuild-compose-<type>*~^Template for composing contents mhn(1) RFC-934: Proposed Standard for Message Encapsulation, RFC-2045: Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies, RFC-2046: Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types, RFC-2047: Multipurpose Internet Mail Extensions (MIME) Part Three: Message Header Extensions for Non-ASCII Text, RFC-2048: Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures, RFC-2049: Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples. `-headers' `-realsize' `-norfc934mode' `-nocheck' `-noebcdicsafe' `-noverbose' If a folder is given, it will become the current folder. The last message selected will become the current message.

Previous   Next   Man IndexSections: 0 1 2 3 4 5 6 7 8 N