TNEF(1) | General Commands Manual | TNEF(1) |
tnef - decode Microsoft's Transport Neutral Encapsulation Format
tnef [options] [FILE]
tnef {--help | --version}
This manual page documents the tnef filter. tnef decodes e-mail attachments encoded in Microsoft's Transport Neutral Encapsulation Format (hereafter, TNEF), which "wraps" Microsoft e-mail attachments.
Unfortunately, these "wrapped" attachments are inaccessible to any e-mail client that does not understand TNEF. Fortunately, the tnef filter can be used by any MIME-aware client to unpack these attachments.
If the verbose option is also provided then this option acts as the --list-with-mime-types option and also prints the file length (in bytes) and the date of the file before the other data.
There can be up to three message bodies in the file, plain text, HTML encoded, and RTF encoded. Which are saved is specified by the --body-pref option. By default the message bodies are written to a file named message with an extension based upon the type (txt, html, rtf).
tnef ignores the OEMCodePage data in the data file. It assumes Unicode data.
The following example demonstrates typical tnef usage with a popular Unix mail client called "mutt".
Mutt can't use tnef for its intended purpose until an appropriate content type definition exists in ~/.mailcap. Here's a sample definition:
This mailcap entry says that whenever the MIME content type:
is encountered, use this command to decode it:
The latter command string invokes tnef, specifying both the -w option and the attachment (created as a temporary file) as command line arguments.
Mutt can't invoke tnef if the filter isn't accessible via $PATH.
Use mutt to read a message that includes a TNEF attachment. Mutt will note that an attachment of type "application/ms-tnef is unsupported".
Press the "v" key to open mutt's "view attachment" menu.
Move the cursor over the TNEF attachment and press the enter key to "view" the attachment. Mutt will launch tnef and invoke it using the command line syntax specified in ~/.mailcap (step 1). tnef then decodes all file(s) included in the TNEF attachment, prompting for confirmation prior to creating an individual file (refer to -w option above). -w is useful here because it gives the end user a chance to view the filename(s) included in the mail message.
Note that Mutt's attachment menu also supports a pipe option, which permits the user to pipe attachments to an external filter (how convenient). So, to list the contents of a TNEF attachment prior to decoding it, press the "|" key and enter this command:
metamail(1), mailcap(4), mutt(1), other email clients.
Mark Simpson <verdammelt@gmail.com>
Please report issues via this project's issue tracker on GitHub: https://github.com/verdammelt/tnef/issues
This web page:
https://www.dwheeler.com/essays/microsoft-outlook-tnef.html
describes how to configure Microsoft email clients so that the TNEF format is disabled when sending messages to non-TNEF-compatible clients.