1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00
emacs/lisp/mail/metamail.el

194 lines
6.9 KiB
EmacsLisp
Raw Normal View History

1993-07-20 03:02:12 +00:00
;;; metamail.el --- Metamail interface for GNU Emacs
1998-05-20 00:56:03 +00:00
;; Copyright (C) 1993, 1996 Free Software Foundation, Inc.
1993-07-20 03:02:12 +00:00
;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
2003-02-04 13:24:35 +00:00
;; Version: $Id: metamail.el,v 1.14 2000/11/12 00:22:02 fx Exp $
1993-07-20 03:02:12 +00:00
;; Keywords: mail, news, mime, multimedia
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
1996-01-14 07:34:30 +00:00
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
1993-07-20 03:02:12 +00:00
;;; Commentary:
2000-11-12 00:22:02 +00:00
;; Note: Metamail does not have all the options which are compatible with
;; the environment variables. For that reason, metamail.el has to
1993-07-20 03:02:12 +00:00
;; hack the environment variables. In addition, there is no way to
;; display all header fields without extra informative body messages
2000-11-12 00:22:02 +00:00
;; which are suppressed by the "-q" option.
1993-07-20 03:02:12 +00:00
;; The idea of using metamail to process MIME messages is from
;; gnus-mime.el by Spike <Spike@world.std.com>.
;;; Code:
1997-05-05 11:57:31 +00:00
(defgroup metamail nil
"Metamail interface for Emacs."
:group 'mail
:group 'hypermedia
:group 'processes)
1993-07-20 03:02:12 +00:00
1997-05-05 11:57:31 +00:00
(defcustom metamail-program-name "metamail"
"*Metamail program name."
:type 'string
:group 'metamail)
(defcustom metamail-mailer-name "emacs"
"*Mailer name set to MM_MAILER environment variable."
:type 'string
:group 'metamail)
(defvar metamail-environment '("KEYHEADS=*" "MM_QUIET=1")
1993-07-20 03:02:12 +00:00
"*Environment variables passed to `metamail'.
It must be a list of strings that have the format ENVVARNAME=VALUE.
It is not expected to be altered globally by `set' or `setq'.
Instead, change its value temporary using `let' or `let*' form.")
1993-07-20 03:02:12 +00:00
1997-05-05 11:57:31 +00:00
(defcustom metamail-switches '("-x" "-d" "-z")
1993-07-20 03:02:12 +00:00
"*Switches for `metamail' program.
`-z' is required to remove zap file.
It is not expected to be altered globally by `set' or `setq'.
Instead, change its value temporary using `let' or `let*' form.
`-m MAILER' argument is automatically generated from the
1997-05-05 11:57:31 +00:00
`metamail-mailer-name' variable."
:type '(repeat (string :tag "Switch"))
:group 'metamail)
;;;###autoload
(defun metamail-interpret-header ()
"Interpret a header part of a MIME message in current buffer.
Its body part is not interpreted at all."
(interactive)
(save-excursion
(let* ((buffer-read-only nil)
(metamail-switches ;Inhibit processing an empty body.
(append metamail-switches '("-c" "text/plain" "-E" "7bit")))
(end (progn
(goto-char (point-min))
(search-forward "\n\n" nil 'move)
;; An extra newline is inserted by metamail if there
;; is no body part. So, insert a dummy body by
;; itself.
(insert "\n")
(point))))
(metamail-region (point-min) end nil nil 'nodisplay)
;; Remove an extra newline inserted by myself.
(goto-char (point-min))
(if (search-forward "\n\n\n" nil t)
(delete-char -1))
)))
1993-07-20 03:02:12 +00:00
;;;###autoload
(defun metamail-interpret-body (&optional viewmode nodisplay)
"Interpret a body part of a MIME message in current buffer.
Optional argument VIEWMODE specifies the value of the
EMACS_VIEW_MODE environment variable (defaulted to 1).
Optional argument NODISPLAY non-nil means buffer is not
redisplayed as output is inserted.
Its header part is not interpreted at all."
(interactive "p")
(save-excursion
(let ((contype nil)
(encoding nil)
(end (progn
(goto-char (point-min))
(search-forward "\n\n" nil t)
(point))))
;; Find Content-Type and Content-Transfer-Encoding from the header.
(save-restriction
(narrow-to-region (point-min) end)
2003-02-04 13:24:35 +00:00
(setq contype
(or (mail-fetch-field "Content-Type") "text/plain"))
2003-02-04 13:24:35 +00:00
(setq encoding
(or (mail-fetch-field "Content-Transfer-Encoding") "7bit")))
;; Interpret the body part only.
(let ((metamail-switches ;Process body part only.
(append metamail-switches
(list "-b" "-c" contype "-E" encoding))))
(metamail-region end (point-max) viewmode nil nodisplay))
;; Mode specific hack.
(cond ((eq major-mode 'rmail-mode)
;; Adjust the marker of this message if in Rmail mode buffer.
(set-marker (aref rmail-message-vector (1+ rmail-current-message))
(point-max))))
)))
;;;###autoload
(defun metamail-buffer (&optional viewmode buffer nodisplay)
1993-07-20 03:02:12 +00:00
"Process current buffer through `metamail'.
Optional argument VIEWMODE specifies the value of the
EMACS_VIEW_MODE environment variable (defaulted to 1).
Optional argument BUFFER specifies a buffer to be filled (nil
1993-07-20 03:02:12 +00:00
means current).
Optional argument NODISPLAY non-nil means buffer is not
1993-07-20 03:02:12 +00:00
redisplayed as output is inserted."
(interactive "p")
(metamail-region (point-min) (point-max) viewmode buffer nodisplay))
1993-07-20 03:02:12 +00:00
;;;###autoload
(defun metamail-region (beg end &optional viewmode buffer nodisplay)
1993-07-20 03:02:12 +00:00
"Process current region through 'metamail'.
Optional argument VIEWMODE specifies the value of the
EMACS_VIEW_MODE environment variable (defaulted to 1).
Optional argument BUFFER specifies a buffer to be filled (nil
1993-07-20 03:02:12 +00:00
means current).
Optional argument NODISPLAY non-nil means buffer is not
1993-07-20 03:02:12 +00:00
redisplayed as output is inserted."
(interactive "r\np")
1993-07-20 03:02:12 +00:00
(let ((curbuf (current-buffer))
(buffer-read-only nil)
1999-10-15 16:03:59 +00:00
(metafile (make-temp-file "metamail"))
(option-environment
2003-02-04 13:24:35 +00:00
(list (format "EMACS_VIEW_MODE=%d"
(if (numberp viewmode) viewmode 1)))))
1993-07-20 03:02:12 +00:00
(save-excursion
;; Gee! Metamail does not ouput to stdout if input comes from
1993-07-20 03:02:12 +00:00
;; stdin.
(let ((selective-display nil)) ;Disable ^M to nl translation.
(write-region beg end metafile nil 'nomessage))
1993-07-20 03:02:12 +00:00
(if buffer
(set-buffer buffer))
(setq buffer-read-only nil)
;; Clear destination buffer.
(if (eq curbuf (current-buffer))
(delete-region beg end)
(delete-region (point-min) (point-max)))
;; We have to pass the environment variable KEYHEADS to display
;; all header fields. Metamail should have an optional argument
;; to pass such information directly.
(let ((process-environment
(append process-environment
metamail-environment option-environment))
(coding-system-for-read 'undecided))
1993-07-20 03:02:12 +00:00
(apply (function call-process)
metamail-program-name
nil
t ;Output to current buffer
(not nodisplay) ;Force redisplay
(append metamail-switches
(list "-m" (or metamail-mailer-name "emacs"))
(list metafile))))
1993-07-20 03:02:12 +00:00
;; `metamail' may not delete the temporary file!
(condition-case error
(delete-file metafile)
(error nil))
)))
(provide 'metamail)
;;; metamail.el ends here