Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{mailcap} --- |
| 2 | Mailcap file handling.} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | \declaremodule{standard}{mailcap} |
| 4 | |
| 5 | \modulesynopsis{Mailcap file handling.} |
| 6 | |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 7 | |
| 8 | Mailcap files are used to configure how MIME-aware applications such |
| 9 | as mail readers and Web browsers react to files with different MIME |
| 10 | types. (The name ``mailcap'' is derived from the phrase ``mail |
| 11 | capability''.) For example, a mailcap file might contain a line like |
Fred Drake | 1656d17 | 1997-12-29 16:55:50 +0000 | [diff] [blame] | 12 | \samp{video/mpeg; xmpeg \%s}. Then, if the user encounters an email |
Fred Drake | 9e9c89e | 1998-04-02 15:53:07 +0000 | [diff] [blame] | 13 | message or Web document with the MIME type \mimetype{video/mpeg}, |
| 14 | \samp{\%s} will be replaced by a filename (usually one belonging to a |
| 15 | temporary file) and the \program{xmpeg} program can be automatically |
| 16 | started to view the file. |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 17 | |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 18 | The mailcap format is documented in \rfc{1524}, ``A User Agent |
Fred Drake | 526467c | 1998-02-10 21:42:27 +0000 | [diff] [blame] | 19 | Configuration Mechanism For Multimedia Mail Format Information,'' but |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 20 | is not an Internet standard. However, mailcap files are supported on |
Fred Drake | 6862b46 | 1998-01-13 19:03:36 +0000 | [diff] [blame] | 21 | most \UNIX{} systems. |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 22 | |
Fred Drake | 9e9c89e | 1998-04-02 15:53:07 +0000 | [diff] [blame] | 23 | \begin{funcdesc}{findmatch}{caps, MIMEtype% |
| 24 | \optional{, key\optional{, |
| 25 | filename\optional{, plist}}}} |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 26 | Return a 2-tuple; the first element is a string containing the command |
| 27 | line to be executed |
Fred Drake | 3a5ec57 | 2001-08-08 05:39:29 +0000 | [diff] [blame] | 28 | (which can be passed to \function{os.system()}), and the second element is |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 29 | the mailcap entry for a given MIME type. If no matching MIME |
| 30 | type can be found, \code{(None, None)} is returned. |
| 31 | |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 32 | \var{key} is the name of the field desired, which represents the type |
| 33 | of activity to be performed; the default value is 'view', since in the |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 34 | most common case you simply want to view the body of the MIME-typed |
| 35 | data. Other possible values might be 'compose' and 'edit', if you |
| 36 | wanted to create a new body of the given MIME type or alter the |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 37 | existing body data. See \rfc{1524} for a complete list of these |
| 38 | fields. |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 39 | |
Fred Drake | 9e9c89e | 1998-04-02 15:53:07 +0000 | [diff] [blame] | 40 | \var{filename} is the filename to be substituted for \samp{\%s} in the |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 41 | command line; the default value is |
Fred Drake | 9e9c89e | 1998-04-02 15:53:07 +0000 | [diff] [blame] | 42 | \code{'/dev/null'} which is almost certainly not what you want, so |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 43 | usually you'll override it by specifying a filename. |
| 44 | |
| 45 | \var{plist} can be a list containing named parameters; the default |
| 46 | value is simply an empty list. Each entry in the list must be a |
Fred Drake | 3a5ec57 | 2001-08-08 05:39:29 +0000 | [diff] [blame] | 47 | string containing the parameter name, an equals sign (\character{=}), |
| 48 | and the parameter's value. Mailcap entries can contain |
Fred Drake | 1656d17 | 1997-12-29 16:55:50 +0000 | [diff] [blame] | 49 | named parameters like \code{\%\{foo\}}, which will be replaced by the |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 50 | value of the parameter named 'foo'. For example, if the command line |
Fred Drake | 9e9c89e | 1998-04-02 15:53:07 +0000 | [diff] [blame] | 51 | \samp{showpartial \%\{id\}\ \%\{number\}\ \%\{total\}} |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 52 | was in a mailcap file, and \var{plist} was set to \code{['id=1', |
| 53 | 'number=2', 'total=3']}, the resulting command line would be |
Fred Drake | 3a5ec57 | 2001-08-08 05:39:29 +0000 | [diff] [blame] | 54 | \code{'showpartial 1 2 3'}. |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 55 | |
Fred Drake | 3a5ec57 | 2001-08-08 05:39:29 +0000 | [diff] [blame] | 56 | In a mailcap file, the ``test'' field can optionally be specified to |
| 57 | test some external condition (such as the machine architecture, or the |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 58 | window system in use) to determine whether or not the mailcap line |
Fred Drake | 3a5ec57 | 2001-08-08 05:39:29 +0000 | [diff] [blame] | 59 | applies. \function{findmatch()} will automatically check such |
| 60 | conditions and skip the entry if the check fails. |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 61 | \end{funcdesc} |
| 62 | |
| 63 | \begin{funcdesc}{getcaps}{} |
| 64 | Returns a dictionary mapping MIME types to a list of mailcap file |
Fred Drake | 3a5ec57 | 2001-08-08 05:39:29 +0000 | [diff] [blame] | 65 | entries. This dictionary must be passed to the \function{findmatch()} |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 66 | function. An entry is stored as a list of dictionaries, but it |
| 67 | shouldn't be necessary to know the details of this representation. |
| 68 | |
| 69 | The information is derived from all of the mailcap files found on the |
| 70 | system. Settings in the user's mailcap file \file{\$HOME/.mailcap} |
| 71 | will override settings in the system mailcap files |
| 72 | \file{/etc/mailcap}, \file{/usr/etc/mailcap}, and |
| 73 | \file{/usr/local/etc/mailcap}. |
| 74 | \end{funcdesc} |
| 75 | |
| 76 | An example usage: |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 77 | \begin{verbatim} |
Guido van Rossum | 20af95b | 1997-03-25 22:01:35 +0000 | [diff] [blame] | 78 | >>> import mailcap |
| 79 | >>> d=mailcap.getcaps() |
| 80 | >>> mailcap.findmatch(d, 'video/mpeg', filename='/tmp/tmp1223') |
| 81 | ('xmpeg /tmp/tmp1223', {'view': 'xmpeg %s'}) |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 82 | \end{verbatim} |