table of contents
MIME message tool(1) | General Commands Manual | MIME message tool(1) |
NAME¶
mime-tool - a simple program to construct MIME messages with attached filesSYNOPSIS¶
mime [ -dDvV ] [ -S subject ] [ -F from-address ] [ -T to-address ] [ -C carbon-copy address ] [ -P prolog-text ] [ -E epiplogue-text ] [ -B boundry ] [ -O overall content-type ] { [ -78abiquxopm ] [ -t content-type ] filename }DESCRIPTION¶
The mime program constructs MIME messages with attached files. The user can specify the content type (application/octet-stream, text/plain or a user specified type), content type encoding (7bit, 8bit, binary, base64 and auto-detect), content disposition (attached or inline) and the content boundry string. The user can also specify some mail related options: subject, from-address, to-addres, carbon-copy addres, prolog-text and epilog-text.OPTIONS¶
- -7
- 7-bit ASCII encoding
- -8
- 8-bit ASCII encoding
- -a
- application/octet-stream content type
- -b
- binary encoding
- -d
- low detail debugging
- -D
- high detail debugging
- -s
- write a subpart
- -i
- disposition: inline (instead of attachment)
- -q
- quoted-printable encoding
- -c content-type
- explicit content type
- -t
- text/plain content type
- -o
- omit disposition line
- -u
- unknown encoding, auto-detect
- -v
- verbose messages
- -V
- very verbose messages
- -x
- base64 encoding
- -p
- copy existing MIME part
- -o
- omit content-disposition
- -m
- omit content-transfer-encoding
- -n filename
- override the filename in the disposition header
- -N
- don't add a filename parameter in the disposition header
- -0
- no-op
EXAMPLES¶
Using MIME-tool to write a mail message to a file:mime -S "test message" -F me@foo.net
-T someone@somewhere.net file1 > test.msg
mime -S "test message" -F me@foo.net
file1 | mail someone@somewhere.net
mime -S "test message" -F me@foo.net
file1 | mailx someone@somewhere.net
mime -S "test message" -F me@foo.net
file1 | sendmail someone@somewhere.net
VERSION¶
This is version 1.5.topal3 from June 2009.KNOWN BUGS¶
Most of the header values are not properly quoted or folded, so long or complex values for these headers may cause problems. Specifically, the from-address, to-address, carbon-copy-address and content-type headers may not be properly quoted or folded.AUTHOR¶
mime is written by Jeffrey Dutky <dutky@bellatlantic.net>AVAILABILITY¶
The original MIME-tool package can be downloaded from my web page at http://members.bellatlantic.net/~dutkymime | MIME tool |