2004-09-04 13:13:48 +00:00
|
|
|
;;; mm-uu.el --- Return uu stuff as mm handles
|
2005-08-06 19:51:42 +00:00
|
|
|
|
2014-01-01 07:43:34 +00:00
|
|
|
;; Copyright (C) 1998-2014 Free Software Foundation, Inc.
|
2000-09-19 13:40:08 +00:00
|
|
|
|
|
|
|
;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
|
2004-09-04 13:13:48 +00:00
|
|
|
;; Keywords: postscript uudecode binhex shar forward gnatsweb pgp
|
2000-09-19 13:40:08 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:56:49 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2000-09-19 13:40:08 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:56:49 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
2000-09-19 13:40:08 +00:00
|
|
|
;; 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
|
2008-05-06 03:56:49 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2000-09-19 13:40:08 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(eval-when-compile (require 'cl))
|
|
|
|
(require 'mail-parse)
|
|
|
|
(require 'nnheader)
|
|
|
|
(require 'mm-decode)
|
|
|
|
(require 'mailcap)
|
2004-09-04 13:13:48 +00:00
|
|
|
(require 'mml2015)
|
2000-09-19 13:40:08 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(autoload 'uudecode-decode-region "uudecode")
|
|
|
|
(autoload 'uudecode-decode-region-external "uudecode")
|
|
|
|
(autoload 'uudecode-decode-region-internal "uudecode")
|
2000-09-19 13:40:08 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(autoload 'binhex-decode-region "binhex")
|
|
|
|
(autoload 'binhex-decode-region-external "binhex")
|
|
|
|
(autoload 'binhex-decode-region-internal "binhex")
|
2000-09-19 13:40:08 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(autoload 'yenc-decode-region "yenc")
|
|
|
|
(autoload 'yenc-extract-filename "yenc")
|
2000-09-19 13:40:08 +00:00
|
|
|
|
|
|
|
(defcustom mm-uu-decode-function 'uudecode-decode-region
|
|
|
|
"*Function to uudecode.
|
2000-11-23 17:04:22 +00:00
|
|
|
Internal function is done in Lisp by default, therefore decoding may
|
|
|
|
appear to be horribly slow. You can make Gnus use an external
|
2000-09-19 13:40:08 +00:00
|
|
|
decoder, such as uudecode."
|
2000-11-23 17:04:22 +00:00
|
|
|
:type '(choice
|
2004-09-04 13:13:48 +00:00
|
|
|
(function-item :tag "Auto detect" uudecode-decode-region)
|
|
|
|
(function-item :tag "Internal" uudecode-decode-region-internal)
|
2000-11-23 17:04:22 +00:00
|
|
|
(function-item :tag "External" uudecode-decode-region-external))
|
2000-11-01 14:54:52 +00:00
|
|
|
:group 'gnus-article-mime)
|
2000-09-19 13:40:08 +00:00
|
|
|
|
|
|
|
(defcustom mm-uu-binhex-decode-function 'binhex-decode-region
|
|
|
|
"*Function to binhex decode.
|
2004-09-04 13:13:48 +00:00
|
|
|
Internal function is done in elisp by default, therefore decoding may
|
|
|
|
appear to be horribly slow . You can make Gnus use the external Unix
|
2000-09-19 13:40:08 +00:00
|
|
|
decoder, such as hexbin."
|
2004-09-04 13:13:48 +00:00
|
|
|
:type '(choice (function-item :tag "Auto detect" binhex-decode-region)
|
|
|
|
(function-item :tag "Internal" binhex-decode-region-internal)
|
|
|
|
(function-item :tag "External" binhex-decode-region-external))
|
2000-11-01 14:54:52 +00:00
|
|
|
:group 'gnus-article-mime)
|
2000-09-19 13:40:08 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(defvar mm-uu-yenc-decode-function 'yenc-decode-region)
|
2000-09-19 13:40:08 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(defvar mm-uu-beginning-regexp nil)
|
2000-09-19 13:40:08 +00:00
|
|
|
|
|
|
|
(defvar mm-dissect-disposition "inline"
|
|
|
|
"The default disposition of uu parts.
|
|
|
|
This can be either \"inline\" or \"attachment\".")
|
|
|
|
|
2005-09-28 05:26:02 +00:00
|
|
|
(defcustom mm-uu-emacs-sources-regexp "\\.emacs\\.sources"
|
|
|
|
"The regexp of Emacs sources groups."
|
|
|
|
:version "22.1"
|
|
|
|
:type 'regexp
|
|
|
|
:group 'gnus-article-mime)
|
2004-09-04 13:13:48 +00:00
|
|
|
|
2005-09-28 05:26:02 +00:00
|
|
|
(defcustom mm-uu-diff-groups-regexp
|
|
|
|
"\\(gmane\\|gnu\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|devel\\)"
|
|
|
|
"Regexp matching diff groups."
|
2005-02-09 15:50:47 +00:00
|
|
|
:version "22.1"
|
2004-09-04 13:13:48 +00:00
|
|
|
:type 'regexp
|
|
|
|
:group 'gnus-article-mime)
|
|
|
|
|
2007-10-28 09:18:39 +00:00
|
|
|
(defcustom mm-uu-tex-groups-regexp "\\.tex\\>"
|
|
|
|
"*Regexp matching TeX groups."
|
2008-02-29 04:03:49 +00:00
|
|
|
:version "23.1"
|
2007-10-28 09:18:39 +00:00
|
|
|
:type 'regexp
|
|
|
|
:group 'gnus-article-mime)
|
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(defvar mm-uu-type-alist
|
|
|
|
'((postscript
|
|
|
|
"^%!PS-"
|
|
|
|
"^%%EOF$"
|
|
|
|
mm-uu-postscript-extract
|
|
|
|
nil)
|
2007-10-28 09:18:39 +00:00
|
|
|
(uu ;; Maybe we should have a more strict test here.
|
2004-09-04 13:13:48 +00:00
|
|
|
"^begin[ \t]+0?[0-7][0-7][0-7][ \t]+"
|
|
|
|
"^end[ \t]*$"
|
|
|
|
mm-uu-uu-extract
|
|
|
|
mm-uu-uu-filename)
|
|
|
|
(binhex
|
2007-10-28 09:18:39 +00:00
|
|
|
"^:.\\{63,63\\}$"
|
2004-09-04 13:13:48 +00:00
|
|
|
":$"
|
|
|
|
mm-uu-binhex-extract
|
|
|
|
nil
|
|
|
|
mm-uu-binhex-filename)
|
|
|
|
(yenc
|
|
|
|
"^=ybegin.*size=[0-9]+.*name=.*$"
|
|
|
|
"^=yend.*size=[0-9]+"
|
|
|
|
mm-uu-yenc-extract
|
|
|
|
mm-uu-yenc-filename)
|
|
|
|
(shar
|
|
|
|
"^#! */bin/sh"
|
|
|
|
"^exit 0$"
|
|
|
|
mm-uu-shar-extract)
|
|
|
|
(forward
|
2005-07-21 19:08:48 +00:00
|
|
|
;; Thanks to Edward J. Sabol <sabol@alderaan.gsfc.nasa.gov> and
|
|
|
|
;; Peter von der Ah\'e <pahe@daimi.au.dk>
|
2004-09-04 13:13:48 +00:00
|
|
|
"^-+ \\(Start of \\)?Forwarded message"
|
|
|
|
"^-+ End \\(of \\)?forwarded message"
|
|
|
|
mm-uu-forward-extract
|
|
|
|
nil
|
|
|
|
mm-uu-forward-test)
|
|
|
|
(gnatsweb
|
|
|
|
"^----gnatsweb-attachment----"
|
|
|
|
nil
|
|
|
|
mm-uu-gnatsweb-extract)
|
|
|
|
(pgp-signed
|
|
|
|
"^-----BEGIN PGP SIGNED MESSAGE-----"
|
|
|
|
"^-----END PGP SIGNATURE-----"
|
|
|
|
mm-uu-pgp-signed-extract
|
|
|
|
nil
|
|
|
|
nil)
|
|
|
|
(pgp-encrypted
|
|
|
|
"^-----BEGIN PGP MESSAGE-----"
|
|
|
|
"^-----END PGP MESSAGE-----"
|
|
|
|
mm-uu-pgp-encrypted-extract
|
|
|
|
nil
|
|
|
|
nil)
|
|
|
|
(pgp-key
|
|
|
|
"^-----BEGIN PGP PUBLIC KEY BLOCK-----"
|
|
|
|
"^-----END PGP PUBLIC KEY BLOCK-----"
|
|
|
|
mm-uu-pgp-key-extract
|
|
|
|
mm-uu-gpg-key-skip-to-last
|
|
|
|
nil)
|
|
|
|
(emacs-sources
|
|
|
|
"^;;;?[ \t]*[^ \t]+\\.el[ \t]*--"
|
|
|
|
"^;;;?[ \t]*\\([^ \t]+\\.el\\)[ \t]+ends here"
|
|
|
|
mm-uu-emacs-sources-extract
|
|
|
|
nil
|
|
|
|
mm-uu-emacs-sources-test)
|
|
|
|
(diff
|
|
|
|
"^Index: "
|
|
|
|
nil
|
|
|
|
mm-uu-diff-extract
|
|
|
|
nil
|
2007-10-28 09:18:39 +00:00
|
|
|
mm-uu-diff-test)
|
2011-03-12 08:53:34 +00:00
|
|
|
(diff
|
|
|
|
"^=== modified file "
|
|
|
|
nil
|
|
|
|
mm-uu-diff-extract
|
|
|
|
nil
|
|
|
|
mm-uu-diff-test)
|
2011-02-01 23:46:27 +00:00
|
|
|
(git-format-patch
|
|
|
|
"^diff --git "
|
|
|
|
"^-- "
|
|
|
|
mm-uu-diff-extract
|
|
|
|
nil
|
|
|
|
mm-uu-diff-test)
|
2007-10-28 09:18:39 +00:00
|
|
|
(message-marks
|
|
|
|
;; Text enclosed with tags similar to `message-mark-insert-begin' and
|
|
|
|
;; `message-mark-insert-end'. Don't use those variables to avoid
|
|
|
|
;; dependency on `message.el'.
|
|
|
|
"^-+[8<>]*-\\{9,\\}[a-z ]+-\\{9,\\}[a-z ]+-\\{9,\\}[8<>]*-+$"
|
|
|
|
"^-+[8<>]*-\\{9,\\}[a-z ]+-\\{9,\\}[a-z ]+-\\{9,\\}[8<>]*-+$"
|
2010-11-21 08:51:04 +00:00
|
|
|
(lambda () (mm-uu-verbatim-marks-extract 0 0 1 -1))
|
2007-10-28 09:18:39 +00:00
|
|
|
nil)
|
|
|
|
;; Omitting [a-z8<] leads to false positives (bogus signature separators
|
|
|
|
;; and mailing list banners).
|
|
|
|
(insert-marks
|
|
|
|
"^ *\\(-\\|_\\)\\{30,\\}.*[a-z8<].*\\(-\\|_\\)\\{30,\\} *$"
|
|
|
|
"^ *\\(-\\|_\\)\\{30,\\}.*[a-z8<].*\\(-\\|_\\)\\{30,\\} *$"
|
|
|
|
(lambda () (mm-uu-verbatim-marks-extract 0 0 1 -1))
|
|
|
|
nil)
|
|
|
|
(verbatim-marks
|
|
|
|
;; slrn-style verbatim marks, see
|
2012-03-08 02:34:26 +00:00
|
|
|
;; http://slrn.sourceforge.net/docs/slrn-manual-6.html#process_verbatim_marks
|
2007-10-28 09:18:39 +00:00
|
|
|
"^#v\\+"
|
|
|
|
"^#v\\-$"
|
|
|
|
(lambda () (mm-uu-verbatim-marks-extract 0 0))
|
|
|
|
nil)
|
|
|
|
(LaTeX
|
|
|
|
"^\\([\\\\%][^\n]+\n\\)*\\\\documentclass.*[[{%]"
|
|
|
|
"^\\\\end{document}"
|
|
|
|
mm-uu-latex-extract
|
|
|
|
nil
|
2011-01-20 23:43:27 +00:00
|
|
|
mm-uu-latex-test)
|
|
|
|
(org-src-code-block
|
|
|
|
"^[ \t]*#\\+begin_"
|
|
|
|
"^[ \t]*#\\+end_"
|
|
|
|
mm-uu-org-src-code-block-extract)
|
|
|
|
(org-meta-line
|
|
|
|
"^[ \t]*#\\+[[:alpha:]]+: "
|
|
|
|
"$"
|
|
|
|
mm-uu-org-src-code-block-extract))
|
2005-09-28 05:26:02 +00:00
|
|
|
"A list of specifications for non-MIME attachments.
|
|
|
|
Each element consist of the following entries: label,
|
|
|
|
start-regexp, end-regexp, extract-function, test-function.
|
|
|
|
|
2007-07-24 01:22:24 +00:00
|
|
|
After modifying this list you must run \\[mm-uu-configure].
|
|
|
|
|
|
|
|
You can disable elements from this list by customizing
|
|
|
|
`mm-uu-configure-list'.")
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defcustom mm-uu-configure-list '((shar . disabled))
|
|
|
|
"A list of mm-uu configuration.
|
|
|
|
To disable dissecting shar codes, for instance, add
|
|
|
|
`(shar . disabled)' to this list."
|
|
|
|
:type 'alist
|
|
|
|
:options (mapcar (lambda (entry)
|
|
|
|
(list (car entry) '(const disabled)))
|
|
|
|
mm-uu-type-alist)
|
|
|
|
:group 'gnus-article-mime)
|
|
|
|
|
2006-01-16 09:27:43 +00:00
|
|
|
(defvar mm-uu-text-plain-type '("text/plain" (charset . gnus-decoded))
|
|
|
|
"MIME type and parameters for text/plain parts.
|
|
|
|
`gnus-decoded' is a fake charset, which means no further decoding.")
|
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
;; functions
|
|
|
|
|
|
|
|
(defsubst mm-uu-type (entry)
|
|
|
|
(car entry))
|
|
|
|
|
|
|
|
(defsubst mm-uu-beginning-regexp (entry)
|
|
|
|
(nth 1 entry))
|
|
|
|
|
|
|
|
(defsubst mm-uu-end-regexp (entry)
|
|
|
|
(nth 2 entry))
|
|
|
|
|
|
|
|
(defsubst mm-uu-function-extract (entry)
|
|
|
|
(nth 3 entry))
|
|
|
|
|
|
|
|
(defsubst mm-uu-function-1 (entry)
|
|
|
|
(nth 4 entry))
|
|
|
|
|
|
|
|
(defsubst mm-uu-function-2 (entry)
|
|
|
|
(nth 5 entry))
|
|
|
|
|
2007-10-28 09:18:39 +00:00
|
|
|
;; In Emacs 22, we could use `min-colors' in the face definition. But Emacs
|
|
|
|
;; 21 and XEmacs don't support it.
|
|
|
|
(defcustom mm-uu-hide-markers
|
|
|
|
(< 16 (or (and (fboundp 'defined-colors)
|
|
|
|
(length (defined-colors)))
|
|
|
|
(and (fboundp 'device-color-cells)
|
|
|
|
(device-color-cells))
|
|
|
|
0))
|
|
|
|
"If non-nil, hide verbatim markers.
|
|
|
|
The value should be nil on displays where the face
|
|
|
|
`mm-uu-extract' isn't distinguishable to the face `default'."
|
|
|
|
:type '(choice (const :tag "Hide" t)
|
|
|
|
(const :tag "Don't hide" nil))
|
2008-02-29 04:03:49 +00:00
|
|
|
:version "23.1" ;; No Gnus
|
2007-10-28 09:18:39 +00:00
|
|
|
:group 'gnus-article-mime)
|
|
|
|
|
2008-03-01 01:28:14 +00:00
|
|
|
(defface mm-uu-extract '(;; Inspired by `gnus-cite-3'
|
|
|
|
(((type tty)
|
|
|
|
(class color)
|
|
|
|
(background dark))
|
|
|
|
(:background "dark blue"))
|
2007-10-28 09:18:39 +00:00
|
|
|
(((class color)
|
|
|
|
(background dark))
|
|
|
|
(:foreground "light yellow"
|
|
|
|
:background "dark green"))
|
2008-03-01 01:28:14 +00:00
|
|
|
(((type tty)
|
|
|
|
(class color)
|
|
|
|
(background light))
|
|
|
|
(:foreground "dark blue"))
|
2007-10-28 09:18:39 +00:00
|
|
|
(((class color)
|
|
|
|
(background light))
|
|
|
|
(:foreground "dark green"
|
|
|
|
:background "light yellow"))
|
|
|
|
(t
|
|
|
|
()))
|
|
|
|
"Face for extracted buffers."
|
|
|
|
;; See `mm-uu-verbatim-marks-extract'.
|
2008-02-29 04:03:49 +00:00
|
|
|
:version "23.1" ;; No Gnus
|
2007-10-28 09:18:39 +00:00
|
|
|
:group 'gnus-article-mime)
|
|
|
|
|
|
|
|
(defun mm-uu-copy-to-buffer (&optional from to properties)
|
2004-09-04 13:13:48 +00:00
|
|
|
"Copy the contents of the current buffer to a fresh buffer.
|
2007-10-28 09:18:39 +00:00
|
|
|
Return that buffer.
|
|
|
|
|
|
|
|
If PROPERTIES is non-nil, PROPERTIES are applied to the buffer,
|
|
|
|
see `set-text-properties'. If PROPERTIES equals t, this means to
|
|
|
|
apply the face `mm-uu-extract'."
|
2005-07-21 19:08:48 +00:00
|
|
|
(let ((obuf (current-buffer))
|
2008-03-12 18:54:39 +00:00
|
|
|
(multi (and (boundp 'enable-multibyte-characters)
|
|
|
|
enable-multibyte-characters))
|
2007-12-06 00:21:00 +00:00
|
|
|
(coding-system
|
2005-07-21 19:08:48 +00:00
|
|
|
;; Might not exist in non-MULE XEmacs
|
|
|
|
(when (boundp 'buffer-file-coding-system)
|
|
|
|
buffer-file-coding-system)))
|
|
|
|
(with-current-buffer (generate-new-buffer " *mm-uu*")
|
2008-03-12 18:54:39 +00:00
|
|
|
(if multi (mm-enable-multibyte) (mm-disable-multibyte))
|
2004-09-04 13:13:48 +00:00
|
|
|
(setq buffer-file-coding-system coding-system)
|
|
|
|
(insert-buffer-substring obuf from to)
|
2007-10-28 09:18:39 +00:00
|
|
|
(cond ((eq properties t)
|
|
|
|
(set-text-properties (point-min) (point-max)
|
|
|
|
'(face mm-uu-extract)))
|
|
|
|
(properties
|
|
|
|
(set-text-properties (point-min) (point-max) properties)))
|
2004-09-04 13:13:48 +00:00
|
|
|
(current-buffer))))
|
|
|
|
|
2000-09-19 13:40:08 +00:00
|
|
|
(defun mm-uu-configure-p (key val)
|
|
|
|
(member (cons key val) mm-uu-configure-list))
|
|
|
|
|
|
|
|
(defun mm-uu-configure (&optional symbol value)
|
2005-09-28 05:26:02 +00:00
|
|
|
"Configure detection of non-MIME attachments."
|
|
|
|
(interactive)
|
2000-09-19 13:40:08 +00:00
|
|
|
(if symbol (set-default symbol value))
|
2004-09-04 13:13:48 +00:00
|
|
|
(setq mm-uu-beginning-regexp nil)
|
|
|
|
(mapcar (lambda (entry)
|
|
|
|
(if (mm-uu-configure-p (mm-uu-type entry) 'disabled)
|
|
|
|
nil
|
|
|
|
(setq mm-uu-beginning-regexp
|
|
|
|
(concat mm-uu-beginning-regexp
|
|
|
|
(if mm-uu-beginning-regexp "\\|")
|
|
|
|
(mm-uu-beginning-regexp entry)))))
|
|
|
|
mm-uu-type-alist))
|
2000-11-02 04:38:24 +00:00
|
|
|
|
2000-09-19 13:40:08 +00:00
|
|
|
(mm-uu-configure)
|
|
|
|
|
* smime.el (from):
* rfc2047.el (message-posting-charset):
* qp.el (mm-use-ultra-safe-encoding):
* pop3.el (parse-time-months):
* nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
* nnml.el (files):
* nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
(jka-compr-compression-info-list, ange-ftp-path-format)
(efs-path-regexp):
* nndiary.el (files):
* mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
(pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
(epg-digest-algorithm-alist, inhibit-redisplay)
(password-cache-expiry):
* mml1991.el (pgg-default-user-id, pgg-errors-buffer)
(pgg-output-buffer, password-cache-expiry):
* mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
(efs-path-regexp):
* mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
(inhibit-redisplay):
* mm-uu.el (file-name, start-point, end-point, entry)
(gnus-newsgroup-name, gnus-newsgroup-charset):
* mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
(latin-unity-ucs-list):
* mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
(mm-uu-binhex-decode-function):
* message.el (gnus-message-group-art, gnus-list-identifiers, )
(rmail-enable-mime-composing, gnus-local-organization)
(gnus-post-method, gnus-select-method, gnus-active-hashtb)
(gnus-read-active-file, facemenu-add-face-function)
(facemenu-remove-face-function, gnus-article-decoded-p)
(tool-bar-mode):
* mail-source.el (display-time-mail-function):
* gnus-util.el (nnmail-pathname-coding-system)
(nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
(gnus-original-article-buffer, gnus-user-agent)
(rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
(xemacs-codename, sxemacs-codename, emacs-program-version):
* gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
* gnus-start.el (gnus-agent-covered-methods)
(gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
(gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
(gnus-newsgroup-headers, gnus-group-list-mode)
(gnus-group-mark-positions, gnus-newsgroup-data)
(gnus-newsgroup-unreads, nnoo-state-alist)
(gnus-current-select-method, mail-sources)
(nnmail-scan-directory-mail-source-once, nnmail-split-history)
(nnmail-spool-file, gnus-cache-active-hashtb):
* gnus-mh.el (mh-lib-progs):
* gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
(gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
(gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
(gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
(gnus-group-buffer):
* gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
(font-lock-set-defaults):
* gnus-art.el (tool-bar-map, w3m-minor-mode-map)
(gnus-face-properties-alist, charset, gnus-summary-article-menu)
(gnus-summary-post-menu, total-parts, type, condition, length):
* gnus-agent.el (gnus-agent-read-agentview):
* flow-fill.el (show-trailing-whitespace):
* gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
eval-and-compile wrappers for byte compiler pacifiers.
* mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
(mm-display-inline-fontify): Check for featurep 'xemacs not
extent-list.
* mm-decode.el (mm-display-external): Check for featurep 'xemacs not
itimer-list.
(mm-create-image-xemacs): Only do something for XEmacs.
(mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
* mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
* gnus-registry.el (gnus-adaptive-word-syntax-table):
* gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
* textmodes/reftex-dcr.el (reftex-start-itimer-once): Add check
for XEmacs.
* calc/calc-menu.el (calc-mode-map): Pacify byte compiler.
* doc-view.el (doc-view-resolution): Add missing :group.
2007-11-16 16:50:35 +00:00
|
|
|
(defvar file-name)
|
|
|
|
(defvar start-point)
|
|
|
|
(defvar end-point)
|
|
|
|
(defvar entry)
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defun mm-uu-uu-filename ()
|
|
|
|
(if (looking-at ".+")
|
|
|
|
(setq file-name
|
|
|
|
(let ((nnheader-file-name-translation-alist
|
|
|
|
'((?/ . ?,) (?\ . ?_) (?* . ?_) (?$ . ?_))))
|
|
|
|
(nnheader-translate-file-chars (match-string 0))))))
|
|
|
|
|
|
|
|
(defun mm-uu-binhex-filename ()
|
|
|
|
(setq file-name
|
|
|
|
(ignore-errors
|
|
|
|
(binhex-decode-region start-point end-point t))))
|
|
|
|
|
|
|
|
(defun mm-uu-yenc-filename ()
|
|
|
|
(goto-char start-point)
|
|
|
|
(setq file-name
|
|
|
|
(ignore-errors
|
|
|
|
(yenc-extract-filename))))
|
|
|
|
|
|
|
|
(defun mm-uu-forward-test ()
|
|
|
|
(save-excursion
|
|
|
|
(goto-char start-point)
|
|
|
|
(forward-line)
|
|
|
|
(looking-at "[\r\n]*[a-zA-Z][a-zA-Z0-9-]*:")))
|
|
|
|
|
|
|
|
(defun mm-uu-postscript-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer start-point end-point)
|
|
|
|
'("application/postscript")))
|
|
|
|
|
2007-10-28 09:18:39 +00:00
|
|
|
(defun mm-uu-verbatim-marks-extract (start-offset end-offset
|
|
|
|
&optional
|
|
|
|
start-hide
|
|
|
|
end-hide)
|
|
|
|
(let ((start (or (and mm-uu-hide-markers
|
|
|
|
start-hide)
|
|
|
|
start-offset
|
|
|
|
1))
|
|
|
|
(end (or (and mm-uu-hide-markers
|
|
|
|
end-hide)
|
|
|
|
end-offset
|
|
|
|
-1)))
|
|
|
|
(mm-make-handle
|
|
|
|
(mm-uu-copy-to-buffer
|
|
|
|
(progn (goto-char start-point)
|
|
|
|
(forward-line start)
|
|
|
|
(point))
|
|
|
|
(progn (goto-char end-point)
|
|
|
|
(forward-line end)
|
|
|
|
(point))
|
|
|
|
t)
|
|
|
|
'("text/x-verbatim" (charset . gnus-decoded)))))
|
|
|
|
|
|
|
|
(defun mm-uu-latex-extract ()
|
|
|
|
(mm-make-handle
|
|
|
|
(mm-uu-copy-to-buffer start-point end-point t)
|
|
|
|
;; application/x-tex?
|
|
|
|
'("text/x-verbatim" (charset . gnus-decoded))))
|
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(defun mm-uu-emacs-sources-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer start-point end-point)
|
2006-02-01 10:02:36 +00:00
|
|
|
'("application/emacs-lisp" (charset . gnus-decoded))
|
2004-09-04 13:13:48 +00:00
|
|
|
nil nil
|
|
|
|
(list mm-dissect-disposition
|
|
|
|
(cons 'filename file-name))))
|
|
|
|
|
2011-01-20 23:43:27 +00:00
|
|
|
(defun mm-uu-org-src-code-block-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer start-point end-point)
|
2011-01-23 11:21:04 +00:00
|
|
|
'("text/x-org")))
|
2011-01-20 23:43:27 +00:00
|
|
|
|
* smime.el (from):
* rfc2047.el (message-posting-charset):
* qp.el (mm-use-ultra-safe-encoding):
* pop3.el (parse-time-months):
* nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
* nnml.el (files):
* nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
(jka-compr-compression-info-list, ange-ftp-path-format)
(efs-path-regexp):
* nndiary.el (files):
* mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
(pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
(epg-digest-algorithm-alist, inhibit-redisplay)
(password-cache-expiry):
* mml1991.el (pgg-default-user-id, pgg-errors-buffer)
(pgg-output-buffer, password-cache-expiry):
* mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
(efs-path-regexp):
* mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
(inhibit-redisplay):
* mm-uu.el (file-name, start-point, end-point, entry)
(gnus-newsgroup-name, gnus-newsgroup-charset):
* mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
(latin-unity-ucs-list):
* mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
(mm-uu-binhex-decode-function):
* message.el (gnus-message-group-art, gnus-list-identifiers, )
(rmail-enable-mime-composing, gnus-local-organization)
(gnus-post-method, gnus-select-method, gnus-active-hashtb)
(gnus-read-active-file, facemenu-add-face-function)
(facemenu-remove-face-function, gnus-article-decoded-p)
(tool-bar-mode):
* mail-source.el (display-time-mail-function):
* gnus-util.el (nnmail-pathname-coding-system)
(nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
(gnus-original-article-buffer, gnus-user-agent)
(rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
(xemacs-codename, sxemacs-codename, emacs-program-version):
* gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
* gnus-start.el (gnus-agent-covered-methods)
(gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
(gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
(gnus-newsgroup-headers, gnus-group-list-mode)
(gnus-group-mark-positions, gnus-newsgroup-data)
(gnus-newsgroup-unreads, nnoo-state-alist)
(gnus-current-select-method, mail-sources)
(nnmail-scan-directory-mail-source-once, nnmail-split-history)
(nnmail-spool-file, gnus-cache-active-hashtb):
* gnus-mh.el (mh-lib-progs):
* gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
(gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
(gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
(gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
(gnus-group-buffer):
* gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
(font-lock-set-defaults):
* gnus-art.el (tool-bar-map, w3m-minor-mode-map)
(gnus-face-properties-alist, charset, gnus-summary-article-menu)
(gnus-summary-post-menu, total-parts, type, condition, length):
* gnus-agent.el (gnus-agent-read-agentview):
* flow-fill.el (show-trailing-whitespace):
* gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
eval-and-compile wrappers for byte compiler pacifiers.
* mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
(mm-display-inline-fontify): Check for featurep 'xemacs not
extent-list.
* mm-decode.el (mm-display-external): Check for featurep 'xemacs not
itimer-list.
(mm-create-image-xemacs): Only do something for XEmacs.
(mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
* mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
* gnus-registry.el (gnus-adaptive-word-syntax-table):
* gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
* textmodes/reftex-dcr.el (reftex-start-itimer-once): Add check
for XEmacs.
* calc/calc-menu.el (calc-mode-map): Pacify byte compiler.
* doc-view.el (doc-view-resolution): Add missing :group.
2007-11-16 16:50:35 +00:00
|
|
|
(defvar gnus-newsgroup-name)
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defun mm-uu-emacs-sources-test ()
|
|
|
|
(setq file-name (match-string 1))
|
|
|
|
(and gnus-newsgroup-name
|
|
|
|
mm-uu-emacs-sources-regexp
|
|
|
|
(string-match mm-uu-emacs-sources-regexp gnus-newsgroup-name)))
|
|
|
|
|
|
|
|
(defun mm-uu-diff-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer start-point end-point)
|
2006-02-01 10:02:36 +00:00
|
|
|
'("text/x-patch" (charset . gnus-decoded))))
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defun mm-uu-diff-test ()
|
|
|
|
(and gnus-newsgroup-name
|
|
|
|
mm-uu-diff-groups-regexp
|
|
|
|
(string-match mm-uu-diff-groups-regexp gnus-newsgroup-name)))
|
|
|
|
|
2007-10-28 09:18:39 +00:00
|
|
|
(defun mm-uu-latex-test ()
|
|
|
|
(and gnus-newsgroup-name
|
|
|
|
mm-uu-tex-groups-regexp
|
|
|
|
(string-match mm-uu-tex-groups-regexp gnus-newsgroup-name)))
|
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(defun mm-uu-forward-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer
|
2012-03-10 02:02:24 +00:00
|
|
|
(progn
|
|
|
|
(goto-char start-point)
|
|
|
|
(forward-line)
|
|
|
|
(skip-chars-forward "\n")
|
|
|
|
(point))
|
2004-09-04 13:13:48 +00:00
|
|
|
(progn (goto-char end-point) (forward-line -1) (point)))
|
|
|
|
'("message/rfc822" (charset . gnus-decoded))))
|
|
|
|
|
|
|
|
(defun mm-uu-uu-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer start-point end-point)
|
|
|
|
(list (or (and file-name
|
|
|
|
(string-match "\\.[^\\.]+$"
|
|
|
|
file-name)
|
|
|
|
(mailcap-extension-to-mime
|
|
|
|
(match-string 0 file-name)))
|
|
|
|
"application/octet-stream"))
|
|
|
|
'x-uuencode nil
|
|
|
|
(if (and file-name (not (equal file-name "")))
|
|
|
|
(list mm-dissect-disposition
|
|
|
|
(cons 'filename file-name)))))
|
|
|
|
|
|
|
|
(defun mm-uu-binhex-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer start-point end-point)
|
|
|
|
(list (or (and file-name
|
|
|
|
(string-match "\\.[^\\.]+$" file-name)
|
|
|
|
(mailcap-extension-to-mime
|
|
|
|
(match-string 0 file-name)))
|
|
|
|
"application/octet-stream"))
|
|
|
|
'x-binhex nil
|
|
|
|
(if (and file-name (not (equal file-name "")))
|
|
|
|
(list mm-dissect-disposition
|
|
|
|
(cons 'filename file-name)))))
|
|
|
|
|
2007-12-11 05:30:04 +00:00
|
|
|
(defvar gnus-original-article-buffer) ; gnus.el
|
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
(defun mm-uu-yenc-extract ()
|
2007-12-06 00:21:00 +00:00
|
|
|
;; This might not be exactly correct, but we sure can't get the
|
|
|
|
;; binary data from the article buffer, since that's already in a
|
2010-09-02 01:42:32 +00:00
|
|
|
;; non-binary charset. So get it from the original article buffer.
|
2008-03-12 18:54:39 +00:00
|
|
|
(mm-make-handle (with-current-buffer gnus-original-article-buffer
|
2007-12-06 00:21:00 +00:00
|
|
|
(mm-uu-copy-to-buffer start-point end-point))
|
2004-09-04 13:13:48 +00:00
|
|
|
(list (or (and file-name
|
|
|
|
(string-match "\\.[^\\.]+$" file-name)
|
|
|
|
(mailcap-extension-to-mime
|
|
|
|
(match-string 0 file-name)))
|
|
|
|
"application/octet-stream"))
|
|
|
|
'x-yenc nil
|
|
|
|
(if (and file-name (not (equal file-name "")))
|
|
|
|
(list mm-dissect-disposition
|
|
|
|
(cons 'filename file-name)))))
|
|
|
|
|
|
|
|
|
|
|
|
(defun mm-uu-shar-extract ()
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer start-point end-point)
|
|
|
|
'("application/x-shar")))
|
|
|
|
|
|
|
|
(defun mm-uu-gnatsweb-extract ()
|
|
|
|
(save-restriction
|
|
|
|
(goto-char start-point)
|
|
|
|
(forward-line)
|
|
|
|
(narrow-to-region (point) end-point)
|
|
|
|
(mm-dissect-buffer t)))
|
|
|
|
|
|
|
|
(defun mm-uu-pgp-signed-test (&rest rest)
|
|
|
|
(and
|
|
|
|
mml2015-use
|
|
|
|
(mml2015-clear-verify-function)
|
|
|
|
(cond
|
|
|
|
((eq mm-verify-option 'never) nil)
|
|
|
|
((eq mm-verify-option 'always) t)
|
|
|
|
((eq mm-verify-option 'known) t)
|
2006-04-26 21:58:05 +00:00
|
|
|
(t (prog1
|
|
|
|
(y-or-n-p "Verify pgp signed part? ")
|
|
|
|
(message ""))))))
|
2004-09-04 13:13:48 +00:00
|
|
|
|
* smime.el (from):
* rfc2047.el (message-posting-charset):
* qp.el (mm-use-ultra-safe-encoding):
* pop3.el (parse-time-months):
* nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
* nnml.el (files):
* nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
(jka-compr-compression-info-list, ange-ftp-path-format)
(efs-path-regexp):
* nndiary.el (files):
* mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
(pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
(epg-digest-algorithm-alist, inhibit-redisplay)
(password-cache-expiry):
* mml1991.el (pgg-default-user-id, pgg-errors-buffer)
(pgg-output-buffer, password-cache-expiry):
* mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
(efs-path-regexp):
* mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
(inhibit-redisplay):
* mm-uu.el (file-name, start-point, end-point, entry)
(gnus-newsgroup-name, gnus-newsgroup-charset):
* mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
(latin-unity-ucs-list):
* mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
(mm-uu-binhex-decode-function):
* message.el (gnus-message-group-art, gnus-list-identifiers, )
(rmail-enable-mime-composing, gnus-local-organization)
(gnus-post-method, gnus-select-method, gnus-active-hashtb)
(gnus-read-active-file, facemenu-add-face-function)
(facemenu-remove-face-function, gnus-article-decoded-p)
(tool-bar-mode):
* mail-source.el (display-time-mail-function):
* gnus-util.el (nnmail-pathname-coding-system)
(nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
(gnus-original-article-buffer, gnus-user-agent)
(rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
(xemacs-codename, sxemacs-codename, emacs-program-version):
* gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
* gnus-start.el (gnus-agent-covered-methods)
(gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
(gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
(gnus-newsgroup-headers, gnus-group-list-mode)
(gnus-group-mark-positions, gnus-newsgroup-data)
(gnus-newsgroup-unreads, nnoo-state-alist)
(gnus-current-select-method, mail-sources)
(nnmail-scan-directory-mail-source-once, nnmail-split-history)
(nnmail-spool-file, gnus-cache-active-hashtb):
* gnus-mh.el (mh-lib-progs):
* gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
(gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
(gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
(gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
(gnus-group-buffer):
* gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
(font-lock-set-defaults):
* gnus-art.el (tool-bar-map, w3m-minor-mode-map)
(gnus-face-properties-alist, charset, gnus-summary-article-menu)
(gnus-summary-post-menu, total-parts, type, condition, length):
* gnus-agent.el (gnus-agent-read-agentview):
* flow-fill.el (show-trailing-whitespace):
* gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
eval-and-compile wrappers for byte compiler pacifiers.
* mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
(mm-display-inline-fontify): Check for featurep 'xemacs not
extent-list.
* mm-decode.el (mm-display-external): Check for featurep 'xemacs not
itimer-list.
(mm-create-image-xemacs): Only do something for XEmacs.
(mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
* mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
* gnus-registry.el (gnus-adaptive-word-syntax-table):
* gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
* textmodes/reftex-dcr.el (reftex-start-itimer-once): Add check
for XEmacs.
* calc/calc-menu.el (calc-mode-map): Pacify byte compiler.
* doc-view.el (doc-view-resolution): Add missing :group.
2007-11-16 16:50:35 +00:00
|
|
|
(defvar gnus-newsgroup-charset)
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defun mm-uu-pgp-signed-extract-1 (handles ctl)
|
|
|
|
(let ((buf (mm-uu-copy-to-buffer (point-min) (point-max))))
|
|
|
|
(with-current-buffer buf
|
|
|
|
(if (mm-uu-pgp-signed-test)
|
|
|
|
(progn
|
|
|
|
(mml2015-clean-buffer)
|
2010-04-01 15:34:05 +00:00
|
|
|
(let ((coding-system-for-write (or buffer-file-coding-system
|
|
|
|
gnus-newsgroup-charset
|
2007-10-28 09:18:39 +00:00
|
|
|
'iso-8859-1))
|
2010-04-01 15:34:05 +00:00
|
|
|
(coding-system-for-read (or buffer-file-coding-system
|
|
|
|
gnus-newsgroup-charset
|
2007-10-28 09:18:39 +00:00
|
|
|
'iso-8859-1)))
|
2004-09-04 13:13:48 +00:00
|
|
|
(funcall (mml2015-clear-verify-function))))
|
|
|
|
(when (and mml2015-use (null (mml2015-clear-verify-function)))
|
|
|
|
(mm-set-handle-multipart-parameter
|
|
|
|
mm-security-handle 'gnus-details
|
2007-10-28 09:18:39 +00:00
|
|
|
(format "Clear verification not supported by `%s'.\n" mml2015-use)))
|
|
|
|
(mml2015-extract-cleartext-signature))
|
|
|
|
(list (mm-make-handle buf mm-uu-text-plain-type)))))
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defun mm-uu-pgp-signed-extract ()
|
|
|
|
(let ((mm-security-handle (list (format "multipart/signed"))))
|
|
|
|
(mm-set-handle-multipart-parameter
|
|
|
|
mm-security-handle 'protocol "application/x-gnus-pgp-signature")
|
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region start-point end-point)
|
|
|
|
(add-text-properties 0 (length (car mm-security-handle))
|
|
|
|
(list 'buffer (mm-uu-copy-to-buffer))
|
|
|
|
(car mm-security-handle))
|
|
|
|
(setcdr mm-security-handle
|
|
|
|
(mm-uu-pgp-signed-extract-1 nil
|
|
|
|
mm-security-handle)))
|
|
|
|
mm-security-handle))
|
|
|
|
|
|
|
|
(defun mm-uu-pgp-encrypted-test (&rest rest)
|
|
|
|
(and
|
|
|
|
mml2015-use
|
|
|
|
(mml2015-clear-decrypt-function)
|
|
|
|
(cond
|
|
|
|
((eq mm-decrypt-option 'never) nil)
|
|
|
|
((eq mm-decrypt-option 'always) t)
|
|
|
|
((eq mm-decrypt-option 'known) t)
|
2006-04-26 21:58:05 +00:00
|
|
|
(t (prog1
|
|
|
|
(y-or-n-p "Decrypt pgp encrypted part? ")
|
|
|
|
(message ""))))))
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defun mm-uu-pgp-encrypted-extract-1 (handles ctl)
|
2006-04-26 21:58:05 +00:00
|
|
|
(let ((buf (mm-uu-copy-to-buffer (point-min) (point-max)))
|
|
|
|
(first t)
|
|
|
|
charset)
|
|
|
|
;; Make sure there's a blank line between header and body.
|
|
|
|
(with-current-buffer buf
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (prog2
|
|
|
|
(forward-line 1)
|
|
|
|
(if first
|
|
|
|
(looking-at "[^\t\n ]+:")
|
|
|
|
(looking-at "[^\t\n ]+:\\|[\t ]"))
|
|
|
|
(setq first nil)))
|
|
|
|
(unless (memq (char-after) '(?\n nil))
|
|
|
|
(insert "\n"))
|
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region (point-min) (point))
|
|
|
|
(setq charset (mail-fetch-field "charset")))
|
|
|
|
(if (and (mm-uu-pgp-encrypted-test)
|
|
|
|
(progn
|
|
|
|
(mml2015-clean-buffer)
|
|
|
|
(funcall (mml2015-clear-decrypt-function))
|
|
|
|
(equal (mm-handle-multipart-ctl-parameter mm-security-handle
|
|
|
|
'gnus-info)
|
|
|
|
"OK")))
|
|
|
|
(progn
|
|
|
|
;; Decode charset.
|
2006-05-02 05:25:20 +00:00
|
|
|
(if (and (or charset
|
|
|
|
(setq charset gnus-newsgroup-charset))
|
|
|
|
(setq charset (mm-charset-to-coding-system charset))
|
|
|
|
(not (eq charset 'ascii)))
|
|
|
|
;; Assume that buffer's multibyteness is turned off.
|
|
|
|
;; See `mml2015-pgg-clear-decrypt'.
|
|
|
|
(insert (mm-decode-coding-string (prog1
|
|
|
|
(buffer-string)
|
|
|
|
(erase-buffer)
|
|
|
|
(mm-enable-multibyte))
|
|
|
|
charset))
|
|
|
|
(mm-enable-multibyte))
|
2006-04-26 21:58:05 +00:00
|
|
|
(list (mm-make-handle buf mm-uu-text-plain-type)))
|
|
|
|
(list (mm-make-handle buf '("application/pgp-encrypted")))))))
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defun mm-uu-pgp-encrypted-extract ()
|
|
|
|
(let ((mm-security-handle (list (format "multipart/encrypted"))))
|
|
|
|
(mm-set-handle-multipart-parameter
|
|
|
|
mm-security-handle 'protocol "application/x-gnus-pgp-encrypted")
|
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region start-point end-point)
|
|
|
|
(add-text-properties 0 (length (car mm-security-handle))
|
|
|
|
(list 'buffer (mm-uu-copy-to-buffer))
|
|
|
|
(car mm-security-handle))
|
|
|
|
(setcdr mm-security-handle
|
|
|
|
(mm-uu-pgp-encrypted-extract-1 nil
|
|
|
|
mm-security-handle)))
|
|
|
|
mm-security-handle))
|
|
|
|
|
|
|
|
(defun mm-uu-gpg-key-skip-to-last ()
|
|
|
|
(let ((point (point))
|
|
|
|
(end-regexp (mm-uu-end-regexp entry))
|
|
|
|
(beginning-regexp (mm-uu-beginning-regexp entry)))
|
|
|
|
(when (and end-regexp
|
|
|
|
(not (mm-uu-configure-p (mm-uu-type entry) 'disabled)))
|
|
|
|
(while (re-search-forward end-regexp nil t)
|
|
|
|
(skip-chars-forward " \t\n\r")
|
|
|
|
(if (looking-at beginning-regexp)
|
|
|
|
(setq point (match-end 0)))))
|
|
|
|
(goto-char point)))
|
|
|
|
|
|
|
|
(defun mm-uu-pgp-key-extract ()
|
|
|
|
(let ((buf (mm-uu-copy-to-buffer start-point end-point)))
|
|
|
|
(mm-make-handle buf
|
|
|
|
'("application/pgp-keys"))))
|
|
|
|
|
2001-08-07 14:52:07 +00:00
|
|
|
;;;###autoload
|
2006-01-16 09:27:43 +00:00
|
|
|
(defun mm-uu-dissect (&optional noheader mime-type)
|
|
|
|
"Dissect the current buffer and return a list of uu handles.
|
|
|
|
The optional NOHEADER means there's no header in the buffer.
|
|
|
|
MIME-TYPE specifies a MIME type and parameters, which defaults to the
|
|
|
|
value of `mm-uu-text-plain-type'."
|
2004-09-04 13:13:48 +00:00
|
|
|
(let ((case-fold-search t)
|
2006-01-16 09:27:43 +00:00
|
|
|
(mm-uu-text-plain-type (or mime-type mm-uu-text-plain-type))
|
|
|
|
text-start start-point end-point file-name result entry func)
|
2000-09-19 13:40:08 +00:00
|
|
|
(save-excursion
|
2004-09-04 13:13:48 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(cond
|
2006-01-16 09:27:43 +00:00
|
|
|
(noheader)
|
2004-09-04 13:13:48 +00:00
|
|
|
((looking-at "\n")
|
|
|
|
(forward-line))
|
|
|
|
((search-forward "\n\n" nil t)
|
|
|
|
t)
|
|
|
|
(t (goto-char (point-max))))
|
2006-01-16 09:27:43 +00:00
|
|
|
(setq text-start (point))
|
2004-09-04 13:13:48 +00:00
|
|
|
(while (re-search-forward mm-uu-beginning-regexp nil t)
|
2006-03-19 19:39:53 +00:00
|
|
|
(setq start-point (match-beginning 0)
|
|
|
|
entry nil)
|
2004-09-04 13:13:48 +00:00
|
|
|
(let ((alist mm-uu-type-alist)
|
|
|
|
(beginning-regexp (match-string 0)))
|
|
|
|
(while (not entry)
|
|
|
|
(if (string-match (mm-uu-beginning-regexp (car alist))
|
|
|
|
beginning-regexp)
|
|
|
|
(setq entry (car alist))
|
|
|
|
(pop alist))))
|
|
|
|
(if (setq func (mm-uu-function-1 entry))
|
|
|
|
(funcall func))
|
2000-09-19 13:40:08 +00:00
|
|
|
(forward-line);; in case of failure
|
2004-09-04 13:13:48 +00:00
|
|
|
(when (and (not (mm-uu-configure-p (mm-uu-type entry) 'disabled))
|
|
|
|
(let ((end-regexp (mm-uu-end-regexp entry)))
|
|
|
|
(if (not end-regexp)
|
|
|
|
(or (setq end-point (point-max)) t)
|
|
|
|
(prog1
|
|
|
|
(re-search-forward end-regexp nil t)
|
|
|
|
(forward-line)
|
|
|
|
(setq end-point (point)))))
|
|
|
|
(or (not (setq func (mm-uu-function-2 entry)))
|
|
|
|
(funcall func)))
|
|
|
|
(if (and (> start-point text-start)
|
|
|
|
(progn
|
|
|
|
(goto-char text-start)
|
|
|
|
(re-search-forward "." start-point t)))
|
|
|
|
(push
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer text-start start-point)
|
2006-01-16 09:27:43 +00:00
|
|
|
mm-uu-text-plain-type)
|
2004-09-04 13:13:48 +00:00
|
|
|
result))
|
|
|
|
(push
|
|
|
|
(funcall (mm-uu-function-extract entry))
|
|
|
|
result)
|
|
|
|
(goto-char (setq text-start end-point))))
|
2000-09-19 13:40:08 +00:00
|
|
|
(when result
|
2004-09-04 13:13:48 +00:00
|
|
|
(if (and (> (point-max) (1+ text-start))
|
|
|
|
(save-excursion
|
|
|
|
(goto-char text-start)
|
|
|
|
(re-search-forward "." nil t)))
|
2000-09-19 13:40:08 +00:00
|
|
|
(push
|
|
|
|
(mm-make-handle (mm-uu-copy-to-buffer text-start (point-max))
|
2006-01-16 09:27:43 +00:00
|
|
|
mm-uu-text-plain-type)
|
2000-09-19 13:40:08 +00:00
|
|
|
result))
|
|
|
|
(setq result (cons "multipart/mixed" (nreverse result))))
|
|
|
|
result)))
|
|
|
|
|
2006-02-01 10:02:36 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun mm-uu-dissect-text-parts (handle &optional decoded)
|
|
|
|
"Dissect text parts and put uu handles into HANDLE.
|
|
|
|
Assume text has been decoded if DECODED is non-nil."
|
2006-01-25 06:47:24 +00:00
|
|
|
(let ((buffer (mm-handle-buffer handle)))
|
2006-01-16 09:27:43 +00:00
|
|
|
(cond ((stringp buffer)
|
|
|
|
(dolist (elem (cdr handle))
|
2006-02-01 10:02:36 +00:00
|
|
|
(mm-uu-dissect-text-parts elem decoded)))
|
2006-01-16 09:27:43 +00:00
|
|
|
((bufferp buffer)
|
2006-01-25 06:47:24 +00:00
|
|
|
(let ((type (mm-handle-media-type handle))
|
|
|
|
(case-fold-search t) ;; string-match
|
2006-02-01 10:02:36 +00:00
|
|
|
children charset encoding)
|
2006-01-25 06:47:24 +00:00
|
|
|
(when (and
|
|
|
|
(stringp type)
|
|
|
|
;; Mutt still uses application/pgp even though
|
|
|
|
;; it has already been withdrawn.
|
|
|
|
(string-match "\\`text/\\|\\`application/pgp\\'" type)
|
2011-03-17 11:30:27 +00:00
|
|
|
(equal (car (mm-handle-disposition handle))
|
|
|
|
"inline")
|
2006-02-01 10:02:36 +00:00
|
|
|
(setq
|
|
|
|
children
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(cond
|
|
|
|
((or decoded
|
|
|
|
(eq (setq charset (mail-content-type-get
|
|
|
|
(mm-handle-type handle)
|
|
|
|
'charset))
|
|
|
|
'gnus-decoded))
|
|
|
|
(setq decoded t)
|
|
|
|
(mm-uu-dissect
|
|
|
|
t (cons type '((charset . gnus-decoded)))))
|
|
|
|
(charset
|
|
|
|
(setq decoded t)
|
|
|
|
(mm-with-multibyte-buffer
|
|
|
|
(insert (mm-decode-string (mm-get-part handle)
|
|
|
|
charset))
|
|
|
|
(mm-uu-dissect
|
|
|
|
t (cons type '((charset . gnus-decoded))))))
|
|
|
|
((setq encoding (mm-handle-encoding handle))
|
|
|
|
(setq decoded nil)
|
|
|
|
;; Inherit the multibyteness of the `buffer'.
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert-buffer-substring buffer)
|
|
|
|
(mm-decode-content-transfer-encoding
|
|
|
|
encoding type)
|
|
|
|
(mm-uu-dissect t (list type))))
|
|
|
|
(t
|
|
|
|
(setq decoded nil)
|
|
|
|
(mm-uu-dissect t (list type)))))))
|
2006-01-25 06:47:24 +00:00
|
|
|
;; Ignore it if a given part is dissected into a single
|
|
|
|
;; part of which the type is the same as the given one.
|
|
|
|
(if (and (<= (length children) 2)
|
|
|
|
(string-equal (mm-handle-media-type (cadr children))
|
|
|
|
type))
|
|
|
|
(kill-buffer (mm-handle-buffer (cadr children)))
|
|
|
|
(kill-buffer buffer)
|
|
|
|
(setcdr handle (cdr children))
|
|
|
|
(setcar handle (car children)) ;; "multipart/mixed"
|
|
|
|
(dolist (elem (cdr children))
|
2006-02-01 10:02:36 +00:00
|
|
|
(mm-uu-dissect-text-parts elem decoded))))))
|
2006-01-16 09:27:43 +00:00
|
|
|
(t
|
|
|
|
(dolist (elem handle)
|
2006-02-01 10:02:36 +00:00
|
|
|
(mm-uu-dissect-text-parts elem decoded))))))
|
2006-01-16 09:27:43 +00:00
|
|
|
|
2000-09-19 13:40:08 +00:00
|
|
|
(provide 'mm-uu)
|
|
|
|
|
|
|
|
;;; mm-uu.el ends here
|