1 ;;; gnus-uu.el --- extract (uu)encoded files in Gnus
3 ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
31 (eval-when-compile (require 'cl
))
40 (defgroup gnus-extract nil
41 "Extracting encoded files."
45 (defgroup gnus-extract-view nil
46 "Viewwing extracted files."
49 (defgroup gnus-extract-archive nil
50 "Extracting encoded archives."
53 (defgroup gnus-extract-post nil
54 "Extracting encoded archives."
55 :prefix
"gnus-uu-post"
58 ;; Default viewing action rules
60 (defcustom gnus-uu-default-view-rules
61 '(("\\.te?xt$\\|\\.doc$\\|read.*me\\|\\.c?$\\|\\.h$\\|\\.bat$\\|\\.asm$\\|makefile" "cat %s | sed 's/\r$//'")
62 ("\\.pas$" "cat %s | sed 's/\r$//'")
63 ("\\.[1-9]$" "groff -mandoc -Tascii %s | sed s/\b.//g")
64 ("\\.\\(jpe?g\\|gif\\|tiff?\\|p[pgb]m\\|xwd\\|xbm\\|pcx\\)$" "display")
65 ("\\.tga$" "tgatoppm %s | ee -")
66 ("\\.\\(wav\\|aiff\\|hcom\\|u[blw]\\|s[bfw]\\|voc\\|smp\\)$"
67 "sox -v .5 %s -t .au -u - > /dev/audio")
68 ("\\.au$" "cat %s > /dev/audio")
69 ("\\.midi?$" "playmidi -f")
71 ("\\.ps$" "ghostview")
73 ("\\.html$" "xmosaic")
74 ("\\.mpe?g$" "mpeg_play")
75 ("\\.\\(flc\\|fli\\|rle\\|iff\\|pfx\\|avi\\|sme\\|rpza\\|dl\\|qt\\|rsrc\\|mov\\)$" "xanim")
76 ("\\.\\(tar\\|arj\\|zip\\|zoo\\|arc\\|gz\\|Z\\|lzh\\|ar\\|lha\\)$"
78 "*Default actions to be taken when the user asks to view a file.
79 To change the behavior, you can either edit this variable or set
80 `gnus-uu-user-view-rules' to something useful.
84 To make gnus-uu use 'xli' to display JPEG and GIF files, put the
85 following in your .emacs file:
87 (setq gnus-uu-user-view-rules '((\"jpg$\\\\|gif$\" \"xli\")))
89 Both these variables are lists of lists with two string elements. The
90 first string is a regular expression. If the file name matches this
91 regular expression, the command in the second string is executed with
92 the file as an argument.
94 If the command string contains \"%s\", the file name will be inserted
95 at that point in the command string. If there's no \"%s\" in the
96 command string, the file name will be appended to the command string
99 There are several user variables to tailor the behavior of gnus-uu to
100 your needs. First we have `gnus-uu-user-view-rules', which is the
101 variable gnus-uu first consults when trying to decide how to view a
102 file. If this variable contains no matches, gnus-uu examines the
103 default rule variable provided in this package. If gnus-uu finds no
104 match here, it uses `gnus-uu-user-view-rules-end' to try to make a
106 :group
'gnus-extract-view
107 :type
'(repeat (group regexp
(string :tag
"Command"))))
109 (defcustom gnus-uu-user-view-rules nil
110 "What actions are to be taken to view a file.
111 See the documentation on the `gnus-uu-default-view-rules' variable for
113 :group
'gnus-extract-view
114 :type
'(repeat (group regexp
(string :tag
"Command"))))
116 (defcustom gnus-uu-user-view-rules-end
118 "*What actions are to be taken if no rule matched the file name.
119 See the documentation on the `gnus-uu-default-view-rules' variable for
121 :group
'gnus-extract-view
122 :type
'(repeat (group regexp
(string :tag
"Command"))))
124 ;; Default unpacking commands
126 (defcustom gnus-uu-default-archive-rules
127 '(("\\.tar$" "tar xf")
128 ("\\.zip$" "unzip -o")
130 ("\\.arj$" "unarj x")
132 ("\\.\\(lzh\\|lha\\)$" "lha x")
133 ("\\.Z$" "uncompress")
135 ("\\.arc$" "arc -x"))
136 "*See `gnus-uu-user-archive-rules'."
137 :group
'gnus-extract-archive
138 :type
'(repeat (group regexp
(string :tag
"Command"))))
140 (defvar gnus-uu-destructive-archivers
141 (list "uncompress" "gunzip"))
143 (defcustom gnus-uu-user-archive-rules nil
144 "A list that can be set to override the default archive unpacking commands.
145 To use, for instance, 'untar' to unpack tar files and 'zip -x' to
146 unpack zip files, say the following:
147 (setq gnus-uu-user-archive-rules
148 '((\"\\\\.tar$\" \"untar\")
149 (\"\\\\.zip$\" \"zip -x\")))"
150 :group
'gnus-extract-archive
151 :type
'(repeat (group regexp
(string :tag
"Command"))))
153 (defcustom gnus-uu-ignore-files-by-name nil
154 "*A regular expression saying what files should not be viewed based on name.
155 If, for instance, you want gnus-uu to ignore all .au and .wav files,
156 you could say something like
158 (setq gnus-uu-ignore-files-by-name \"\\\\.au$\\\\|\\\\.wav$\")
160 Note that this variable can be used in conjunction with the
161 `gnus-uu-ignore-files-by-type' variable."
163 :type
'(choice (const :tag
"off" nil
)
164 (regexp :format
"%v")))
166 (defcustom gnus-uu-ignore-files-by-type nil
167 "*A regular expression saying what files that shouldn't be viewed, based on MIME file type.
168 If, for instance, you want gnus-uu to ignore all audio files and all mpegs,
169 you could say something like
171 (setq gnus-uu-ignore-files-by-type \"audio/\\\\|video/mpeg\")
173 Note that this variable can be used in conjunction with the
174 `gnus-uu-ignore-files-by-name' variable."
176 :type
'(choice (const :tag
"off" nil
)
177 (regexp :format
"%v")))
179 ;; Pseudo-MIME support
181 (defconst gnus-uu-ext-to-mime-list
182 '(("\\.gif$" "image/gif")
183 ("\\.jpe?g$" "image/jpeg")
184 ("\\.tiff?$" "image/tiff")
185 ("\\.xwd$" "image/xwd")
186 ("\\.pbm$" "image/pbm")
187 ("\\.pgm$" "image/pgm")
188 ("\\.ppm$" "image/ppm")
189 ("\\.xbm$" "image/xbm")
190 ("\\.pcx$" "image/pcx")
191 ("\\.tga$" "image/tga")
192 ("\\.ps$" "image/postscript")
193 ("\\.fli$" "video/fli")
194 ("\\.wav$" "audio/wav")
195 ("\\.aiff$" "audio/aiff")
196 ("\\.hcom$" "audio/hcom")
197 ("\\.voc$" "audio/voc")
198 ("\\.smp$" "audio/smp")
199 ("\\.mod$" "audio/mod")
200 ("\\.dvi$" "image/dvi")
201 ("\\.mpe?g$" "video/mpeg")
202 ("\\.au$" "audio/basic")
203 ("\\.\\(te?xt\\|doc\\|c\\|h\\)$" "text/plain")
204 ("\\.\\(c\\|h\\)$" "text/source")
205 ("read.*me" "text/plain")
206 ("\\.html$" "text/html")
207 ("\\.bat$" "text/bat")
208 ("\\.[1-6]$" "text/man")
209 ("\\.flc$" "video/flc")
210 ("\\.rle$" "video/rle")
211 ("\\.pfx$" "video/pfx")
212 ("\\.avi$" "video/avi")
213 ("\\.sme$" "video/sme")
214 ("\\.rpza$" "video/prza")
215 ("\\.dl$" "video/dl")
216 ("\\.qt$" "video/qt")
217 ("\\.rsrc$" "video/rsrc")
218 ("\\..*$" "unknown/unknown")))
220 ;; Various variables users may set
222 (defcustom gnus-uu-tmp-dir
223 (cond ((fboundp 'temp-directory
) (temp-directory))
224 ((boundp 'temporary-file-directory
) temporary-file-directory
)
226 "*Variable saying where gnus-uu is to do its work.
227 Default is \"/tmp/\"."
231 (defcustom gnus-uu-do-not-unpack-archives nil
232 "*Non-nil means that gnus-uu won't peek inside archives looking for files to display.
234 :group
'gnus-extract-archive
237 (defcustom gnus-uu-ignore-default-view-rules nil
238 "*Non-nil means that gnus-uu will ignore the default viewing rules.
239 Only the user viewing rules will be consulted. Default is nil."
240 :group
'gnus-extract-view
243 (defcustom gnus-uu-grabbed-file-functions nil
244 "Functions run on each file after successful decoding.
245 They will be called with the name of the file as the argument.
246 Likely functions you can use in this list are `gnus-uu-grab-view'
247 and `gnus-uu-grab-move'."
249 :options
'(gnus-uu-grab-view gnus-uu-grab-move
)
252 (defcustom gnus-uu-ignore-default-archive-rules nil
253 "*Non-nil means that gnus-uu will ignore the default archive unpacking commands.
254 Only the user unpacking commands will be consulted. Default is nil."
255 :group
'gnus-extract-archive
258 (defcustom gnus-uu-kill-carriage-return t
259 "*Non-nil means that gnus-uu will strip all carriage returns from articles.
264 (defcustom gnus-uu-view-with-metamail nil
265 "*Non-nil means that files will be viewed with metamail.
266 The gnus-uu viewing functions will be ignored and gnus-uu will try
267 to guess at a content-type based on file name suffixes. Default
272 (defcustom gnus-uu-unmark-articles-not-decoded nil
273 "*Non-nil means that gnus-uu will mark articles that were unsuccessfully decoded as unread.
278 (defcustom gnus-uu-correct-stripped-uucode nil
279 "*Non-nil means that gnus-uu will *try* to fix uuencoded files that have had trailing spaces deleted.
284 (defcustom gnus-uu-save-in-digest nil
285 "*Non-nil means that gnus-uu, when asked to save without decoding, will save in digests.
286 If this variable is nil, gnus-uu will just save everything in a
287 file without any embellishments. The digesting almost conforms to RFC1153 -
288 no easy way to specify any meaningful volume and issue numbers were found,
289 so I simply dropped them."
293 (defcustom gnus-uu-pre-uudecode-hook nil
294 "Hook run before sending a message to uudecode."
298 (defcustom gnus-uu-digest-headers
299 '("^Date:" "^From:" "^To:" "^Cc:" "^Subject:" "^Message-ID:" "^Keywords:"
300 "^Summary:" "^References:" "^Content-Type:" "^Content-Transfer-Encoding:"
301 "^MIME-Version:" "^Content-Disposition:" "^Content-Description:"
303 "*List of regexps to match headers included in digested messages.
304 The headers will be included in the sequence they are matched. If nil
305 include all headers."
307 :type
'(repeat regexp
))
309 (defcustom gnus-uu-save-separate-articles nil
310 "*Non-nil means that gnus-uu will save articles in separate files."
314 (defcustom gnus-uu-be-dangerous
'ask
315 "*Specifies what to do if unusual situations arise during decoding.
316 If nil, be as conservative as possible. If t, ignore things that
317 didn't work, and overwrite existing files. Otherwise, ask each time."
319 :type
'(choice (const :tag
"conservative" nil
)
320 (const :tag
"ask" ask
)
321 (const :tag
"liberal" t
)))
323 ;; Internal variables
325 (defvar gnus-uu-saved-article-name nil
)
327 (defvar gnus-uu-begin-string
"^begin[ \t]+0?[0-7][0-7][0-7][ \t]+\\(.*\\)$")
328 (defvar gnus-uu-end-string
"^end[ \t]*$")
330 (defvar gnus-uu-body-line
"^M")
332 (while (> (setq i
(1- i
)) 0)
333 (setq gnus-uu-body-line
(concat gnus-uu-body-line
"[^a-z]")))
334 (setq gnus-uu-body-line
(concat gnus-uu-body-line
".?$")))
336 ;"^M.............................................................?$"
338 (defvar gnus-uu-shar-begin-string
"^#! */bin/sh")
340 (defvar gnus-uu-shar-file-name nil
)
341 (defvar gnus-uu-shar-name-marker
342 "begin 0?[0-7][0-7][0-7][ \t]+\\(\\(\\w\\|[.\\:]\\)*\\b\\)")
344 (defvar gnus-uu-postscript-begin-string
"^%!PS-")
345 (defvar gnus-uu-postscript-end-string
"^%%EOF$")
347 (defvar gnus-uu-file-name nil
)
348 (defvar gnus-uu-uudecode-process nil
)
349 (defvar gnus-uu-binhex-article-name nil
)
350 (defvar gnus-uu-yenc-article-name nil
)
352 (defvar gnus-uu-work-dir nil
)
354 (defvar gnus-uu-output-buffer-name
" *Gnus UU Output*")
356 (defvar gnus-uu-default-dir gnus-article-save-directory
)
357 (defvar gnus-uu-digest-from-subject nil
)
358 (defvar gnus-uu-digest-buffer nil
)
362 (defun gnus-uu-decode-uu (&optional n
)
363 "Uudecodes the current article."
365 (gnus-uu-decode-with-method 'gnus-uu-uustrip-article n
))
367 (defun gnus-uu-decode-uu-and-save (n dir
)
368 "Decodes and saves the resulting file."
370 (list current-prefix-arg
371 (file-name-as-directory
372 (read-file-name "Uudecode and save in dir: "
374 gnus-uu-default-dir t
))))
375 (gnus-uu-decode-with-method 'gnus-uu-uustrip-article n dir nil nil t
))
377 (defun gnus-uu-decode-unshar (&optional n
)
378 "Unshars the current article."
380 (gnus-uu-decode-with-method 'gnus-uu-unshar-article n nil nil
'scan t
))
382 (defun gnus-uu-decode-unshar-and-save (n dir
)
383 "Unshars and saves the current article."
385 (list current-prefix-arg
386 (file-name-as-directory
387 (read-file-name "Unshar and save in dir: "
389 gnus-uu-default-dir t
))))
390 (gnus-uu-decode-with-method 'gnus-uu-unshar-article n dir nil
'scan t
))
392 (defun gnus-uu-decode-save (n file
)
393 "Saves the current article."
395 (list current-prefix-arg
397 (if gnus-uu-save-separate-articles
398 "Save articles in dir: "
399 "Save articles in file: ")
401 gnus-uu-default-dir
)))
402 (setq gnus-uu-saved-article-name file
)
403 (gnus-uu-decode-with-method 'gnus-uu-save-article n nil t
))
405 (defun gnus-uu-decode-binhex (n dir
)
406 "Unbinhexes the current article."
408 (list current-prefix-arg
409 (file-name-as-directory
410 (read-file-name "Unbinhex and save in dir: "
412 gnus-uu-default-dir
))))
413 (setq gnus-uu-binhex-article-name
414 (mm-make-temp-file (expand-file-name "binhex" gnus-uu-work-dir
)))
415 (gnus-uu-decode-with-method 'gnus-uu-binhex-article n dir
))
417 (defun gnus-uu-decode-yenc (n dir
)
418 "Decode the yEnc-encoded current article."
420 (list current-prefix-arg
421 (file-name-as-directory
422 (read-file-name "yEnc decode and save in dir: "
424 gnus-uu-default-dir
))))
425 (setq gnus-uu-yenc-article-name nil
)
426 (gnus-uu-decode-with-method 'gnus-uu-yenc-article n dir nil t
))
428 (defun gnus-uu-decode-uu-view (&optional n
)
429 "Uudecodes and views the current article."
431 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
432 (gnus-uu-decode-uu n
)))
434 (defun gnus-uu-decode-uu-and-save-view (n dir
)
435 "Decodes, views and saves the resulting file."
437 (list current-prefix-arg
438 (read-file-name "Uudecode, view and save in dir: "
440 gnus-uu-default-dir t
)))
441 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
442 (gnus-uu-decode-uu-and-save n dir
)))
444 (defun gnus-uu-decode-unshar-view (&optional n
)
445 "Unshars and views the current article."
447 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
448 (gnus-uu-decode-unshar n
)))
450 (defun gnus-uu-decode-unshar-and-save-view (n dir
)
451 "Unshars and saves the current article."
453 (list current-prefix-arg
454 (read-file-name "Unshar, view and save in dir: "
456 gnus-uu-default-dir t
)))
457 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
458 (gnus-uu-decode-unshar-and-save n dir
)))
460 (defun gnus-uu-decode-save-view (n file
)
461 "Saves and views the current article."
463 (list current-prefix-arg
464 (read-file-name (if gnus-uu-save-separate-articles
465 "Save articles is dir: "
466 "Save articles in file: ")
467 gnus-uu-default-dir gnus-uu-default-dir
)))
468 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
469 (gnus-uu-decode-save n file
)))
471 (defun gnus-uu-decode-binhex-view (n file
)
472 "Unbinhexes and views the current article."
474 (list current-prefix-arg
475 (read-file-name "Unbinhex, view and save in dir: "
476 gnus-uu-default-dir gnus-uu-default-dir
)))
477 (setq gnus-uu-binhex-article-name
478 (mm-make-temp-file (expand-file-name "binhex" gnus-uu-work-dir
)))
479 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
480 (gnus-uu-decode-binhex n file
)))
483 ;; Digest and forward articles
485 (defun gnus-uu-digest-mail-forward (&optional n post
)
486 "Digests and forwards all articles in this series."
488 (let ((gnus-uu-save-in-digest t
)
489 (file (mm-make-temp-file (nnheader-concat gnus-uu-tmp-dir
"forward")))
490 (message-forward-as-mime message-forward-as-mime
)
491 (mail-parse-charset gnus-newsgroup-charset
)
492 (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets
)
493 gnus-uu-digest-buffer subject from
)
494 (if (and n
(not (numberp n
)))
495 (setq message-forward-as-mime
(not message-forward-as-mime
)
497 (let ((gnus-article-reply (gnus-summary-work-articles n
)))
499 (= (length gnus-article-reply
) 1))
500 ;; The case where neither a number of articles nor a region is
502 (gnus-summary-top-thread)
503 (setq gnus-article-reply
(nreverse (gnus-uu-find-articles-matching))))
504 (gnus-setup-message 'forward
505 (setq gnus-uu-digest-from-subject nil
)
506 (setq gnus-uu-digest-buffer
507 (gnus-get-buffer-create " *gnus-uu-forward*"))
508 ;; Specify articles to be forwarded. Note that they should be
509 ;; reversed; see `gnus-uu-get-list-of-articles'.
510 (let ((gnus-newsgroup-processable (reverse gnus-article-reply
)))
511 (gnus-uu-decode-save n file
)
512 (setq gnus-article-reply gnus-newsgroup-processable
))
513 ;; Restore the value of `gnus-newsgroup-processable' to which
514 ;; it should be set when it is not `let'-bound.
515 (setq gnus-newsgroup-processable
(reverse gnus-article-reply
))
516 (switch-to-buffer gnus-uu-digest-buffer
)
517 (let ((fs gnus-uu-digest-from-subject
))
520 subject
(gnus-simplify-subject-fuzzy (cdar fs
))
522 (while (and fs
(or from subject
))
524 (unless (string= from
(caar fs
))
527 (unless (string= (gnus-simplify-subject-fuzzy (cdar fs
))
532 (setq subject
"Digested Articles"))
535 (if (gnus-news-group-p gnus-newsgroup-name
)
538 (goto-char (point-min))
539 (when (re-search-forward "^Subject: ")
540 (delete-region (point) (point-at-eol))
542 (goto-char (point-min))
543 (when (re-search-forward "^From:")
544 (delete-region (point) (point-at-eol))
546 (let ((message-forward-decoded-p t
))
547 (message-forward post t
))))
548 (setq gnus-uu-digest-from-subject nil
)))
550 (defun gnus-uu-digest-post-forward (&optional n
)
551 "Digest and forward to a newsgroup."
553 (gnus-uu-digest-mail-forward n t
))
557 (defun gnus-message-process-mark (unmarkp new-marked
)
558 (let ((old (- (length gnus-newsgroup-processable
) (length new-marked
))))
559 (gnus-message 6 "%d mark%s %s%s"
561 (if (= (length new-marked
) 1) "" "s")
562 (if unmarkp
"removed" "added")
568 (format ", %d remain marked"
569 (length gnus-newsgroup-processable
)))
571 (format ", %d already marked" old
))))))
573 (defun gnus-new-processable (unmarkp articles
)
575 (gnus-intersection gnus-newsgroup-processable articles
)
576 (gnus-set-difference articles gnus-newsgroup-processable
)))
578 (defun gnus-uu-mark-by-regexp (regexp &optional unmark
)
579 "Set the process mark on articles whose subjects match REGEXP.
580 When called interactively, prompt for REGEXP.
581 Optional UNMARK non-nil means unmark instead of mark."
582 (interactive "sMark (regexp): \nP")
584 (let* ((articles (gnus-uu-find-articles-matching regexp
))
585 (new-marked (gnus-new-processable unmark articles
)))
588 (gnus-summary-remove-process-mark (pop articles
))
589 (gnus-summary-set-process-mark (pop articles
))))
590 (gnus-message-process-mark unmark new-marked
)))
591 (gnus-summary-position-point))
593 (defun gnus-uu-unmark-by-regexp (regexp)
594 "Remove the process mark from articles whose subjects match REGEXP.
595 When called interactively, prompt for REGEXP."
596 (interactive "sUnmark (regexp): ")
597 (gnus-uu-mark-by-regexp regexp t
))
599 (defun gnus-uu-mark-series (&optional silent
)
600 "Mark the current series with the process mark."
602 (let* ((articles (gnus-uu-find-articles-matching))
603 (l (length articles
)))
605 (gnus-summary-set-process-mark (car articles
))
606 (setq articles
(cdr articles
)))
608 (gnus-message 6 "Marked %d articles" l
))
609 (gnus-summary-position-point)
612 (defun gnus-uu-mark-region (beg end
&optional unmark
)
613 "Set the process mark on all articles between point and mark."
617 (while (< (point) end
)
619 (gnus-summary-remove-process-mark (gnus-summary-article-number))
620 (gnus-summary-set-process-mark (gnus-summary-article-number)))
622 (gnus-summary-position-point))
624 (defun gnus-uu-unmark-region (beg end
)
625 "Remove the process mark from all articles between point and mark."
627 (gnus-uu-mark-region beg end t
))
629 (defun gnus-uu-mark-buffer ()
630 "Set the process mark on all articles in the buffer."
632 (gnus-uu-mark-region (point-min) (point-max)))
634 (defun gnus-uu-unmark-buffer ()
635 "Remove the process mark on all articles in the buffer."
637 (gnus-uu-mark-region (point-min) (point-max) t
))
639 (defun gnus-uu-mark-thread ()
640 "Marks all articles downwards in this thread."
642 (gnus-save-hidden-threads
643 (let ((level (gnus-summary-thread-level)))
644 (while (and (gnus-summary-set-process-mark
645 (gnus-summary-article-number))
646 (zerop (gnus-summary-next-subject 1 nil t
))
647 (> (gnus-summary-thread-level) level
)))))
648 (gnus-summary-position-point))
650 (defun gnus-uu-unmark-thread ()
651 "Unmarks all articles downwards in this thread."
653 (let ((level (gnus-summary-thread-level)))
654 (while (and (gnus-summary-remove-process-mark
655 (gnus-summary-article-number))
656 (zerop (gnus-summary-next-subject 1))
657 (> (gnus-summary-thread-level) level
))))
658 (gnus-summary-position-point))
660 (defun gnus-uu-invert-processable ()
661 "Invert the list of process-marked articles."
663 (let ((data gnus-newsgroup-data
)
667 (if (memq (setq number
(gnus-data-number (pop data
)))
668 gnus-newsgroup-processable
)
669 (gnus-summary-remove-process-mark number
)
670 (gnus-summary-set-process-mark number
)))))
671 (gnus-summary-position-point))
673 (defun gnus-uu-mark-over (&optional score
)
674 "Mark all articles with a score over SCORE (the prefix)."
676 (let ((score (or score gnus-summary-default-score
0))
677 (data gnus-newsgroup-data
))
680 (when (> (or (cdr (assq (gnus-data-number (car data
))
681 gnus-newsgroup-scored
))
682 gnus-summary-default-score
0)
684 (gnus-summary-set-process-mark (caar data
)))
685 (setq data
(cdr data
))))
686 (gnus-summary-position-point)))
688 (defun gnus-uu-mark-sparse ()
689 "Mark all series that have some articles marked."
691 (let ((marked (nreverse gnus-newsgroup-processable
))
692 subject articles total headers
)
694 (error "No articles marked with the process mark"))
695 (setq gnus-newsgroup-processable nil
)
698 (and (vectorp (setq headers
699 (gnus-summary-article-header (car marked
))))
700 (setq subject
(mail-header-subject headers
)
701 articles
(gnus-uu-find-articles-matching
702 (gnus-uu-reginize-string subject
))
703 total
(nconc total articles
)))
705 (gnus-summary-set-process-mark (car articles
))
706 (setcdr marked
(delq (car articles
) (cdr marked
)))
707 (setq articles
(cdr articles
)))
708 (setq marked
(cdr marked
)))
709 (setq gnus-newsgroup-processable
(nreverse total
)))
710 (gnus-summary-position-point)))
712 (defun gnus-uu-mark-all ()
713 "Mark all articles in \"series\" order."
715 (setq gnus-newsgroup-processable nil
)
717 (let ((data gnus-newsgroup-data
)
721 (when (and (not (memq (setq number
(gnus-data-number (car data
)))
722 gnus-newsgroup-processable
))
723 (vectorp (gnus-data-header (car data
))))
724 (gnus-summary-goto-subject number
)
725 (setq count
(+ count
(gnus-uu-mark-series t
))))
726 (setq data
(cdr data
)))
727 (gnus-message 6 "Marked %d articles" count
)))
728 (gnus-summary-position-point))
730 ;; All PostScript functions written by Erik Selberg <speed@cs.washington.edu>.
732 (defun gnus-uu-decode-postscript (&optional n
)
733 "Gets postscript of the current article."
735 (gnus-uu-decode-with-method 'gnus-uu-decode-postscript-article n
))
737 (defun gnus-uu-decode-postscript-view (&optional n
)
738 "Gets and views the current article."
740 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
741 (gnus-uu-decode-postscript n
)))
743 (defun gnus-uu-decode-postscript-and-save (n dir
)
744 "Extracts postscript and saves the current article."
746 (list current-prefix-arg
747 (file-name-as-directory
748 (read-file-name "Save in dir: "
750 gnus-uu-default-dir t
))))
751 (gnus-uu-decode-with-method 'gnus-uu-decode-postscript-article
754 (defun gnus-uu-decode-postscript-and-save-view (n dir
)
755 "Decodes, views and saves the resulting file."
757 (list current-prefix-arg
758 (read-file-name "Where do you want to save the file(s)? "
760 gnus-uu-default-dir t
)))
761 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
762 (gnus-uu-decode-postscript-and-save n dir
)))
765 ;; Internal functions.
767 (defun gnus-uu-decode-with-method (method n
&optional save not-insert
769 (gnus-uu-initialize scan
)
771 (setq gnus-uu-default-dir save
))
772 ;; Create the directory we save to.
773 (when (and scan cdir save
774 (not (file-exists-p save
)))
775 (make-directory save t
))
776 (let ((articles (gnus-uu-get-list-of-articles n
))
778 (setq files
(gnus-uu-grab-articles articles method t
))
779 (let ((gnus-current-article (car articles
)))
781 (setq files
(gnus-uu-scan-directory gnus-uu-work-dir
))))
783 (gnus-uu-save-files files save
))
784 (when (eq gnus-uu-do-not-unpack-archives nil
)
785 (setq files
(gnus-uu-unpack-files files
)))
786 (setq files
(nreverse (gnus-uu-get-actions files
)))
787 (or not-insert
(not gnus-insert-pseudo-articles
)
788 (gnus-summary-insert-pseudos files save
))))
790 (defun gnus-uu-scan-directory (dir &optional rec
)
791 "Return a list of all files under DIR."
792 (let ((files (directory-files dir t
))
794 (while (setq file
(pop files
))
795 (unless (member (file-name-nondirectory file
) '("." ".."))
796 (push (list (cons 'name file
)
797 (cons 'article gnus-current-article
))
799 (when (file-directory-p file
)
800 (setq out
(nconc (gnus-uu-scan-directory file t
) out
)))))
805 (defun gnus-uu-save-files (files dir
)
807 (let ((len (length files
))
808 (reg (concat "^" (regexp-quote gnus-uu-work-dir
)))
809 to-file file fromdir
)
810 (while (setq file
(cdr (assq 'name
(pop files
))))
811 (when (file-exists-p file
)
812 (string-match reg file
)
813 (setq fromdir
(substring file
(match-end 0)))
814 (if (file-directory-p file
)
815 (gnus-make-directory (concat dir fromdir
))
816 (setq to-file
(concat dir fromdir
))
817 (when (or (not (file-exists-p to-file
))
818 (eq gnus-uu-be-dangerous t
)
819 (and gnus-uu-be-dangerous
820 (gnus-y-or-n-p (format "%s exists; overwrite? "
822 (copy-file file to-file t t
)))))
823 (gnus-message 5 "Saved %d file%s" len
(if (= len
1) "" "s"))))
825 ;; Functions for saving and possibly digesting articles without
828 ;; Function called by gnus-uu-grab-articles to treat each article.
829 (defun gnus-uu-save-article (buffer in-state
)
831 (gnus-uu-save-separate-articles
834 (let ((coding-system-for-write mm-text-coding-system
))
836 (concat gnus-uu-saved-article-name gnus-current-article
)))
837 (cond ((eq in-state
'first
) (list gnus-uu-saved-article-name
'begin
))
838 ((eq in-state
'first-and-last
) (list gnus-uu-saved-article-name
840 ((eq in-state
'last
) (list 'end
))
841 (t (list 'middle
)))))
842 ((not gnus-uu-save-in-digest
)
845 (write-region (point-min) (point-max) gnus-uu-saved-article-name t
)
846 (cond ((eq in-state
'first
) (list gnus-uu-saved-article-name
'begin
))
847 ((eq in-state
'first-and-last
) (list gnus-uu-saved-article-name
849 ((eq in-state
'last
) (list 'end
))
850 (t (list 'middle
)))))
852 (let ((header (gnus-summary-article-header)))
853 (push (cons (mail-header-from header
)
854 (mail-header-subject header
))
855 gnus-uu-digest-from-subject
))
856 (let ((name (file-name-nondirectory gnus-uu-saved-article-name
))
857 beg subj headers headline sorthead body end-string state
)
858 (if (or (eq in-state
'first
)
859 (eq in-state
'first-and-last
))
861 (setq state
(list 'begin
))
863 (set-buffer (gnus-get-buffer-create "*gnus-uu-body*"))
866 (set-buffer (gnus-get-buffer-create "*gnus-uu-pre*"))
869 "Date: %s\nFrom: %s\nSubject: %s Digest\n\n"
870 (message-make-date) name name
))
871 (when (and message-forward-as-mime gnus-uu-digest-buffer
)
873 "<#mml type=message/rfc822>\nSubject: Topics\n\n<#/mml>\n")
875 (insert "Topics:\n")))
876 (when (not (eq in-state
'end
))
877 (setq state
(list 'middle
))))
879 (set-buffer "*gnus-uu-body*")
880 (goto-char (setq beg
(point-max)))
884 (let (buffer-read-only)
885 (set-text-properties (point-min) (point-max) nil
)
886 ;; These two are necessary for XEmacs 19.12 fascism.
887 (put-text-property (point-min) (point-max) 'invisible nil
)
888 (put-text-property (point-min) (point-max) 'intangible nil
))
889 (when (and message-forward-as-mime
890 message-forward-show-mml
891 gnus-uu-digest-buffer
)
892 (mm-enable-multibyte)
894 (goto-char (point-min))
895 (search-forward "\n\n")
896 (unless (and message-forward-as-mime gnus-uu-digest-buffer
)
897 ;; Quote all 30-dash lines.
899 (while (re-search-forward "^-" nil t
)
903 (setq body
(buffer-substring (1- (point)) (point-max)))
904 (narrow-to-region (point-min) (point))
905 (if (not (setq headers gnus-uu-digest-headers
))
906 (setq sorthead
(buffer-string))
908 (setq headline
(car headers
))
909 (setq headers
(cdr headers
))
910 (goto-char (point-min))
911 (while (re-search-forward headline nil t
)
916 (or (and (re-search-forward "^[^ \t]" nil t
)
918 (progn (forward-line 1) (point)))))))))
920 (if (and message-forward-as-mime gnus-uu-digest-buffer
)
921 (if message-forward-show-mml
923 (insert "\n<#mml type=message/rfc822>\n")
924 (insert sorthead
) (goto-char (point-max))
925 (insert body
) (goto-char (point-max))
926 (insert "\n<#/mml>\n"))
927 (let ((buf (mml-generate-new-buffer " *mml*")))
928 (with-current-buffer buf
930 (goto-char (point-min))
931 (when (re-search-forward "^Subject: \\(.*\\)$" nil t
)
932 (setq subj
(buffer-substring (match-beginning 1)
934 (goto-char (point-max))
936 (insert "\n<#part type=message/rfc822"
937 " buffer=\"" (buffer-name buf
) "\">\n")))
938 (insert sorthead
) (goto-char (point-max))
939 (insert body
) (goto-char (point-max))
940 (insert (concat "\n" (make-string 30 ?-
) "\n\n")))
942 (when (re-search-forward "^Subject: \\(.*\\)$" nil t
)
943 (setq subj
(buffer-substring (match-beginning 1) (match-end 1))))
946 (set-buffer "*gnus-uu-pre*")
947 (insert (format " %s\n" subj
)))))
948 (when (or (eq in-state
'last
)
949 (eq in-state
'first-and-last
))
950 (if (and message-forward-as-mime gnus-uu-digest-buffer
)
951 (with-current-buffer gnus-uu-digest-buffer
953 (insert-buffer-substring "*gnus-uu-pre*")
954 (goto-char (point-max))
955 (insert-buffer-substring "*gnus-uu-body*"))
957 (set-buffer "*gnus-uu-pre*")
958 (insert (format "\n\n%s\n\n" (make-string 70 ?-
)))
959 (if gnus-uu-digest-buffer
960 (with-current-buffer gnus-uu-digest-buffer
962 (insert-buffer-substring "*gnus-uu-pre*"))
963 (let ((coding-system-for-write mm-text-coding-system
))
964 (gnus-write-buffer gnus-uu-saved-article-name
))))
966 (set-buffer "*gnus-uu-body*")
967 (goto-char (point-max))
969 (concat (setq end-string
(format "End of %s Digest" name
))
971 (insert (concat (make-string (length end-string
) ?
*) "\n"))
972 (if gnus-uu-digest-buffer
973 (with-current-buffer gnus-uu-digest-buffer
974 (goto-char (point-max))
975 (insert-buffer-substring "*gnus-uu-body*"))
976 (let ((coding-system-for-write mm-text-coding-system
)
977 (file-name-coding-system nnmail-pathname-coding-system
))
979 (point-min) (point-max) gnus-uu-saved-article-name t
)))))
980 (gnus-kill-buffer "*gnus-uu-pre*")
981 (gnus-kill-buffer "*gnus-uu-body*")
983 (if (memq 'begin state
)
984 (cons gnus-uu-saved-article-name state
)
987 ;; Binhex treatment - not very advanced.
989 (defvar gnus-uu-binhex-body-line
990 "^[^:]...............................................................$")
991 (defvar gnus-uu-binhex-begin-line
992 "^:...............................................................$")
993 (defvar gnus-uu-binhex-end-line
996 (defun gnus-uu-binhex-article (buffer in-state
)
997 (let (state start-char
)
1001 (goto-char (point-min))
1002 (when (not (re-search-forward gnus-uu-binhex-begin-line nil t
))
1003 (when (not (re-search-forward gnus-uu-binhex-body-line nil t
))
1004 (setq state
(list 'wrong-type
))))
1006 (if (memq 'wrong-type state
)
1009 (setq start-char
(point))
1010 (if (looking-at gnus-uu-binhex-begin-line
)
1012 (setq state
(list 'begin
))
1013 (write-region (point-min) (point-min)
1014 gnus-uu-binhex-article-name
))
1015 (setq state
(list 'middle
)))
1016 (goto-char (point-max))
1017 (re-search-backward (concat gnus-uu-binhex-body-line
"\\|"
1018 gnus-uu-binhex-end-line
)
1020 (when (looking-at gnus-uu-binhex-end-line
)
1021 (setq state
(if (memq 'begin state
)
1026 (when (file-exists-p gnus-uu-binhex-article-name
)
1027 (mm-append-to-file start-char
(point) gnus-uu-binhex-article-name
))))
1028 (if (memq 'begin state
)
1029 (cons gnus-uu-binhex-article-name state
)
1034 (defun gnus-uu-yenc-article (buffer in-state
)
1036 (set-buffer gnus-original-article-buffer
)
1038 (let ((file-name (yenc-extract-filename))
1040 (when (not file-name
)
1041 (setq state
(list 'wrong-type
)))
1043 (if (memq 'wrong-type state
)
1045 (when (yenc-first-part-p)
1046 (setq gnus-uu-yenc-article-name
1047 (expand-file-name file-name gnus-uu-work-dir
))
1048 (push 'begin state
))
1049 (when (yenc-last-part-p)
1052 (push 'middle state
))
1053 (mm-with-unibyte-buffer
1054 (insert-buffer-substring gnus-original-article-buffer
)
1055 (yenc-decode-region (point-min) (point-max))
1056 (when (and (member 'begin state
)
1057 (file-exists-p gnus-uu-yenc-article-name
))
1058 (delete-file gnus-uu-yenc-article-name
))
1059 (mm-append-to-file (point-min) (point-max)
1060 gnus-uu-yenc-article-name
)))
1061 (if (memq 'begin state
)
1062 (cons file-name state
)
1067 (defun gnus-uu-decode-postscript-article (process-buffer in-state
)
1068 (let ((state (list 'ok
))
1069 start-char end-char file-name
)
1071 (set-buffer process-buffer
)
1072 (goto-char (point-min))
1073 (if (not (re-search-forward gnus-uu-postscript-begin-string nil t
))
1074 (setq state
(list 'wrong-type
))
1076 (setq start-char
(point))
1077 (if (not (re-search-forward gnus-uu-postscript-end-string nil t
))
1078 (setq state
(list 'wrong-type
))
1079 (setq end-char
(point))
1080 (set-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
))
1081 (insert-buffer-substring process-buffer start-char end-char
)
1082 (setq file-name
(concat gnus-uu-work-dir
1083 (cdr gnus-article-current
) ".ps"))
1084 (write-region (point-min) (point-max) file-name
)
1085 (setq state
(list file-name
'begin
'end
)))))
1091 (defun gnus-uu-get-actions (files)
1092 (let ((ofiles files
)
1095 (setq name
(cdr (assq 'name
(car files
))))
1097 (setq action
(gnus-uu-get-action name
))
1098 (setcar files
(nconc (list (if (string= action
"gnus-uu-archive")
1099 (cons 'action
"file")
1100 (cons 'action action
))
1101 (cons 'execute
(gnus-uu-command
1104 (setq files
(cdr files
)))
1107 (defun gnus-uu-get-action (file-name)
1110 (gnus-uu-choose-action
1113 gnus-uu-user-view-rules
1114 (if gnus-uu-ignore-default-view-rules
1116 gnus-uu-default-view-rules
)
1117 gnus-uu-user-view-rules-end
)))
1118 (when (and (not (string= (or action
"") "gnus-uu-archive"))
1119 gnus-uu-view-with-metamail
)
1121 (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list
))
1122 (setq action
(format "metamail -d -b -c \"%s\"" action
))))
1126 ;; Functions for treating subjects and collecting series.
1128 (defun gnus-uu-reginize-string (string)
1129 ;; Takes a string and puts a \ in front of every special character;
1130 ;; replaces the last thing that looks like "2/3" with "[0-9]+/3"
1131 ;; or, if it can't find something like that, tries "2 of 3", then
1132 ;; finally just replaces the next to last number with "[0-9]+".
1134 (set-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
))
1135 (buffer-disable-undo)
1137 (insert (regexp-quote string
))
1139 (setq case-fold-search nil
)
1142 (if (re-search-backward "\\([^0-9]\\)[0-9]+/\\([0-9]+\\)" nil t
)
1143 (replace-match "\\1[0-9]+/\\2")
1146 (if (re-search-backward "\\([^0-9]\\)[0-9]+[ \t]*of[ \t]*\\([0-9]+\\)"
1148 (replace-match "\\1[0-9]+ of \\2")
1151 (if (re-search-backward "\\([^0-9]\\)[0-9]+\\([^0-9]+\\)[0-9]+"
1153 (replace-match "\\1[0-9]+\\2[0-9]+" t nil nil nil
))))
1155 (goto-char (point-min))
1156 (while (re-search-forward "[ \t]+" nil t
)
1157 (replace-match "[ \t]+" t t
))
1161 (defun gnus-uu-get-list-of-articles (n)
1162 ;; If N is non-nil, the article numbers of the N next articles
1163 ;; will be returned.
1164 ;; If any articles have been marked as processable, they will be
1166 ;; Failing that, articles that have subjects that are part of the
1167 ;; same "series" as the current will be returned.
1171 (setq n
(prefix-numeric-value n
))
1172 (let ((backward (< n
0))
1176 (push (gnus-summary-article-number)
1178 (gnus-summary-search-forward nil nil backward
))
1180 (nreverse articles
)))
1181 (gnus-newsgroup-processable
1182 (reverse gnus-newsgroup-processable
))
1184 (gnus-uu-find-articles-matching)))))
1186 (defun gnus-uu-string< (l1 l2
)
1187 (string< (car l1
) (car l2
)))
1189 (defun gnus-uu-find-articles-matching
1190 (&optional subject only-unread do-not-translate
)
1191 ;; Finds all articles that matches the regexp SUBJECT. If it is
1192 ;; nil, the current article name will be used. If ONLY-UNREAD is
1193 ;; non-nil, only unread articles are chosen. If DO-NOT-TRANSLATE is
1194 ;; non-nil, article names are not equalized before sorting.
1195 (let ((subject (or subject
1196 (gnus-uu-reginize-string (gnus-summary-article-subject))))
1200 ;; Collect all subjects matching subject.
1201 (let ((case-fold-search t
)
1202 (data gnus-newsgroup-data
)
1206 (and (not (gnus-data-pseudo-p d
))
1207 (or (not only-unread
)
1208 (= (setq mark
(gnus-data-mark d
))
1210 (= mark gnus-ticked-mark
)
1211 (= mark gnus-dormant-mark
))
1212 (setq subj
(mail-header-subject (gnus-data-header d
)))
1213 (string-match subject subj
)
1214 (push (cons subj
(gnus-data-number d
))
1215 list-of-subjects
))))
1217 ;; Expand numbers, sort, and return the list of article
1220 (sort (gnus-uu-expand-numbers
1222 (not do-not-translate
))
1223 'gnus-uu-string
<))))))
1225 (defun gnus-uu-expand-numbers (string-list &optional translate
)
1226 ;; Takes a list of strings and "expands" all numbers in all the
1227 ;; strings. That is, this function makes all numbers equal length by
1228 ;; prepending lots of zeroes before each number. This is to ease later
1229 ;; sorting to find out what sequence the articles are supposed to be
1230 ;; decoded in. Returns the list of expanded strings.
1231 (let ((out-list string-list
)
1234 (set-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
))
1235 (buffer-disable-undo)
1238 (insert (caar string-list
))
1239 ;; Translate multiple spaces to one space.
1240 (goto-char (point-min))
1241 (while (re-search-forward "[ \t]+" nil t
)
1242 (replace-match " "))
1243 ;; Translate all characters to "a".
1244 (goto-char (point-min))
1246 (while (re-search-forward "[A-Za-z]" nil t
)
1247 (replace-match "a" t t
)))
1249 (goto-char (point-min))
1250 (while (re-search-forward "[0-9]+" nil t
)
1254 (string-to-number (buffer-substring
1255 (match-beginning 0) (match-end 0)))))))
1256 (setq string
(buffer-substring (point-min) (point-max)))
1257 (setcar (car string-list
) string
)
1258 (setq string-list
(cdr string-list
))))
1262 ;; `gnus-uu-grab-articles' is the general multi-article treatment
1263 ;; function. It takes a list of articles to be grabbed and a function
1264 ;; to apply to each article.
1266 ;; The function to be called should take two parameters. The first
1267 ;; parameter is the article buffer. The function should leave the
1268 ;; result, if any, in this buffer. Most treatment functions will just
1269 ;; generate files...
1271 ;; The second parameter is the state of the list of articles, and can
1272 ;; have four values: `first', `middle', `last' and `first-and-last'.
1274 ;; The function should return a list. The list may contain the
1275 ;; following symbols:
1276 ;; `error' if an error occurred
1277 ;; `begin' if the beginning of an encoded file has been received
1278 ;; If the list returned contains a `begin', the first element of
1279 ;; the list *must* be a string with the file name of the decoded
1281 ;; `end' if the end of an encoded file has been received
1282 ;; `middle' if the article was a body part of an encoded file
1283 ;; `wrong-type' if the article was not a part of an encoded file
1284 ;; `ok', which can be used everything is ok
1286 (defvar gnus-uu-has-been-grabbed nil
)
1288 (defun gnus-uu-unmark-list-of-grabbed (&optional dont-unmark-last-article
)
1290 (if (not (and gnus-uu-has-been-grabbed
1291 gnus-uu-unmark-articles-not-decoded
))
1293 (when dont-unmark-last-article
1294 (setq art
(car gnus-uu-has-been-grabbed
))
1295 (setq gnus-uu-has-been-grabbed
(cdr gnus-uu-has-been-grabbed
)))
1296 (while gnus-uu-has-been-grabbed
1297 (gnus-summary-tick-article (car gnus-uu-has-been-grabbed
) t
)
1298 (setq gnus-uu-has-been-grabbed
(cdr gnus-uu-has-been-grabbed
)))
1299 (when dont-unmark-last-article
1300 (setq gnus-uu-has-been-grabbed
(list art
))))))
1302 ;; This function takes a list of articles and a function to apply to
1303 ;; each article grabbed.
1305 ;; This function returns a list of files decoded if the grabbing and
1306 ;; the process-function has been successful and nil otherwise.
1307 (defun gnus-uu-grab-articles (articles process-function
1308 &optional sloppy limit no-errors
)
1309 (let ((state 'first
)
1310 (gnus-asynchronous nil
)
1311 (gnus-inhibit-treatment t
)
1312 has-been-begin article result-file result-files process-state
1313 gnus-summary-display-article-function
1314 gnus-article-prepare-hook gnus-display-mime-function
1315 article-series files
)
1317 (while (and articles
1318 (not (memq 'error process-state
))
1320 (not (memq 'end process-state
))))
1322 (setq article
(pop articles
))
1323 (when (vectorp (gnus-summary-article-header article
))
1324 (push article article-series
)
1327 (if (eq state
'first
)
1328 (setq state
'first-and-last
)
1329 (setq state
'last
)))
1331 (let ((part (gnus-uu-part-number article
)))
1332 (gnus-message 6 "Getting article %d%s..."
1333 article
(if (string= part
"") "" (concat ", " part
))))
1334 (gnus-summary-display-article article
)
1336 ;; Push the article to the processing function.
1338 (set-buffer gnus-original-article-buffer
)
1339 (let ((buffer-read-only nil
))
1341 (set-buffer gnus-summary-buffer
)
1343 (funcall process-function
1344 gnus-original-article-buffer state
)))))
1346 (gnus-summary-remove-process-mark article
)
1348 ;; If this is the beginning of a decoded file, we push it
1350 (when (or (memq 'begin process-state
)
1351 (and (or (eq state
'first
)
1352 (eq state
'first-and-last
))
1353 (memq 'ok process-state
)))
1354 (when has-been-begin
1355 ;; If there is a `result-file' here, that means that the
1356 ;; file was unsuccessfully decoded, so we delete it.
1357 (when (and result-file
1358 (file-exists-p result-file
)
1359 (not gnus-uu-be-dangerous
)
1360 (or (eq gnus-uu-be-dangerous t
)
1362 (format "Delete unsuccessfully decoded file %s? "
1364 (delete-file result-file
)))
1365 (when (memq 'begin process-state
)
1366 (setq result-file
(car process-state
)))
1367 (setq has-been-begin t
))
1369 ;; Check whether we have decoded one complete file.
1370 (when (memq 'end process-state
)
1371 (setq article-series nil
)
1372 (setq has-been-begin nil
)
1373 (if (stringp result-file
)
1374 (setq files
(list result-file
))
1375 (setq files result-file
))
1376 (setq result-file
(car files
))
1378 (push (list (cons 'name
(pop files
))
1379 (cons 'article article
))
1381 ;; Allow user-defined functions to be run on this file.
1382 (when gnus-uu-grabbed-file-functions
1383 (let ((funcs gnus-uu-grabbed-file-functions
))
1384 (unless (listp funcs
)
1385 (setq funcs
(list funcs
)))
1387 (funcall (pop funcs
) result-file
))))
1388 (setq result-file nil
)
1389 ;; Check whether we have decoded enough articles.
1390 (and limit
(= (length result-files
) limit
)
1391 (setq articles nil
)))
1393 ;; If this is the last article to be decoded, and
1394 ;; we still haven't reached the end, then we delete
1395 ;; the partially decoded file.
1396 (and (or (eq state
'last
) (eq state
'first-and-last
))
1397 (not (memq 'end process-state
))
1399 (file-exists-p result-file
)
1400 (not gnus-uu-be-dangerous
)
1401 (or (eq gnus-uu-be-dangerous t
)
1403 (format "Delete incomplete file %s? " result-file
)))
1404 (delete-file result-file
))
1406 ;; If this was a file of the wrong sort, then
1407 (when (and (or (memq 'wrong-type process-state
)
1408 (memq 'error process-state
))
1409 gnus-uu-unmark-articles-not-decoded
)
1410 (gnus-summary-tick-article article t
))
1412 ;; Set the new series state.
1413 (if (and (not has-been-begin
)
1415 (or (memq 'end process-state
)
1416 (memq 'middle process-state
)))
1418 (setq process-state
(list 'error
))
1419 (gnus-message 2 "No begin part at the beginning")
1421 (setq state
'middle
))))
1423 ;; When there are no result-files, then something must be wrong.
1427 ((not has-been-begin
)
1428 (gnus-message 2 "Wrong type file"))
1429 ((memq 'error process-state
)
1430 (gnus-message 2 "An error occurred during decoding"))
1431 ((not (or (memq 'ok process-state
)
1432 (memq 'end process-state
)))
1433 (gnus-message 2 "End of articles reached before end of file")))
1434 ;; Make unsuccessfully decoded articles unread.
1435 (when gnus-uu-unmark-articles-not-decoded
1436 (while article-series
1437 (gnus-summary-tick-article (pop article-series
) t
))))
1439 ;; The original article buffer is hosed, shoot it down.
1440 (gnus-kill-buffer gnus-original-article-buffer
)
1441 (setq gnus-current-article nil
)
1444 (defun gnus-uu-grab-view (file)
1445 "View FILE using the gnus-uu methods."
1446 (let ((action (gnus-uu-get-action file
)))
1447 (gnus-execute-command
1448 (if (string-match "%" action
)
1449 (format action file
)
1450 (concat action
" " file
))
1451 (eq gnus-view-pseudos
'not-confirm
))))
1453 (defun gnus-uu-grab-move (file)
1454 "Move FILE to somewhere."
1455 (when gnus-uu-default-dir
1456 (let ((to-file (concat (file-name-as-directory gnus-uu-default-dir
)
1457 (file-name-nondirectory file
))))
1458 (rename-file file to-file
)
1459 (unless (file-exists-p file
)
1460 (make-symbolic-link to-file file
)))))
1462 (defun gnus-uu-part-number (article)
1463 (let* ((header (gnus-summary-article-header article
))
1464 (subject (and header
(mail-header-subject header
)))
1467 (while (string-match "[0-9]+/[0-9]+\\|[0-9]+[ \t]+of[ \t]+[0-9]+"
1469 (setq part
(match-string 0 subject
))
1470 (setq subject
(substring subject
(match-end 0)))))
1472 (while (string-match "[0-9]+[^0-9]+[0-9]+" subject
)
1473 (setq part
(match-string 0 subject
))
1474 (setq subject
(substring subject
(match-end 0)))))
1477 (defun gnus-uu-uudecode-sentinel (process event
)
1478 (delete-process (get-process process
)))
1480 (defun gnus-uu-uustrip-article (process-buffer in-state
)
1481 ;; Uudecodes a file asynchronously.
1483 (set-buffer process-buffer
)
1484 (let ((state (list 'wrong-type
))
1485 process-connection-type case-fold-search buffer-read-only
1487 (goto-char (point-min))
1489 ;; Deal with ^M at the end of the lines.
1490 (when gnus-uu-kill-carriage-return
1492 (while (search-forward "\r" nil t
)
1493 (delete-backward-char 1))))
1495 (while (or (re-search-forward gnus-uu-begin-string nil t
)
1496 (re-search-forward gnus-uu-body-line nil t
))
1497 (setq state
(list 'ok
))
1498 ;; Ok, we are at the first uucoded line.
1500 (setq start-char
(point))
1502 (if (not (looking-at gnus-uu-begin-string
))
1503 (setq state
(list 'middle
))
1504 ;; This is the beginning of a uuencoded article.
1505 ;; We replace certain characters that could make things messy.
1506 (setq gnus-uu-file-name
1508 mm-file-name-rewrite-functions
1509 (file-name-nondirectory (match-string 1))))
1510 (replace-match (concat "begin 644 " gnus-uu-file-name
) t t
)
1512 ;; Remove any non gnus-uu-body-line right after start.
1514 (while (and (not (eobp))
1515 (not (looking-at gnus-uu-body-line
)))
1518 ;; If a process is running, we kill it.
1519 (when (and gnus-uu-uudecode-process
1520 (memq (process-status gnus-uu-uudecode-process
)
1522 (delete-process gnus-uu-uudecode-process
)
1523 (gnus-uu-unmark-list-of-grabbed t
))
1525 ;; Start a new uudecoding process.
1526 (let ((cdir default-directory
))
1529 (cd gnus-uu-work-dir
)
1530 (setq gnus-uu-uudecode-process
1533 (gnus-get-buffer-create gnus-uu-output-buffer-name
)
1534 shell-file-name shell-command-switch
1535 (format "cd %s %s uudecode" gnus-uu-work-dir
1536 gnus-shell-command-separator
))))
1538 (set-process-sentinel
1539 gnus-uu-uudecode-process
'gnus-uu-uudecode-sentinel
)
1540 (setq state
(list 'begin
))
1541 (push (concat gnus-uu-work-dir gnus-uu-file-name
) files
))
1543 ;; We look for the end of the thing to be decoded.
1544 (if (re-search-forward gnus-uu-end-string nil t
)
1546 (goto-char (point-max))
1547 (re-search-backward gnus-uu-body-line nil t
))
1551 (when gnus-uu-uudecode-process
1552 (when (memq (process-status gnus-uu-uudecode-process
) '(run stop
))
1553 ;; Try to correct mishandled uucode.
1554 (when gnus-uu-correct-stripped-uucode
1555 (gnus-uu-check-correct-stripped-uucode start-char
(point)))
1556 (gnus-run-hooks 'gnus-uu-pre-uudecode-hook
)
1558 ;; Send the text to the process.
1560 (process-send-region
1561 gnus-uu-uudecode-process start-char
(point))
1564 (delete-process gnus-uu-uudecode-process
)
1565 (gnus-message 2 "gnus-uu: Couldn't uudecode")
1566 (setq state
(list 'wrong-type
)))))
1568 (if (memq 'end state
)
1570 ;; Send an EOF, just in case.
1572 (process-send-eof gnus-uu-uudecode-process
))
1573 (while (memq (process-status gnus-uu-uudecode-process
)
1575 (accept-process-output gnus-uu-uudecode-process
1)))
1576 (when (or (not gnus-uu-uudecode-process
)
1577 (not (memq (process-status gnus-uu-uudecode-process
)
1579 (setq state
(list 'wrong-type
)))))))
1581 (if (memq 'begin state
)
1582 (cons (if (= (length files
) 1) (car files
) files
) state
)
1585 (defvar gnus-uu-unshar-warning
1588 Shell archives are an archaic method of bundling files for distribution
1589 across computer networks. During the unpacking process, arbitrary commands
1590 are executed on your system, and all kinds of nasty things can happen.
1591 Please examine the archive very carefully before you instruct Emacs to
1592 unpack it. You can browse the archive buffer using \\[scroll-other-window].
1594 If you are unsure what to do, please answer \"no\"."
1595 "Text of warning message displayed by `gnus-uu-unshar-article'.
1596 Make sure that this text consists only of few text lines. Otherwise,
1597 Gnus might fail to display all of it.")
1600 ;; This function is used by `gnus-uu-grab-articles' to treat
1601 ;; a shared article.
1602 (defun gnus-uu-unshar-article (process-buffer in-state
)
1603 (let ((state (list 'ok
))
1606 (set-buffer process-buffer
)
1607 (goto-char (point-min))
1608 (if (not (re-search-forward gnus-uu-shar-begin-string nil t
))
1609 (setq state
(list 'wrong-type
))
1610 (save-window-excursion
1612 (switch-to-buffer (current-buffer))
1613 (delete-other-windows)
1614 (let ((buffer (get-buffer-create (generate-new-buffer-name
1618 (with-current-buffer buffer
1619 (insert (substitute-command-keys
1620 gnus-uu-unshar-warning
))
1621 (goto-char (point-min))
1622 (display-buffer buffer
)
1623 (yes-or-no-p "This is a shell archive, unshar it? "))
1624 (kill-buffer buffer
))
1625 (setq state
(list 'error
))))))
1626 (unless (memq 'error state
)
1628 (setq start-char
(point))
1629 (call-process-region
1630 start-char
(point-max) shell-file-name nil
1631 (gnus-get-buffer-create gnus-uu-output-buffer-name
) nil
1632 shell-command-switch
1633 (concat "cd " gnus-uu-work-dir
" "
1634 gnus-shell-command-separator
" sh")))))
1637 ;; Returns the name of what the shar file is going to unpack.
1638 (defun gnus-uu-find-name-in-shar ()
1639 (let ((oldpoint (point))
1641 (goto-char (point-min))
1642 (when (re-search-forward gnus-uu-shar-name-marker nil t
)
1643 (setq res
(buffer-substring (match-beginning 1) (match-end 1))))
1644 (goto-char oldpoint
)
1647 ;; `gnus-uu-choose-action' chooses what action to perform given the name
1648 ;; and `gnus-uu-file-action-list'. Returns either nil if no action is
1649 ;; found, or the name of the command to run if such a rule is found.
1650 (defun gnus-uu-choose-action (file-name file-action-list
&optional no-ignore
)
1651 (let ((action-list (copy-sequence file-action-list
))
1652 (case-fold-search t
)
1657 (and gnus-uu-ignore-files-by-name
1658 (string-match gnus-uu-ignore-files-by-name file-name
)))
1660 (and gnus-uu-ignore-files-by-type
1661 (string-match gnus-uu-ignore-files-by-type
1662 (or (gnus-uu-choose-action
1663 file-name gnus-uu-ext-to-mime-list t
)
1665 (while (not (or (eq action-list
()) action
))
1666 (setq rule
(car action-list
))
1667 (setq action-list
(cdr action-list
))
1668 (when (string-match (car rule
) file-name
)
1669 (setq action
(cadr rule
)))))
1672 (defun gnus-uu-treat-archive (file-path)
1673 ;; Unpacks an archive. Returns t if unpacking is successful.
1674 (let ((did-unpack t
)
1676 (setq action
(gnus-uu-choose-action
1677 file-path
(append gnus-uu-user-archive-rules
1678 (if gnus-uu-ignore-default-archive-rules
1680 gnus-uu-default-archive-rules
))))
1683 (error "No unpackers for the file %s" file-path
))
1685 (string-match "/[^/]*$" file-path
)
1686 (setq dir
(substring file-path
0 (match-beginning 0)))
1688 (when (member action gnus-uu-destructive-archivers
)
1689 (copy-file file-path
(concat file-path
"~") t
))
1691 (setq command
(format "cd %s ; %s" dir
(gnus-uu-command action file-path
)))
1694 (set-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
))
1697 (gnus-message 5 "Unpacking: %s..." (gnus-uu-command action file-path
))
1699 (if (eq 0 (call-process shell-file-name nil
1700 (gnus-get-buffer-create gnus-uu-output-buffer-name
)
1701 nil shell-command-switch command
))
1703 (gnus-message 2 "Error during unpacking of archive")
1704 (setq did-unpack nil
))
1706 (when (member action gnus-uu-destructive-archivers
)
1707 (rename-file (concat file-path
"~") file-path t
))
1711 (defun gnus-uu-dir-files (dir)
1712 (let ((dirs (directory-files dir t
"[^/][^\\.][^\\.]?$"))
1715 (if (file-directory-p (setq file
(car dirs
)))
1716 (setq files
(append files
(gnus-uu-dir-files file
)))
1718 (setq dirs
(cdr dirs
)))
1721 (defun gnus-uu-unpack-files (files &optional ignore
)
1722 ;; Go through FILES and look for files to unpack.
1723 (let* ((totfiles (gnus-uu-ls-r gnus-uu-work-dir
))
1727 (setq file
(cdr (assq 'name
(car files
))))
1728 (when (and (not (member file ignore
))
1729 (equal (gnus-uu-get-action (file-name-nondirectory file
))
1731 (push file did-unpack
)
1732 (unless (gnus-uu-treat-archive file
)
1733 (gnus-message 2 "Error during unpacking of %s" file
))
1734 (let* ((newfiles (gnus-uu-ls-r gnus-uu-work-dir
))
1737 (unless (member (car nfiles
) totfiles
)
1738 (push (list (cons 'name
(car nfiles
))
1739 (cons 'original file
))
1741 (setq nfiles
(cdr nfiles
)))
1742 (setq totfiles newfiles
)))
1743 (setq files
(cdr files
)))
1745 (gnus-uu-unpack-files ofiles
(append did-unpack ignore
))
1748 (defun gnus-uu-ls-r (dir)
1749 (let* ((files (gnus-uu-directory-files dir t
))
1752 (when (file-directory-p (car files
))
1753 (setq ofiles
(delete (car files
) ofiles
))
1754 (setq ofiles
(append ofiles
(gnus-uu-ls-r (car files
)))))
1755 (setq files
(cdr files
)))
1760 (defun gnus-uu-directory-files (dir &optional full
)
1761 (let (files out file
)
1762 (setq files
(directory-files dir full
))
1764 (setq file
(car files
))
1765 (setq files
(cdr files
))
1766 (unless (member (file-name-nondirectory file
) '("." ".."))
1768 (setq out
(nreverse out
))
1771 (defun gnus-uu-check-correct-stripped-uucode (start end
)
1773 (let (found beg length
)
1774 (unless gnus-uu-correct-stripped-uucode
1777 (if (re-search-forward " \\|`" end t
)
1782 (when (looking-at "\n")
1787 (unless (looking-at (concat gnus-uu-begin-string
"\\|"
1788 gnus-uu-end-string
))
1790 (setq length
(- (point-at-eol) (point-at-bol))))
1795 (unless (= length
(- (point) beg
))
1796 (insert (make-string (- length
(- (point) beg
)) ?
))))
1797 (forward-line 1)))))))
1799 (defvar gnus-uu-tmp-alist nil
)
1801 (defun gnus-uu-initialize (&optional scan
)
1804 (when (setq entry
(assoc gnus-newsgroup-name gnus-uu-tmp-alist
))
1805 (if (file-exists-p (cdr entry
))
1806 (setq gnus-uu-work-dir
(cdr entry
))
1807 (setq gnus-uu-tmp-alist
(delq entry gnus-uu-tmp-alist
))
1810 (setq gnus-uu-tmp-dir
(file-name-as-directory
1811 (expand-file-name gnus-uu-tmp-dir
)))
1812 (if (not (file-directory-p gnus-uu-tmp-dir
))
1813 (error "Temp directory %s doesn't exist" gnus-uu-tmp-dir
)
1814 (when (not (file-writable-p gnus-uu-tmp-dir
))
1815 (error "Temp directory %s can't be written to"
1818 (setq gnus-uu-work-dir
1819 (mm-make-temp-file (concat gnus-uu-tmp-dir
"gnus") 'dir
))
1820 (gnus-set-file-modes gnus-uu-work-dir
448)
1821 (setq gnus-uu-work-dir
(file-name-as-directory gnus-uu-work-dir
))
1822 (push (cons gnus-newsgroup-name gnus-uu-work-dir
)
1823 gnus-uu-tmp-alist
))))
1826 ;; Kills the temporary uu buffers, kills any processes, etc.
1827 (defun gnus-uu-clean-up ()
1829 (and gnus-uu-uudecode-process
1830 (memq (process-status (or gnus-uu-uudecode-process
"nevair"))
1832 (delete-process gnus-uu-uudecode-process
))
1833 (when (setq buf
(get-buffer gnus-uu-output-buffer-name
))
1834 (kill-buffer buf
))))
1836 ;; Inputs an action and a filename and returns a full command, making sure
1837 ;; that the filename will be treated as a single argument when the shell
1838 ;; executes the command.
1839 (defun gnus-uu-command (action file
)
1840 (let ((quoted-file (shell-quote-argument file
)))
1841 (if (string-match "%s" action
)
1842 (format action quoted-file
)
1843 (concat action
" " quoted-file
))))
1845 (defun gnus-uu-delete-work-dir (&optional dir
)
1846 "Delete recursively all files and directories under `gnus-uu-work-dir'."
1848 (gnus-message 7 "Deleting directory %s..." dir
)
1849 (setq dir gnus-uu-work-dir
))
1851 (file-exists-p dir
))
1852 (let ((files (directory-files dir t nil t
))
1854 (while (setq file
(pop files
))
1855 (unless (member (file-name-nondirectory file
) '("." ".."))
1856 (if (file-directory-p file
)
1857 (gnus-uu-delete-work-dir file
)
1858 (gnus-message 9 "Deleting file %s..." file
)
1861 (error (gnus-message 3 "Deleting file %s failed... %s" file err
))))))
1863 (delete-directory dir
)
1864 (error (gnus-message 3 "Deleting directory %s failed... %s" file err
))))
1865 (gnus-message 7 "")))
1869 (add-hook 'gnus-exit-group-hook
'gnus-uu-clean-up
)
1870 (add-hook 'gnus-exit-group-hook
'gnus-uu-delete-work-dir
)
1875 ;;; uuencoded posting
1878 ;; Any function that is to be used as and encoding method will take two
1879 ;; parameters: PATH-NAME and FILE-NAME. (E.g. "/home/gaga/spiral.jpg"
1880 ;; and "spiral.jpg", respectively.) The function should return nil if
1881 ;; the encoding wasn't successful.
1882 (defcustom gnus-uu-post-encode-method
'gnus-uu-post-encode-uuencode
1883 "Function used for encoding binary files.
1884 There are three functions supplied with gnus-uu for encoding files:
1885 `gnus-uu-post-encode-uuencode', which does straight uuencoding;
1886 `gnus-uu-post-encode-mime', which encodes with base64 and adds MIME
1887 headers; and `gnus-uu-post-encode-mime-uuencode', which encodes with
1888 uuencode and adds MIME headers."
1889 :group
'gnus-extract-post
1890 :type
'(radio (function-item gnus-uu-post-encode-uuencode
)
1891 (function-item gnus-uu-post-encode-mime
)
1892 (function-item gnus-uu-post-encode-mime-uuencode
)
1893 (function :tag
"Other")))
1895 (defcustom gnus-uu-post-include-before-composing nil
1896 "Non-nil means that gnus-uu will ask for a file to encode before you compose the article.
1897 If this variable is t, you can either include an encoded file with
1898 \\[gnus-uu-post-insert-binary-in-article] or have one included for you when you post the article."
1899 :group
'gnus-extract-post
1902 (defcustom gnus-uu-post-length
990
1903 "Maximum length of an article.
1904 The encoded file will be split into how many articles it takes to
1905 post the entire file."
1906 :group
'gnus-extract-post
1909 (defcustom gnus-uu-post-threaded nil
1910 "Non-nil means that gnus-uu will post the encoded file in a thread.
1911 This may not be smart, as no other decoder I have seen are able to
1912 follow threads when collecting uuencoded articles. (Well, I have seen
1913 one package that does that - gnus-uu, but somehow, I don't think that
1914 counts...) The default is nil."
1915 :group
'gnus-extract-post
1918 (defcustom gnus-uu-post-separate-description t
1919 "Non-nil means that the description will be posted in a separate article.
1920 The first article will typically be numbered (0/x). If this variable
1921 is nil, the description the user enters will be included at the
1922 beginning of the first article, which will be numbered (1/x). Default
1924 :group
'gnus-extract-post
1927 (defvar gnus-uu-post-binary-separator
"--binary follows this line--")
1928 (defvar gnus-uu-post-message-id nil
)
1929 (defvar gnus-uu-post-inserted-file-name nil
)
1930 (defvar gnus-uu-winconf-post-news nil
)
1932 (defun gnus-uu-post-news ()
1933 "Compose an article and post an encoded file."
1935 (setq gnus-uu-post-inserted-file-name nil
)
1936 (setq gnus-uu-winconf-post-news
(current-window-configuration))
1938 (gnus-summary-post-news)
1940 (let ((map (make-sparse-keymap)))
1941 (set-keymap-parent map
(current-local-map))
1942 (use-local-map map
))
1943 ;;(local-set-key "\C-c\C-c" 'gnus-summary-edit-article-done)
1944 (local-set-key "\C-c\C-c" 'gnus-uu-post-news-inews
)
1945 (local-set-key "\C-c\C-s" 'gnus-uu-post-news-inews
)
1946 (local-set-key "\C-c\C-i" 'gnus-uu-post-insert-binary-in-article
)
1948 (when gnus-uu-post-include-before-composing
1949 (save-excursion (setq gnus-uu-post-inserted-file-name
1950 (gnus-uu-post-insert-binary)))))
1952 (defun gnus-uu-post-insert-binary-in-article ()
1953 "Inserts an encoded file in the buffer.
1954 The user will be asked for a file name."
1957 (setq gnus-uu-post-inserted-file-name
(gnus-uu-post-insert-binary))))
1959 ;; Encodes with uuencode and substitutes all spaces with backticks.
1960 (defun gnus-uu-post-encode-uuencode (path file-name
)
1961 (when (gnus-uu-post-encode-file "uuencode" path file-name
)
1962 (goto-char (point-min))
1964 (while (search-forward " " nil t
)
1965 (replace-match "`"))
1968 ;; Encodes with uuencode and adds MIME headers.
1969 (defun gnus-uu-post-encode-mime-uuencode (path file-name
)
1970 (when (gnus-uu-post-encode-uuencode path file-name
)
1971 (gnus-uu-post-make-mime file-name
"x-uue")
1974 ;; Encodes with base64 and adds MIME headers
1975 (defun gnus-uu-post-encode-mime (path file-name
)
1976 (when (eq 0 (call-process shell-file-name nil t nil shell-command-switch
1977 (format "%s %s -o %s" "mmencode" path file-name
)))
1978 (gnus-uu-post-make-mime file-name
"base64")
1981 ;; Adds MIME headers.
1982 (defun gnus-uu-post-make-mime (file-name encoding
)
1983 (goto-char (point-min))
1984 (insert (format "Content-Type: %s; name=\"%s\"\n"
1985 (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list
)
1987 (insert (format "Content-Transfer-Encoding: %s\n\n" encoding
))
1989 (set-buffer gnus-message-buffer
)
1990 (goto-char (point-min))
1991 (re-search-forward (concat "^" (regexp-quote mail-header-separator
) "$"))
1993 (narrow-to-region (point-min) (point))
1994 (unless (mail-fetch-field "mime-version")
1996 (insert "MIME-Version: 1.0\n"))
1999 ;; Encodes a file PATH with COMMAND, leaving the result in the
2001 (defun gnus-uu-post-encode-file (command path file-name
)
2002 (eq 0 (call-process shell-file-name nil t nil shell-command-switch
2003 (format "%s %s %s" command path file-name
))))
2005 (defun gnus-uu-post-news-inews ()
2006 "Posts the composed news article and encoded file.
2007 If no file has been included, the user will be asked for a file."
2012 (if gnus-uu-post-inserted-file-name
2013 (setq file-name gnus-uu-post-inserted-file-name
)
2014 (setq file-name
(gnus-uu-post-insert-binary)))
2016 (gnus-uu-post-encoded file-name gnus-uu-post-threaded
))
2017 (setq gnus-uu-post-inserted-file-name nil
)
2018 (when gnus-uu-winconf-post-news
2019 (set-window-configuration gnus-uu-winconf-post-news
)))
2021 ;; Asks for a file to encode, encodes it and inserts the result in
2022 ;; the current buffer. Returns the file name the user gave.
2023 (defun gnus-uu-post-insert-binary ()
2024 (let ((uuencode-buffer-name "*uuencode buffer*")
2025 file-path uubuf file-name
)
2027 (setq file-path
(read-file-name
2028 "What file do you want to encode? "))
2029 (when (not (file-exists-p file-path
))
2030 (error "%s: No such file" file-path
))
2032 (goto-char (point-max))
2033 (insert (format "\n%s\n" gnus-uu-post-binary-separator
))
2035 ;; #### Unix-specific?
2036 (when (string-match "^~/" file-path
)
2037 (setq file-path
(concat "$HOME" (substring file-path
1))))
2038 ;; #### Unix-specific?
2039 (if (string-match "/[^/]*$" file-path
)
2040 (setq file-name
(substring file-path
(1+ (match-beginning 0))))
2041 (setq file-name file-path
))
2045 (set-buffer (setq uubuf
2046 (gnus-get-buffer-create uuencode-buffer-name
)))
2048 (funcall gnus-uu-post-encode-method file-path file-name
))
2049 (insert-buffer-substring uubuf
)
2050 (error "Encoding unsuccessful"))
2051 (kill-buffer uubuf
))
2054 ;; Posts the article and all of the encoded file.
2055 (defun gnus-uu-post-encoded (file-name &optional threaded
)
2056 (let ((send-buffer-name "*uuencode send buffer*")
2057 (encoded-buffer-name "*encoded buffer*")
2058 (top-string "[ cut here %s (%s %d/%d) %s gnus-uu ]")
2059 (separator (concat mail-header-separator
"\n\n"))
2060 uubuf length parts header i end beg
2061 beg-line minlen post-buf whole-len beg-binary end-binary
)
2063 (setq post-buf
(current-buffer))
2065 (goto-char (point-min))
2066 (when (not (re-search-forward
2067 (if gnus-uu-post-separate-description
2068 (concat "^" (regexp-quote gnus-uu-post-binary-separator
)
2070 (concat "^" (regexp-quote mail-header-separator
) "$"))
2072 (error "Internal error: No binary/header separator"))
2075 (setq beg-binary
(point))
2076 (setq end-binary
(point-max))
2079 (set-buffer (setq uubuf
(gnus-get-buffer-create encoded-buffer-name
)))
2081 (insert-buffer-substring post-buf beg-binary end-binary
)
2082 (goto-char (point-min))
2083 (setq length
(count-lines (point-min) (point-max)))
2084 (setq parts
(/ length gnus-uu-post-length
))
2085 (unless (< (% length gnus-uu-post-length
) 4)
2088 (when gnus-uu-post-separate-description
2090 (delete-region (point) (point-max))
2092 (goto-char (point-min))
2094 (concat "^" (regexp-quote mail-header-separator
) "$") nil t
)
2095 (setq header
(buffer-substring (point-min) (point-at-bol)))
2097 (goto-char (point-min))
2098 (when gnus-uu-post-separate-description
2099 (when (re-search-forward "^Subject: " nil t
)
2101 (insert (format " (0/%d)" parts
)))
2104 (setq gnus-uu-post-message-id
(message-fetch-field "message-id")))
2109 (while (not (> i parts
))
2110 (set-buffer (gnus-get-buffer-create send-buffer-name
))
2113 (when (and threaded gnus-uu-post-message-id
)
2114 (insert "References: " gnus-uu-post-message-id
"\n"))
2117 (- 62 (length (format top-string
"" file-name i parts
""))))
2118 (when (> 1 (setq minlen
(/ whole-len
2)))
2123 (make-string minlen ?-
)
2126 (if (= 0 (% whole-len
2)) (1- minlen
) minlen
) ?-
)))
2128 (goto-char (point-min))
2129 (when (re-search-forward "^Subject: " nil t
)
2131 (insert (format " (%d/%d)" i parts
)))
2133 (goto-char (point-max))
2138 (goto-char (point-max))
2139 (forward-line gnus-uu-post-length
))
2140 (when (and (= (1+ i
) parts
) (< (count-lines (point) (point-max)) 4))
2143 (insert-buffer-substring uubuf beg end
)
2144 (insert beg-line
"\n")
2147 (goto-char (point-min))
2149 (concat "^" (regexp-quote mail-header-separator
) "$") nil t
)
2152 (when (re-search-forward
2153 (concat "^" (regexp-quote gnus-uu-post-binary-separator
) "$")
2159 (let (message-sent-message-via)
2162 (setq gnus-uu-post-message-id
2163 (concat (message-fetch-field "references") " "
2164 (message-fetch-field "message-id"))))))
2166 (gnus-kill-buffer send-buffer-name
)
2167 (gnus-kill-buffer encoded-buffer-name
)
2169 (when (not gnus-uu-post-separate-description
)
2170 (set-buffer-modified-p nil
)
2175 ;;; arch-tag: 05312384-0a83-4720-9a58-b3160b888853
2176 ;;; gnus-uu.el ends here