Updated metamail documentation
Showing
1 changed file
with
15 additions
and
6 deletions
... | @@ -2021,16 +2021,25 @@ if the message was sent successfully. | ... | @@ -2021,16 +2021,25 @@ if the message was sent successfully. |
2021 | @end itemize | 2021 | @end itemize |
2022 | 2022 | ||
2023 | @item metamail | 2023 | @item metamail |
2024 | @*Type: String. | 2024 | @*Type: Boolean or String. |
2025 | @*Default: Unset. | 2025 | @*Default: True. |
2026 | @vrindex metamail, mail variable | 2026 | @vrindex metamail, mail variable |
2027 | 2027 | ||
2028 | This variable controls operation of @code{decode} command. When | 2028 | This variable controls operation of @code{decode} command. If |
2029 | it is set, @code{decode} it contains the command line of | 2029 | it is unset, @code{decode} will not attempt any interpretation |
2030 | @command{metamail} command that is to be used to display parts of | 2030 | of the content of message parts. Otherwise, if @code{metamail} |
2031 | a multipart message. For example: | 2031 | is set to @code{true}, @code{decode} will use internal metamail |
2032 | support to interpret message parts. Finally, if @code{metamail} | ||
2033 | is assigned a string, this string is treated as command line of | ||
2034 | the external @command{metamail} command which will be used to | ||
2035 | display parts of a multipart message. For example: | ||
2032 | 2036 | ||
2033 | @smallexample | 2037 | @smallexample |
2038 | # Disable MIME interpretation: | ||
2039 | set nometamail | ||
2040 | # Enable built-in MIME support: | ||
2041 | set metamail | ||
2042 | # Use external program to display MIME parts: | ||
2034 | set metamail="metamail -m mail -p" | 2043 | set metamail="metamail -m mail -p" |
2035 | @end smallexample | 2044 | @end smallexample |
2036 | 2045 | ... | ... |
-
Please register or sign in to post a comment