1 ;;; mm-uu.el --- Return uu stuff as mm handles
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005 Free Software Foundation, Inc.
6 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
7 ;; Keywords: postscript uudecode binhex shar forward gnatsweb pgp
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
30 (eval-when-compile (require 'cl
))
37 (autoload 'uudecode-decode-region
"uudecode")
38 (autoload 'uudecode-decode-region-external
"uudecode")
39 (autoload 'uudecode-decode-region-internal
"uudecode")
41 (autoload 'binhex-decode-region
"binhex")
42 (autoload 'binhex-decode-region-external
"binhex")
43 (autoload 'binhex-decode-region-internal
"binhex")
45 (autoload 'yenc-decode-region
"yenc")
46 (autoload 'yenc-extract-filename
"yenc")
48 (defcustom mm-uu-decode-function
'uudecode-decode-region
49 "*Function to uudecode.
50 Internal function is done in Lisp by default, therefore decoding may
51 appear to be horribly slow. You can make Gnus use an external
52 decoder, such as uudecode."
54 (function-item :tag
"Auto detect" uudecode-decode-region
)
55 (function-item :tag
"Internal" uudecode-decode-region-internal
)
56 (function-item :tag
"External" uudecode-decode-region-external
))
57 :group
'gnus-article-mime
)
59 (defcustom mm-uu-binhex-decode-function
'binhex-decode-region
60 "*Function to binhex decode.
61 Internal function is done in elisp by default, therefore decoding may
62 appear to be horribly slow . You can make Gnus use the external Unix
63 decoder, such as hexbin."
64 :type
'(choice (function-item :tag
"Auto detect" binhex-decode-region
)
65 (function-item :tag
"Internal" binhex-decode-region-internal
)
66 (function-item :tag
"External" binhex-decode-region-external
))
67 :group
'gnus-article-mime
)
69 (defvar mm-uu-yenc-decode-function
'yenc-decode-region
)
71 (defvar mm-uu-pgp-beginning-signature
72 "^-----BEGIN PGP SIGNATURE-----")
74 (defvar mm-uu-beginning-regexp nil
)
76 (defvar mm-dissect-disposition
"inline"
77 "The default disposition of uu parts.
78 This can be either \"inline\" or \"attachment\".")
80 (defcustom mm-uu-emacs-sources-regexp
"\\.emacs\\.sources"
81 "The regexp of Emacs sources groups."
84 :group
'gnus-article-mime
)
86 (defcustom mm-uu-diff-groups-regexp
87 "\\(gmane\\|gnu\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|devel\\)"
88 "Regexp matching diff groups."
91 :group
'gnus-article-mime
)
93 (defvar mm-uu-type-alist
97 mm-uu-postscript-extract
100 "^begin[ \t]+0?[0-7][0-7][0-7][ \t]+"
105 "^:...............................................................$"
109 mm-uu-binhex-filename
)
111 "^=ybegin.*size=[0-9]+.*name=.*$"
112 "^=yend.*size=[0-9]+"
120 ;; Thanks to Edward J. Sabol <sabol@alderaan.gsfc.nasa.gov> and
121 ;; Peter von der Ah\'e <pahe@daimi.au.dk>
122 "^-+ \\(Start of \\)?Forwarded message"
123 "^-+ End \\(of \\)?forwarded message"
124 mm-uu-forward-extract
128 "^----gnatsweb-attachment----"
130 mm-uu-gnatsweb-extract
)
132 "^-----BEGIN PGP SIGNED MESSAGE-----"
133 "^-----END PGP SIGNATURE-----"
134 mm-uu-pgp-signed-extract
138 "^-----BEGIN PGP MESSAGE-----"
139 "^-----END PGP MESSAGE-----"
140 mm-uu-pgp-encrypted-extract
144 "^-----BEGIN PGP PUBLIC KEY BLOCK-----"
145 "^-----END PGP PUBLIC KEY BLOCK-----"
146 mm-uu-pgp-key-extract
147 mm-uu-gpg-key-skip-to-last
150 "^;;;?[ \t]*[^ \t]+\\.el[ \t]*--"
151 "^;;;?[ \t]*\\([^ \t]+\\.el\\)[ \t]+ends here"
152 mm-uu-emacs-sources-extract
154 mm-uu-emacs-sources-test
)
161 "A list of specifications for non-MIME attachments.
162 Each element consist of the following entries: label,
163 start-regexp, end-regexp, extract-function, test-function.
165 After modifying this list you must run \\[mm-uu-configure].")
167 (defcustom mm-uu-configure-list
'((shar . disabled
))
168 "A list of mm-uu configuration.
169 To disable dissecting shar codes, for instance, add
170 `(shar . disabled)' to this list."
172 :options
(mapcar (lambda (entry)
173 (list (car entry
) '(const disabled
)))
175 :group
'gnus-article-mime
)
179 (defsubst mm-uu-type
(entry)
182 (defsubst mm-uu-beginning-regexp
(entry)
185 (defsubst mm-uu-end-regexp
(entry)
188 (defsubst mm-uu-function-extract
(entry)
191 (defsubst mm-uu-function-1
(entry)
194 (defsubst mm-uu-function-2
(entry)
197 (defun mm-uu-copy-to-buffer (&optional from to
)
198 "Copy the contents of the current buffer to a fresh buffer.
200 (let ((obuf (current-buffer))
202 ;; Might not exist in non-MULE XEmacs
203 (when (boundp 'buffer-file-coding-system
)
204 buffer-file-coding-system
)))
205 (with-current-buffer (generate-new-buffer " *mm-uu*")
206 (setq buffer-file-coding-system coding-system
)
207 (insert-buffer-substring obuf from to
)
210 (defun mm-uu-configure-p (key val
)
211 (member (cons key val
) mm-uu-configure-list
))
213 (defun mm-uu-configure (&optional symbol value
)
214 "Configure detection of non-MIME attachments."
216 (if symbol
(set-default symbol value
))
217 (setq mm-uu-beginning-regexp nil
)
218 (mapcar (lambda (entry)
219 (if (mm-uu-configure-p (mm-uu-type entry
) 'disabled
)
221 (setq mm-uu-beginning-regexp
222 (concat mm-uu-beginning-regexp
223 (if mm-uu-beginning-regexp
"\\|")
224 (mm-uu-beginning-regexp entry
)))))
235 (defun mm-uu-uu-filename ()
236 (if (looking-at ".+")
238 (let ((nnheader-file-name-translation-alist
239 '((?
/ . ?
,) (?\ . ?_
) (?
* . ?_
) (?$ . ?_
))))
240 (nnheader-translate-file-chars (match-string 0))))))
242 (defun mm-uu-binhex-filename ()
245 (binhex-decode-region start-point end-point t
))))
247 (defun mm-uu-yenc-filename ()
248 (goto-char start-point
)
251 (yenc-extract-filename))))
253 (defun mm-uu-forward-test ()
255 (goto-char start-point
)
257 (looking-at "[\r\n]*[a-zA-Z][a-zA-Z0-9-]*:")))
259 (defun mm-uu-postscript-extract ()
260 (mm-make-handle (mm-uu-copy-to-buffer start-point end-point
)
261 '("application/postscript")))
263 (defun mm-uu-emacs-sources-extract ()
264 (mm-make-handle (mm-uu-copy-to-buffer start-point end-point
)
265 '("application/emacs-lisp")
267 (list mm-dissect-disposition
268 (cons 'filename file-name
))))
271 (defvar gnus-newsgroup-name
))
273 (defun mm-uu-emacs-sources-test ()
274 (setq file-name
(match-string 1))
275 (and gnus-newsgroup-name
276 mm-uu-emacs-sources-regexp
277 (string-match mm-uu-emacs-sources-regexp gnus-newsgroup-name
)))
279 (defun mm-uu-diff-extract ()
280 (mm-make-handle (mm-uu-copy-to-buffer start-point end-point
)
283 (defun mm-uu-diff-test ()
284 (and gnus-newsgroup-name
285 mm-uu-diff-groups-regexp
286 (string-match mm-uu-diff-groups-regexp gnus-newsgroup-name
)))
288 (defun mm-uu-forward-extract ()
289 (mm-make-handle (mm-uu-copy-to-buffer
290 (progn (goto-char start-point
) (forward-line) (point))
291 (progn (goto-char end-point
) (forward-line -
1) (point)))
292 '("message/rfc822" (charset . gnus-decoded
))))
294 (defun mm-uu-uu-extract ()
295 (mm-make-handle (mm-uu-copy-to-buffer start-point end-point
)
296 (list (or (and file-name
297 (string-match "\\.[^\\.]+$"
299 (mailcap-extension-to-mime
300 (match-string 0 file-name
)))
301 "application/octet-stream"))
303 (if (and file-name
(not (equal file-name
"")))
304 (list mm-dissect-disposition
305 (cons 'filename file-name
)))))
307 (defun mm-uu-binhex-extract ()
308 (mm-make-handle (mm-uu-copy-to-buffer start-point end-point
)
309 (list (or (and file-name
310 (string-match "\\.[^\\.]+$" file-name
)
311 (mailcap-extension-to-mime
312 (match-string 0 file-name
)))
313 "application/octet-stream"))
315 (if (and file-name
(not (equal file-name
"")))
316 (list mm-dissect-disposition
317 (cons 'filename file-name
)))))
319 (defun mm-uu-yenc-extract ()
320 (mm-make-handle (mm-uu-copy-to-buffer start-point end-point
)
321 (list (or (and file-name
322 (string-match "\\.[^\\.]+$" file-name
)
323 (mailcap-extension-to-mime
324 (match-string 0 file-name
)))
325 "application/octet-stream"))
327 (if (and file-name
(not (equal file-name
"")))
328 (list mm-dissect-disposition
329 (cons 'filename file-name
)))))
332 (defun mm-uu-shar-extract ()
333 (mm-make-handle (mm-uu-copy-to-buffer start-point end-point
)
334 '("application/x-shar")))
336 (defun mm-uu-gnatsweb-extract ()
338 (goto-char start-point
)
340 (narrow-to-region (point) end-point
)
341 (mm-dissect-buffer t
)))
343 (defun mm-uu-pgp-signed-test (&rest rest
)
346 (mml2015-clear-verify-function)
348 ((eq mm-verify-option
'never
) nil
)
349 ((eq mm-verify-option
'always
) t
)
350 ((eq mm-verify-option
'known
) t
)
351 (t (y-or-n-p "Verify pgp signed part? ")))))
354 (defvar gnus-newsgroup-charset
))
356 (defun mm-uu-pgp-signed-extract-1 (handles ctl
)
357 (let ((buf (mm-uu-copy-to-buffer (point-min) (point-max))))
358 (with-current-buffer buf
359 (if (mm-uu-pgp-signed-test)
361 (mml2015-clean-buffer)
362 (let ((coding-system-for-write (or gnus-newsgroup-charset
364 (funcall (mml2015-clear-verify-function))))
365 (when (and mml2015-use
(null (mml2015-clear-verify-function)))
366 (mm-set-handle-multipart-parameter
367 mm-security-handle
'gnus-details
368 (format "Clear verification not supported by `%s'.\n" mml2015-use
))))
369 (goto-char (point-min))
370 (if (search-forward "\n\n" nil t
)
371 (delete-region (point-min) (point)))
372 (if (re-search-forward mm-uu-pgp-beginning-signature nil t
)
373 (delete-region (match-beginning 0) (point-max)))
374 (goto-char (point-min))
375 (while (re-search-forward "^- " nil t
)
376 (replace-match "" t t
)
378 (list (mm-make-handle buf
'("text/plain" (charset . gnus-decoded
))))))
380 (defun mm-uu-pgp-signed-extract ()
381 (let ((mm-security-handle (list (format "multipart/signed"))))
382 (mm-set-handle-multipart-parameter
383 mm-security-handle
'protocol
"application/x-gnus-pgp-signature")
385 (narrow-to-region start-point end-point
)
386 (add-text-properties 0 (length (car mm-security-handle
))
387 (list 'buffer
(mm-uu-copy-to-buffer))
388 (car mm-security-handle
))
389 (setcdr mm-security-handle
390 (mm-uu-pgp-signed-extract-1 nil
391 mm-security-handle
)))
394 (defun mm-uu-pgp-encrypted-test (&rest rest
)
397 (mml2015-clear-decrypt-function)
399 ((eq mm-decrypt-option
'never
) nil
)
400 ((eq mm-decrypt-option
'always
) t
)
401 ((eq mm-decrypt-option
'known
) t
)
402 (t (y-or-n-p "Decrypt pgp encrypted part? ")))))
404 (defun mm-uu-pgp-encrypted-extract-1 (handles ctl
)
405 (let ((buf (mm-uu-copy-to-buffer (point-min) (point-max))))
406 (if (mm-uu-pgp-encrypted-test)
407 (with-current-buffer buf
408 (mml2015-clean-buffer)
409 (funcall (mml2015-clear-decrypt-function))))
412 '("text/plain" (charset . gnus-decoded
))))))
414 (defun mm-uu-pgp-encrypted-extract ()
415 (let ((mm-security-handle (list (format "multipart/encrypted"))))
416 (mm-set-handle-multipart-parameter
417 mm-security-handle
'protocol
"application/x-gnus-pgp-encrypted")
419 (narrow-to-region start-point end-point
)
420 (add-text-properties 0 (length (car mm-security-handle
))
421 (list 'buffer
(mm-uu-copy-to-buffer))
422 (car mm-security-handle
))
423 (setcdr mm-security-handle
424 (mm-uu-pgp-encrypted-extract-1 nil
425 mm-security-handle
)))
428 (defun mm-uu-gpg-key-skip-to-last ()
429 (let ((point (point))
430 (end-regexp (mm-uu-end-regexp entry
))
431 (beginning-regexp (mm-uu-beginning-regexp entry
)))
432 (when (and end-regexp
433 (not (mm-uu-configure-p (mm-uu-type entry
) 'disabled
)))
434 (while (re-search-forward end-regexp nil t
)
435 (skip-chars-forward " \t\n\r")
436 (if (looking-at beginning-regexp
)
437 (setq point
(match-end 0)))))
440 (defun mm-uu-pgp-key-extract ()
441 (let ((buf (mm-uu-copy-to-buffer start-point end-point
)))
443 '("application/pgp-keys"))))
446 (defun mm-uu-dissect ()
447 "Dissect the current buffer and return a list of uu handles."
448 (let ((case-fold-search t
)
449 text-start start-point end-point file-name result
450 text-plain-type entry func
)
452 (goto-char (point-min))
456 ((search-forward "\n\n" nil t
)
458 (t (goto-char (point-max))))
459 ;;; gnus-decoded is a fake charset, which means no further
461 (setq text-start
(point)
462 text-plain-type
'("text/plain" (charset . gnus-decoded
)))
463 (while (re-search-forward mm-uu-beginning-regexp nil t
)
464 (setq start-point
(match-beginning 0))
465 (let ((alist mm-uu-type-alist
)
466 (beginning-regexp (match-string 0)))
468 (if (string-match (mm-uu-beginning-regexp (car alist
))
470 (setq entry
(car alist
))
472 (if (setq func
(mm-uu-function-1 entry
))
474 (forward-line);; in case of failure
475 (when (and (not (mm-uu-configure-p (mm-uu-type entry
) 'disabled
))
476 (let ((end-regexp (mm-uu-end-regexp entry
)))
478 (or (setq end-point
(point-max)) t
)
480 (re-search-forward end-regexp nil t
)
482 (setq end-point
(point)))))
483 (or (not (setq func
(mm-uu-function-2 entry
)))
485 (if (and (> start-point text-start
)
487 (goto-char text-start
)
488 (re-search-forward "." start-point t
)))
490 (mm-make-handle (mm-uu-copy-to-buffer text-start start-point
)
494 (funcall (mm-uu-function-extract entry
))
496 (goto-char (setq text-start end-point
))))
498 (if (and (> (point-max) (1+ text-start
))
500 (goto-char text-start
)
501 (re-search-forward "." nil t
)))
503 (mm-make-handle (mm-uu-copy-to-buffer text-start
(point-max))
506 (setq result
(cons "multipart/mixed" (nreverse result
))))
511 ;; arch-tag: 7db076bf-53db-4320-aa19-ca76a1d2ab2c
512 ;;; mm-uu.el ends here