1 ;;; gnus-uu.el --- extract (uu)encoded files in Gnus
3 ;; Copyright (C) 1985-1987, 1993-1998, 2000-2012
4 ;; 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 of the License, or
15 ;; (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>.
29 (eval-when-compile (require 'cl
))
38 (defgroup gnus-extract nil
39 "Extracting encoded files."
43 (defgroup gnus-extract-view nil
44 "Viewing extracted files."
47 (defgroup gnus-extract-archive nil
48 "Extracting encoded archives."
51 (defgroup gnus-extract-post nil
52 "Extracting encoded archives."
53 :prefix
"gnus-uu-post"
56 ;; Default viewing action rules
58 (defcustom gnus-uu-default-view-rules
59 '(("\\.te?xt$\\|\\.doc$\\|read.*me\\|\\.c?$\\|\\.h$\\|\\.bat$\\|\\.asm$\\|makefile" "cat %s | sed 's/\r$//'")
60 ("\\.pas$" "cat %s | sed 's/\r$//'")
61 ("\\.[1-9]$" "groff -mandoc -Tascii %s | sed s/\b.//g")
62 ("\\.\\(jpe?g\\|gif\\|tiff?\\|p[pgb]m\\|xwd\\|xbm\\|pcx\\)$" "display")
63 ("\\.tga$" "tgatoppm %s | ee -")
64 ("\\.\\(wav\\|aiff\\|hcom\\|u[blw]\\|s[bfw]\\|voc\\|smp\\)$"
65 "sox -v .5 %s -t .au -u - > /dev/audio")
66 ("\\.au$" "cat %s > /dev/audio")
67 ("\\.midi?$" "playmidi -f")
69 ("\\.ps$" "ghostview")
71 ("\\.html$" "xmosaic")
72 ("\\.mpe?g$" "mpeg_play")
73 ("\\.\\(flc\\|fli\\|rle\\|iff\\|pfx\\|avi\\|sme\\|rpza\\|dl\\|qt\\|rsrc\\|mov\\)$" "xanim")
74 ("\\.\\(tar\\|arj\\|zip\\|zoo\\|arc\\|gz\\|Z\\|lzh\\|ar\\|lha\\)$"
76 "*Default actions to be taken when the user asks to view a file.
77 To change the behavior, you can either edit this variable or set
78 `gnus-uu-user-view-rules' to something useful.
82 To make gnus-uu use 'xli' to display JPEG and GIF files, put the
83 following in your .emacs file:
85 (setq gnus-uu-user-view-rules '((\"jpg$\\\\|gif$\" \"xli\")))
87 Both these variables are lists of lists with two string elements. The
88 first string is a regular expression. If the file name matches this
89 regular expression, the command in the second string is executed with
90 the file as an argument.
92 If the command string contains \"%s\", the file name will be inserted
93 at that point in the command string. If there's no \"%s\" in the
94 command string, the file name will be appended to the command string
97 There are several user variables to tailor the behavior of gnus-uu to
98 your needs. First we have `gnus-uu-user-view-rules', which is the
99 variable gnus-uu first consults when trying to decide how to view a
100 file. If this variable contains no matches, gnus-uu examines the
101 default rule variable provided in this package. If gnus-uu finds no
102 match here, it uses `gnus-uu-user-view-rules-end' to try to make a
104 :group
'gnus-extract-view
105 :type
'(repeat (group regexp
(string :tag
"Command"))))
107 (defcustom gnus-uu-user-view-rules nil
108 "What actions are to be taken to view a file.
109 See the documentation on the `gnus-uu-default-view-rules' variable for
111 :group
'gnus-extract-view
112 :type
'(repeat (group regexp
(string :tag
"Command"))))
114 (defcustom gnus-uu-user-view-rules-end
116 "*What actions are to be taken if no rule matched the file name.
117 See the documentation on the `gnus-uu-default-view-rules' variable for
119 :group
'gnus-extract-view
120 :type
'(repeat (group regexp
(string :tag
"Command"))))
122 ;; Default unpacking commands
124 (defcustom gnus-uu-default-archive-rules
125 '(("\\.tar$" "tar xf")
126 ("\\.zip$" "unzip -o")
128 ("\\.arj$" "unarj x")
130 ("\\.\\(lzh\\|lha\\)$" "lha x")
131 ("\\.Z$" "uncompress")
133 ("\\.arc$" "arc -x"))
134 "*See `gnus-uu-user-archive-rules'."
135 :group
'gnus-extract-archive
136 :type
'(repeat (group regexp
(string :tag
"Command"))))
138 (defvar gnus-uu-destructive-archivers
139 (list "uncompress" "gunzip"))
141 (defcustom gnus-uu-user-archive-rules nil
142 "A list that can be set to override the default archive unpacking commands.
143 To use, for instance, 'untar' to unpack tar files and 'zip -x' to
144 unpack zip files, say the following:
145 (setq gnus-uu-user-archive-rules
146 '((\"\\\\.tar$\" \"untar\")
147 (\"\\\\.zip$\" \"zip -x\")))"
148 :group
'gnus-extract-archive
149 :type
'(repeat (group regexp
(string :tag
"Command"))))
151 (defcustom gnus-uu-ignore-files-by-name nil
152 "*A regular expression saying what files should not be viewed based on name.
153 If, for instance, you want gnus-uu to ignore all .au and .wav files,
154 you could say something like
156 (setq gnus-uu-ignore-files-by-name \"\\\\.au$\\\\|\\\\.wav$\")
158 Note that this variable can be used in conjunction with the
159 `gnus-uu-ignore-files-by-type' variable."
161 :type
'(choice (const :tag
"off" nil
)
162 (regexp :format
"%v")))
164 (defcustom gnus-uu-ignore-files-by-type nil
165 "*A regular expression saying what files that shouldn't be viewed, based on MIME file type.
166 If, for instance, you want gnus-uu to ignore all audio files and all mpegs,
167 you could say something like
169 (setq gnus-uu-ignore-files-by-type \"audio/\\\\|video/mpeg\")
171 Note that this variable can be used in conjunction with the
172 `gnus-uu-ignore-files-by-name' variable."
174 :type
'(choice (const :tag
"off" nil
)
175 (regexp :format
"%v")))
177 ;; Pseudo-MIME support
179 (defconst gnus-uu-ext-to-mime-list
180 '(("\\.gif$" "image/gif")
181 ("\\.jpe?g$" "image/jpeg")
182 ("\\.tiff?$" "image/tiff")
183 ("\\.xwd$" "image/xwd")
184 ("\\.pbm$" "image/pbm")
185 ("\\.pgm$" "image/pgm")
186 ("\\.ppm$" "image/ppm")
187 ("\\.xbm$" "image/xbm")
188 ("\\.pcx$" "image/pcx")
189 ("\\.tga$" "image/tga")
190 ("\\.ps$" "image/postscript")
191 ("\\.fli$" "video/fli")
192 ("\\.wav$" "audio/wav")
193 ("\\.aiff$" "audio/aiff")
194 ("\\.hcom$" "audio/hcom")
195 ("\\.voc$" "audio/voc")
196 ("\\.smp$" "audio/smp")
197 ("\\.mod$" "audio/mod")
198 ("\\.dvi$" "image/dvi")
199 ("\\.mpe?g$" "video/mpeg")
200 ("\\.au$" "audio/basic")
201 ("\\.\\(te?xt\\|doc\\|c\\|h\\)$" "text/plain")
202 ("\\.\\(c\\|h\\)$" "text/source")
203 ("read.*me" "text/plain")
204 ("\\.html$" "text/html")
205 ("\\.bat$" "text/bat")
206 ("\\.[1-6]$" "text/man")
207 ("\\.flc$" "video/flc")
208 ("\\.rle$" "video/rle")
209 ("\\.pfx$" "video/pfx")
210 ("\\.avi$" "video/avi")
211 ("\\.sme$" "video/sme")
212 ("\\.rpza$" "video/prza")
213 ("\\.dl$" "video/dl")
214 ("\\.qt$" "video/qt")
215 ("\\.rsrc$" "video/rsrc")
216 ("\\..*$" "unknown/unknown")))
218 ;; Various variables users may set
220 (defcustom gnus-uu-tmp-dir
221 (cond ((fboundp 'temp-directory
) (temp-directory))
222 ((boundp 'temporary-file-directory
) temporary-file-directory
)
224 "*Variable saying where gnus-uu is to do its work.
225 Default is \"/tmp/\"."
229 (defcustom gnus-uu-do-not-unpack-archives nil
230 "*Non-nil means that gnus-uu won't peek inside archives looking for files to display.
232 :group
'gnus-extract-archive
235 (defcustom gnus-uu-ignore-default-view-rules nil
236 "*Non-nil means that gnus-uu will ignore the default viewing rules.
237 Only the user viewing rules will be consulted. Default is nil."
238 :group
'gnus-extract-view
241 (defcustom gnus-uu-grabbed-file-functions nil
242 "Functions run on each file after successful decoding.
243 They will be called with the name of the file as the argument.
244 Likely functions you can use in this list are `gnus-uu-grab-view'
245 and `gnus-uu-grab-move'."
247 :options
'(gnus-uu-grab-view gnus-uu-grab-move
)
250 (defcustom gnus-uu-ignore-default-archive-rules nil
251 "*Non-nil means that gnus-uu will ignore the default archive unpacking commands.
252 Only the user unpacking commands will be consulted. Default is nil."
253 :group
'gnus-extract-archive
256 (defcustom gnus-uu-kill-carriage-return t
257 "*Non-nil means that gnus-uu will strip all carriage returns from articles.
262 (defcustom gnus-uu-view-with-metamail nil
263 "*Non-nil means that files will be viewed with metamail.
264 The gnus-uu viewing functions will be ignored and gnus-uu will try
265 to guess at a content-type based on file name suffixes. Default
270 (defcustom gnus-uu-unmark-articles-not-decoded nil
271 "*Non-nil means that gnus-uu will mark articles that were unsuccessfully decoded as unread.
276 (defcustom gnus-uu-correct-stripped-uucode nil
277 "*Non-nil means that gnus-uu will *try* to fix uuencoded files that have had trailing spaces deleted.
282 (defcustom gnus-uu-save-in-digest nil
283 "*Non-nil means that gnus-uu, when asked to save without decoding, will save in digests.
284 If this variable is nil, gnus-uu will just save everything in a
285 file without any embellishments. The digesting almost conforms to RFC1153 -
286 no easy way to specify any meaningful volume and issue numbers were found,
287 so I simply dropped them."
291 (defcustom gnus-uu-pre-uudecode-hook nil
292 "Hook run before sending a message to uudecode."
296 (defcustom gnus-uu-digest-headers
297 '("^Date:" "^From:" "^To:" "^Cc:" "^Subject:" "^Message-ID:" "^Keywords:"
298 "^Summary:" "^References:" "^Content-Type:" "^Content-Transfer-Encoding:"
299 "^MIME-Version:" "^Content-Disposition:" "^Content-Description:"
301 "*List of regexps to match headers included in digested messages.
302 The headers will be included in the sequence they are matched. If nil
303 include all headers."
305 :type
'(repeat regexp
))
307 (defcustom gnus-uu-save-separate-articles nil
308 "*Non-nil means that gnus-uu will save articles in separate files."
312 (defcustom gnus-uu-be-dangerous
'ask
313 "*Specifies what to do if unusual situations arise during decoding.
314 If nil, be as conservative as possible. If t, ignore things that
315 didn't work, and overwrite existing files. Otherwise, ask each time."
317 :type
'(choice (const :tag
"conservative" nil
)
318 (const :tag
"ask" ask
)
319 (const :tag
"liberal" t
)))
321 ;; Internal variables
323 (defvar gnus-uu-saved-article-name nil
)
325 (defvar gnus-uu-begin-string
"^begin[ \t]+0?[0-7][0-7][0-7][ \t]+\\(.*\\)$")
326 (defvar gnus-uu-end-string
"^end[ \t]*$")
328 (defvar gnus-uu-body-line
"^M")
330 (while (> (setq i
(1- i
)) 0)
331 (setq gnus-uu-body-line
(concat gnus-uu-body-line
"[^a-z]")))
332 (setq gnus-uu-body-line
(concat gnus-uu-body-line
".?$")))
334 ;"^M.............................................................?$"
336 (defvar gnus-uu-shar-begin-string
"^#! */bin/sh")
338 (defvar gnus-uu-shar-name-marker
339 "begin 0?[0-7][0-7][0-7][ \t]+\\(\\(\\w\\|[.\\:]\\)*\\b\\)")
341 (defvar gnus-uu-postscript-begin-string
"^%!PS-")
342 (defvar gnus-uu-postscript-end-string
"^%%EOF$")
344 (defvar gnus-uu-file-name nil
)
345 (defvar gnus-uu-uudecode-process nil
)
346 (defvar gnus-uu-binhex-article-name nil
)
347 (defvar gnus-uu-yenc-article-name nil
)
349 (defvar gnus-uu-work-dir nil
)
351 (defvar gnus-uu-output-buffer-name
" *Gnus UU Output*")
353 (defvar gnus-uu-default-dir gnus-article-save-directory
)
354 (defvar gnus-uu-digest-from-subject nil
)
355 (defvar gnus-uu-digest-buffer nil
)
359 (defun gnus-uu-decode-uu (&optional n
)
360 "Uudecodes the current article."
362 (gnus-uu-decode-with-method 'gnus-uu-uustrip-article n
))
364 (defun gnus-uu-decode-uu-and-save (n dir
)
365 "Decodes and saves the resulting file."
367 (list current-prefix-arg
368 (file-name-as-directory
369 (read-directory-name "Uudecode and save in dir: "
371 gnus-uu-default-dir t
))))
372 (gnus-uu-decode-with-method 'gnus-uu-uustrip-article n dir nil nil t
))
374 (defun gnus-uu-decode-unshar (&optional n
)
375 "Unshars the current article."
377 (gnus-uu-decode-with-method 'gnus-uu-unshar-article n nil nil
'scan t
))
379 (defun gnus-uu-decode-unshar-and-save (n dir
)
380 "Unshars and saves the current article."
382 (list current-prefix-arg
383 (file-name-as-directory
384 (read-directory-name "Unshar and save in dir: "
386 gnus-uu-default-dir t
))))
387 (gnus-uu-decode-with-method 'gnus-uu-unshar-article n dir nil
'scan t
))
389 (defun gnus-uu-decode-save (n file
)
390 "Saves the current article."
392 (list current-prefix-arg
393 (if gnus-uu-save-separate-articles
395 "Save articles in dir: " gnus-uu-default-dir gnus-uu-default-dir
)
397 "Save article in file: " gnus-uu-default-dir gnus-uu-default-dir
))))
398 (setq gnus-uu-saved-article-name file
)
399 (gnus-uu-decode-with-method 'gnus-uu-save-article n nil t
))
401 (defun gnus-uu-decode-binhex (n dir
)
402 "Unbinhexes the current article."
404 (list current-prefix-arg
405 (file-name-as-directory
406 (read-directory-name "Unbinhex and save in dir: "
408 gnus-uu-default-dir
))))
409 (setq gnus-uu-binhex-article-name
410 (mm-make-temp-file (expand-file-name "binhex" gnus-uu-work-dir
)))
411 (gnus-uu-decode-with-method 'gnus-uu-binhex-article n dir
))
413 (defun gnus-uu-decode-yenc (n dir
)
414 "Decode the yEnc-encoded current article."
416 (list current-prefix-arg
417 (file-name-as-directory
418 (read-directory-name "yEnc decode and save in dir: "
420 gnus-uu-default-dir
))))
421 (setq gnus-uu-yenc-article-name nil
)
422 (gnus-uu-decode-with-method 'gnus-uu-yenc-article n dir nil t
))
424 (defun gnus-uu-decode-uu-view (&optional n
)
425 "Uudecodes and views the current article."
427 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
428 (gnus-uu-decode-uu n
)))
430 (defun gnus-uu-decode-uu-and-save-view (n dir
)
431 "Decodes, views and saves the resulting file."
433 (list current-prefix-arg
434 (read-file-name "Uudecode, view and save in dir: "
436 gnus-uu-default-dir t
)))
437 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
438 (gnus-uu-decode-uu-and-save n dir
)))
440 (defun gnus-uu-decode-unshar-view (&optional n
)
441 "Unshars and views the current article."
443 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
444 (gnus-uu-decode-unshar n
)))
446 (defun gnus-uu-decode-unshar-and-save-view (n dir
)
447 "Unshars and saves the current article."
449 (list current-prefix-arg
450 (read-file-name "Unshar, view and save in dir: "
452 gnus-uu-default-dir t
)))
453 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
454 (gnus-uu-decode-unshar-and-save n dir
)))
456 (defun gnus-uu-decode-save-view (n file
)
457 "Saves and views the current article."
459 (list current-prefix-arg
460 (if gnus-uu-save-separate-articles
461 (read-directory-name "Save articles in dir: "
462 gnus-uu-default-dir gnus-uu-default-dir
)
463 (read-file-name "Save articles in file: "
464 gnus-uu-default-dir gnus-uu-default-dir
))))
465 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
466 (gnus-uu-decode-save n file
)))
468 (defun gnus-uu-decode-binhex-view (n file
)
469 "Unbinhexes and views the current article."
471 (list current-prefix-arg
472 (read-file-name "Unbinhex, view and save in dir: "
473 gnus-uu-default-dir gnus-uu-default-dir
)))
474 (setq gnus-uu-binhex-article-name
475 (mm-make-temp-file (expand-file-name "binhex" gnus-uu-work-dir
)))
476 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
477 (gnus-uu-decode-binhex n file
)))
480 ;; Digest and forward articles
482 (defun gnus-uu-digest-mail-forward (&optional n post
)
483 "Digests and forwards all articles in this series."
485 (let ((gnus-uu-save-in-digest t
)
486 (file (mm-make-temp-file (nnheader-concat gnus-uu-tmp-dir
"forward")))
487 (message-forward-as-mime message-forward-as-mime
)
488 (mail-parse-charset gnus-newsgroup-charset
)
489 (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets
)
490 gnus-uu-digest-buffer subject from
)
491 (if (and n
(not (numberp n
)))
492 (setq message-forward-as-mime
(not message-forward-as-mime
)
494 (let ((gnus-article-reply (gnus-summary-work-articles n
)))
496 (= (length gnus-article-reply
) 1))
497 ;; The case where neither a number of articles nor a region is
499 (gnus-summary-top-thread)
500 (setq gnus-article-reply
(nreverse (gnus-uu-find-articles-matching))))
501 (gnus-setup-message 'forward
502 (setq gnus-uu-digest-from-subject nil
)
503 (setq gnus-uu-digest-buffer
504 (gnus-get-buffer-create " *gnus-uu-forward*"))
505 ;; Specify articles to be forwarded. Note that they should be
506 ;; reversed; see `gnus-uu-get-list-of-articles'.
507 (let ((gnus-newsgroup-processable (reverse gnus-article-reply
)))
508 (gnus-uu-decode-save n file
)
509 (setq gnus-article-reply gnus-newsgroup-processable
))
510 ;; Restore the value of `gnus-newsgroup-processable' to which
511 ;; it should be set when it is not `let'-bound.
512 (setq gnus-newsgroup-processable
(reverse gnus-article-reply
))
513 (switch-to-buffer gnus-uu-digest-buffer
)
514 (let ((fs gnus-uu-digest-from-subject
))
517 subject
(gnus-simplify-subject-fuzzy (cdar fs
))
519 (while (and fs
(or from subject
))
521 (unless (string= from
(caar fs
))
524 (unless (string= (gnus-simplify-subject-fuzzy (cdar fs
))
529 (setq subject
"Digested Articles"))
532 (if (gnus-news-group-p gnus-newsgroup-name
)
535 (goto-char (point-min))
536 (when (re-search-forward "^Subject: ")
537 (delete-region (point) (point-at-eol))
539 (goto-char (point-min))
540 (when (re-search-forward "^From:")
541 (delete-region (point) (point-at-eol))
543 (let ((message-forward-decoded-p t
))
544 (message-forward post t
))))
545 (setq gnus-uu-digest-from-subject nil
)))
547 (defun gnus-uu-digest-post-forward (&optional n
)
548 "Digest and forward to a newsgroup."
550 (gnus-uu-digest-mail-forward n t
))
554 (defun gnus-message-process-mark (unmarkp new-marked
)
555 (let ((old (- (length gnus-newsgroup-processable
) (length new-marked
))))
556 (gnus-message 6 "%d mark%s %s%s"
558 (if (= (length new-marked
) 1) "" "s")
559 (if unmarkp
"removed" "added")
565 (format ", %d remain marked"
566 (length gnus-newsgroup-processable
)))
568 (format ", %d already marked" old
))))))
570 (defun gnus-new-processable (unmarkp articles
)
572 (gnus-intersection gnus-newsgroup-processable articles
)
573 (gnus-set-difference articles gnus-newsgroup-processable
)))
575 (defun gnus-uu-mark-by-regexp (regexp &optional unmark
)
576 "Set the process mark on articles whose subjects match REGEXP.
577 When called interactively, prompt for REGEXP.
578 Optional UNMARK non-nil means unmark instead of mark."
579 (interactive "sMark (regexp): \nP")
581 (let* ((articles (gnus-uu-find-articles-matching regexp
))
582 (new-marked (gnus-new-processable unmark articles
)))
585 (gnus-summary-remove-process-mark (pop articles
))
586 (gnus-summary-set-process-mark (pop articles
))))
587 (gnus-message-process-mark unmark new-marked
)))
588 (gnus-summary-position-point))
590 (defun gnus-uu-unmark-by-regexp (regexp)
591 "Remove the process mark from articles whose subjects match REGEXP.
592 When called interactively, prompt for REGEXP."
593 (interactive "sUnmark (regexp): ")
594 (gnus-uu-mark-by-regexp regexp t
))
596 (defun gnus-uu-mark-series (&optional silent
)
597 "Mark the current series with the process mark."
599 (let* ((articles (gnus-uu-find-articles-matching))
600 (l (length articles
)))
602 (gnus-summary-set-process-mark (car articles
))
603 (setq articles
(cdr articles
)))
605 (gnus-message 6 "Marked %d articles" l
))
606 (gnus-summary-position-point)
609 (defun gnus-uu-mark-region (beg end
&optional unmark
)
610 "Set the process mark on all articles between point and mark."
614 (while (< (point) end
)
616 (gnus-summary-remove-process-mark (gnus-summary-article-number))
617 (gnus-summary-set-process-mark (gnus-summary-article-number)))
619 (gnus-summary-position-point))
621 (defun gnus-uu-unmark-region (beg end
)
622 "Remove the process mark from all articles between point and mark."
624 (gnus-uu-mark-region beg end t
))
626 (defun gnus-uu-mark-buffer ()
627 "Set the process mark on all articles in the buffer."
629 (gnus-uu-mark-region (point-min) (point-max)))
631 (defun gnus-uu-unmark-buffer ()
632 "Remove the process mark on all articles in the buffer."
634 (gnus-uu-mark-region (point-min) (point-max) t
))
636 (defun gnus-uu-mark-thread ()
637 "Marks all articles downwards in this thread."
639 (gnus-save-hidden-threads
640 (let ((level (gnus-summary-thread-level)))
641 (while (and (gnus-summary-set-process-mark
642 (gnus-summary-article-number))
643 (zerop (gnus-summary-next-subject 1 nil t
))
644 (> (gnus-summary-thread-level) level
)))))
645 (gnus-summary-position-point))
647 (defun gnus-uu-unmark-thread ()
648 "Unmarks all articles downwards in this thread."
650 (let ((level (gnus-summary-thread-level)))
651 (while (and (gnus-summary-remove-process-mark
652 (gnus-summary-article-number))
653 (zerop (gnus-summary-next-subject 1))
654 (> (gnus-summary-thread-level) level
))))
655 (gnus-summary-position-point))
657 (defun gnus-uu-invert-processable ()
658 "Invert the list of process-marked articles."
660 (let ((data gnus-newsgroup-data
)
664 (if (memq (setq number
(gnus-data-number (pop data
)))
665 gnus-newsgroup-processable
)
666 (gnus-summary-remove-process-mark number
)
667 (gnus-summary-set-process-mark number
)))))
668 (gnus-summary-position-point))
670 (defun gnus-uu-mark-over (&optional score
)
671 "Mark all articles with a score over SCORE (the prefix)."
673 (let ((score (or score gnus-summary-default-score
0))
674 (data gnus-newsgroup-data
))
677 (when (> (or (cdr (assq (gnus-data-number (car data
))
678 gnus-newsgroup-scored
))
679 gnus-summary-default-score
0)
681 (gnus-summary-set-process-mark (caar data
)))
682 (setq data
(cdr data
))))
683 (gnus-summary-position-point)))
685 (defun gnus-uu-mark-sparse ()
686 "Mark all series that have some articles marked."
688 (let ((marked (nreverse gnus-newsgroup-processable
))
689 subject articles total headers
)
691 (error "No articles marked with the process mark"))
692 (setq gnus-newsgroup-processable nil
)
695 (and (vectorp (setq headers
696 (gnus-summary-article-header (car marked
))))
697 (setq subject
(mail-header-subject headers
)
698 articles
(gnus-uu-find-articles-matching
699 (gnus-uu-reginize-string subject
))
700 total
(nconc total articles
)))
702 (gnus-summary-set-process-mark (car articles
))
703 (setcdr marked
(delq (car articles
) (cdr marked
)))
704 (setq articles
(cdr articles
)))
705 (setq marked
(cdr marked
)))
706 (setq gnus-newsgroup-processable
(nreverse total
)))
707 (gnus-summary-position-point)))
709 (defun gnus-uu-mark-all ()
710 "Mark all articles in \"series\" order."
712 (setq gnus-newsgroup-processable nil
)
714 (let ((data gnus-newsgroup-data
)
718 (when (and (not (memq (setq number
(gnus-data-number (car data
)))
719 gnus-newsgroup-processable
))
720 (vectorp (gnus-data-header (car data
))))
721 (gnus-summary-goto-subject number
)
722 (setq count
(+ count
(gnus-uu-mark-series t
))))
723 (setq data
(cdr data
)))
724 (gnus-message 6 "Marked %d articles" count
)))
725 (gnus-summary-position-point))
727 ;; All PostScript functions written by Erik Selberg <speed@cs.washington.edu>.
729 (defun gnus-uu-decode-postscript (&optional n
)
730 "Gets PostScript of the current article."
732 (gnus-uu-decode-with-method 'gnus-uu-decode-postscript-article n
))
734 (defun gnus-uu-decode-postscript-view (&optional n
)
735 "Gets and views the current article."
737 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
738 (gnus-uu-decode-postscript n
)))
740 (defun gnus-uu-decode-postscript-and-save (n dir
)
741 "Extracts PostScript and saves the current article."
743 (list current-prefix-arg
744 (file-name-as-directory
745 (read-directory-name "Save in dir: "
747 gnus-uu-default-dir t
))))
748 (gnus-uu-decode-with-method 'gnus-uu-decode-postscript-article
751 (defun gnus-uu-decode-postscript-and-save-view (n dir
)
752 "Decodes, views and saves the resulting file."
754 (list current-prefix-arg
755 (read-file-name "Where do you want to save the file(s)? "
757 gnus-uu-default-dir t
)))
758 (let ((gnus-view-pseudos (or gnus-view-pseudos
'automatic
)))
759 (gnus-uu-decode-postscript-and-save n dir
)))
762 ;; Internal functions.
764 (defun gnus-uu-decode-with-method (method n
&optional save not-insert
766 (gnus-uu-initialize scan
)
768 (setq gnus-uu-default-dir save
))
769 ;; Create the directory we save to.
770 (when (and scan cdir save
771 (not (file-exists-p save
)))
772 (make-directory save t
))
773 (let ((articles (gnus-uu-get-list-of-articles n
))
775 (setq files
(gnus-uu-grab-articles articles method t
))
776 (let ((gnus-current-article (car articles
)))
778 (setq files
(gnus-uu-scan-directory gnus-uu-work-dir
))))
780 (gnus-uu-save-files files save
))
781 (when (eq gnus-uu-do-not-unpack-archives nil
)
782 (setq files
(gnus-uu-unpack-files files
)))
783 (setq files
(nreverse (gnus-uu-get-actions files
)))
784 (or not-insert
(not gnus-insert-pseudo-articles
)
785 (gnus-summary-insert-pseudos files save
))))
787 (defun gnus-uu-scan-directory (dir &optional rec
)
788 "Return a list of all files under DIR."
789 (let ((files (directory-files dir t
))
791 (while (setq file
(pop files
))
792 (unless (member (file-name-nondirectory file
) '("." ".."))
793 (push (list (cons 'name file
)
794 (cons 'article gnus-current-article
))
796 (when (file-directory-p file
)
797 (setq out
(nconc (gnus-uu-scan-directory file t
) out
)))))
802 (defun gnus-uu-save-files (files dir
)
804 (let ((len (length files
))
805 (reg (concat "^" (regexp-quote gnus-uu-work-dir
)))
806 to-file file fromdir
)
807 (while (setq file
(cdr (assq 'name
(pop files
))))
808 (when (file-exists-p file
)
809 (string-match reg file
)
810 (setq fromdir
(substring file
(match-end 0)))
811 (if (file-directory-p file
)
812 (gnus-make-directory (concat dir fromdir
))
813 (setq to-file
(concat dir fromdir
))
814 (when (or (not (file-exists-p to-file
))
815 (eq gnus-uu-be-dangerous t
)
816 (and gnus-uu-be-dangerous
817 (gnus-y-or-n-p (format "%s exists; overwrite? "
819 (copy-file file to-file t t
)))))
820 (gnus-message 5 "Saved %d file%s" len
(if (= len
1) "" "s"))))
822 ;; Functions for saving and possibly digesting articles without
825 ;; Function called by gnus-uu-grab-articles to treat each article.
826 (defun gnus-uu-save-article (buffer in-state
)
828 (gnus-uu-save-separate-articles
829 (with-current-buffer buffer
830 (let ((coding-system-for-write mm-text-coding-system
))
832 (concat gnus-uu-saved-article-name gnus-current-article
)))
833 (cond ((eq in-state
'first
) (list gnus-uu-saved-article-name
'begin
))
834 ((eq in-state
'first-and-last
) (list gnus-uu-saved-article-name
836 ((eq in-state
'last
) (list 'end
))
837 (t (list 'middle
)))))
838 ((not gnus-uu-save-in-digest
)
839 (with-current-buffer buffer
840 (write-region (point-min) (point-max) gnus-uu-saved-article-name t
)
841 (cond ((eq in-state
'first
) (list gnus-uu-saved-article-name
'begin
))
842 ((eq in-state
'first-and-last
) (list gnus-uu-saved-article-name
844 ((eq in-state
'last
) (list 'end
))
845 (t (list 'middle
)))))
847 (let ((header (gnus-summary-article-header)))
848 (push (cons (mail-header-from header
)
849 (mail-header-subject header
))
850 gnus-uu-digest-from-subject
))
851 (let ((name (file-name-nondirectory gnus-uu-saved-article-name
))
852 beg subj headers headline sorthead body end-string state
)
853 (if (or (eq in-state
'first
)
854 (eq in-state
'first-and-last
))
856 (setq state
(list 'begin
))
857 (with-current-buffer (gnus-get-buffer-create "*gnus-uu-body*")
859 (with-current-buffer (gnus-get-buffer-create "*gnus-uu-pre*")
862 "Date: %s\nFrom: %s\nSubject: %s Digest\n\n"
863 (message-make-date) name name
))
864 (when (and message-forward-as-mime gnus-uu-digest-buffer
)
866 "<#mml type=message/rfc822>\nSubject: Topics\n\n<#/mml>\n")
868 (insert "Topics:\n")))
869 (when (not (eq in-state
'end
))
870 (setq state
(list 'middle
))))
871 (with-current-buffer "*gnus-uu-body*"
872 (goto-char (setq beg
(point-max)))
876 (let (buffer-read-only)
877 (set-text-properties (point-min) (point-max) nil
)
878 ;; These two are necessary for XEmacs 19.12 fascism.
879 (put-text-property (point-min) (point-max) 'invisible nil
)
880 (put-text-property (point-min) (point-max) 'intangible nil
))
881 (when (and message-forward-as-mime
882 message-forward-show-mml
883 gnus-uu-digest-buffer
)
884 (mm-enable-multibyte)
886 (goto-char (point-min))
887 (search-forward "\n\n")
888 (unless (and message-forward-as-mime gnus-uu-digest-buffer
)
889 ;; Quote all 30-dash lines.
891 (while (re-search-forward "^-" nil t
)
895 (setq body
(buffer-substring (1- (point)) (point-max)))
896 (narrow-to-region (point-min) (point))
897 (if (not (setq headers gnus-uu-digest-headers
))
898 (setq sorthead
(buffer-string))
900 (setq headline
(car headers
))
901 (setq headers
(cdr headers
))
902 (goto-char (point-min))
903 (while (re-search-forward headline nil t
)
908 (or (and (re-search-forward "^[^ \t]" nil t
)
910 (progn (forward-line 1) (point)))))))))
912 (if (and message-forward-as-mime gnus-uu-digest-buffer
)
913 (if message-forward-show-mml
915 (insert "\n<#mml type=message/rfc822>\n")
916 (insert sorthead
) (goto-char (point-max))
917 (insert body
) (goto-char (point-max))
918 (insert "\n<#/mml>\n"))
919 (let ((buf (mml-generate-new-buffer " *mml*")))
920 (with-current-buffer buf
922 (goto-char (point-min))
923 (when (re-search-forward "^Subject: \\(.*\\)$" nil t
)
924 (setq subj
(buffer-substring (match-beginning 1)
926 (goto-char (point-max))
928 (insert "\n<#part type=message/rfc822"
929 " buffer=\"" (buffer-name buf
) "\">\n")))
930 (insert sorthead
) (goto-char (point-max))
931 (insert body
) (goto-char (point-max))
932 (insert (concat "\n" (make-string 30 ?-
) "\n\n")))
934 (when (re-search-forward "^Subject: \\(.*\\)$" nil t
)
935 (setq subj
(buffer-substring (match-beginning 1) (match-end 1))))
937 (with-current-buffer "*gnus-uu-pre*"
938 (insert (format " %s\n" subj
)))))
939 (when (or (eq in-state
'last
)
940 (eq in-state
'first-and-last
))
941 (if (and message-forward-as-mime gnus-uu-digest-buffer
)
942 (with-current-buffer gnus-uu-digest-buffer
944 (insert-buffer-substring "*gnus-uu-pre*")
945 (goto-char (point-max))
946 (insert-buffer-substring "*gnus-uu-body*"))
947 (with-current-buffer "*gnus-uu-pre*"
948 (insert (format "\n\n%s\n\n" (make-string 70 ?-
)))
949 (if gnus-uu-digest-buffer
950 (with-current-buffer gnus-uu-digest-buffer
952 (insert-buffer-substring "*gnus-uu-pre*"))
953 (let ((coding-system-for-write mm-text-coding-system
))
954 (gnus-write-buffer gnus-uu-saved-article-name
))))
955 (with-current-buffer "*gnus-uu-body*"
956 (goto-char (point-max))
958 (concat (setq end-string
(format "End of %s Digest" name
))
960 (insert (concat (make-string (length end-string
) ?
*) "\n"))
961 (if gnus-uu-digest-buffer
962 (with-current-buffer gnus-uu-digest-buffer
963 (goto-char (point-max))
964 (insert-buffer-substring "*gnus-uu-body*"))
965 (let ((coding-system-for-write mm-text-coding-system
)
966 (file-name-coding-system nnmail-pathname-coding-system
))
968 (point-min) (point-max) gnus-uu-saved-article-name t
)))))
969 (gnus-kill-buffer "*gnus-uu-pre*")
970 (gnus-kill-buffer "*gnus-uu-body*")
972 (if (memq 'begin state
)
973 (cons gnus-uu-saved-article-name state
)
976 ;; Binhex treatment - not very advanced.
978 (defvar gnus-uu-binhex-body-line
979 "^[^:]...............................................................$")
980 (defvar gnus-uu-binhex-begin-line
981 "^:...............................................................$")
982 (defvar gnus-uu-binhex-end-line
985 (defun gnus-uu-binhex-article (buffer in-state
)
986 (let (state start-char
)
987 (with-current-buffer buffer
989 (goto-char (point-min))
990 (when (not (re-search-forward gnus-uu-binhex-begin-line nil t
))
991 (when (not (re-search-forward gnus-uu-binhex-body-line nil t
))
992 (setq state
(list 'wrong-type
))))
994 (if (memq 'wrong-type state
)
997 (setq start-char
(point))
998 (if (looking-at gnus-uu-binhex-begin-line
)
1000 (setq state
(list 'begin
))
1001 (write-region (point-min) (point-min)
1002 gnus-uu-binhex-article-name
))
1003 (setq state
(list 'middle
)))
1004 (goto-char (point-max))
1005 (re-search-backward (concat gnus-uu-binhex-body-line
"\\|"
1006 gnus-uu-binhex-end-line
)
1008 (when (looking-at gnus-uu-binhex-end-line
)
1009 (setq state
(if (memq 'begin state
)
1014 (when (file-exists-p gnus-uu-binhex-article-name
)
1015 (mm-append-to-file start-char
(point) gnus-uu-binhex-article-name
))))
1016 (if (memq 'begin state
)
1017 (cons gnus-uu-binhex-article-name state
)
1022 (defun gnus-uu-yenc-article (buffer in-state
)
1023 (with-current-buffer gnus-original-article-buffer
1025 (let ((file-name (yenc-extract-filename))
1027 (when (not file-name
)
1028 (setq state
(list 'wrong-type
)))
1030 (if (memq 'wrong-type state
)
1032 (when (yenc-first-part-p)
1033 (setq gnus-uu-yenc-article-name
1034 (expand-file-name file-name gnus-uu-work-dir
))
1035 (push 'begin state
))
1036 (when (yenc-last-part-p)
1039 (push 'middle state
))
1040 (mm-with-unibyte-buffer
1041 (insert-buffer-substring gnus-original-article-buffer
)
1042 (yenc-decode-region (point-min) (point-max))
1043 (when (and (member 'begin state
)
1044 (file-exists-p gnus-uu-yenc-article-name
))
1045 (delete-file gnus-uu-yenc-article-name
))
1046 (mm-append-to-file (point-min) (point-max)
1047 gnus-uu-yenc-article-name
)))
1048 (if (memq 'begin state
)
1049 (cons file-name state
)
1054 (defun gnus-uu-decode-postscript-article (process-buffer in-state
)
1055 (let ((state (list 'ok
))
1056 start-char end-char file-name
)
1057 (with-current-buffer process-buffer
1058 (goto-char (point-min))
1059 (if (not (re-search-forward gnus-uu-postscript-begin-string nil t
))
1060 (setq state
(list 'wrong-type
))
1062 (setq start-char
(point))
1063 (if (not (re-search-forward gnus-uu-postscript-end-string nil t
))
1064 (setq state
(list 'wrong-type
))
1065 (setq end-char
(point))
1066 (set-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
))
1067 (insert-buffer-substring process-buffer start-char end-char
)
1068 (setq file-name
(concat gnus-uu-work-dir
1069 (cdr gnus-article-current
) ".ps"))
1070 (write-region (point-min) (point-max) file-name
)
1071 (setq state
(list file-name
'begin
'end
)))))
1077 (defun gnus-uu-get-actions (files)
1078 (let ((ofiles files
)
1081 (setq name
(cdr (assq 'name
(car files
))))
1083 (setq action
(gnus-uu-get-action name
))
1084 (setcar files
(nconc (list (if (string= action
"gnus-uu-archive")
1085 (cons 'action
"file")
1086 (cons 'action action
))
1087 (cons 'execute
(gnus-uu-command
1090 (setq files
(cdr files
)))
1093 (defun gnus-uu-get-action (file-name)
1096 (gnus-uu-choose-action
1099 gnus-uu-user-view-rules
1100 (if gnus-uu-ignore-default-view-rules
1102 gnus-uu-default-view-rules
)
1103 gnus-uu-user-view-rules-end
)))
1104 (when (and (not (string= (or action
"") "gnus-uu-archive"))
1105 gnus-uu-view-with-metamail
)
1107 (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list
))
1108 (setq action
(format "metamail -d -b -c \"%s\"" action
))))
1112 ;; Functions for treating subjects and collecting series.
1114 (defun gnus-uu-reginize-string (string)
1115 ;; Takes a string and puts a \ in front of every special character;
1116 ;; replaces the last thing that looks like "2/3" with "[0-9]+/3"
1117 ;; or, if it can't find something like that, tries "2 of 3", then
1118 ;; finally just replaces the next to last number with "[0-9]+".
1119 (with-current-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
)
1120 (buffer-disable-undo)
1122 (insert (regexp-quote string
))
1124 (setq case-fold-search nil
)
1127 (if (re-search-backward "\\([^0-9]\\)[0-9]+/\\([0-9]+\\)" nil t
)
1128 (replace-match "\\1[0-9]+/\\2")
1131 (if (re-search-backward "\\([^0-9]\\)[0-9]+[ \t]*of[ \t]*\\([0-9]+\\)"
1133 (replace-match "\\1[0-9]+ of \\2")
1136 (if (re-search-backward "\\([^0-9]\\)[0-9]+\\([^0-9]+\\)[0-9]+"
1138 (replace-match "\\1[0-9]+\\2[0-9]+" t nil nil nil
))))
1140 (goto-char (point-min))
1141 (while (re-search-forward "[ \t]+" nil t
)
1142 (replace-match "[ \t]+" t t
))
1146 (defun gnus-uu-get-list-of-articles (n)
1147 ;; If N is non-nil, the article numbers of the N next articles
1148 ;; will be returned.
1149 ;; If any articles have been marked as processable, they will be
1151 ;; Failing that, articles that have subjects that are part of the
1152 ;; same "series" as the current will be returned.
1156 (setq n
(prefix-numeric-value n
))
1157 (let ((backward (< n
0))
1161 (push (gnus-summary-article-number)
1163 (gnus-summary-search-forward nil nil backward
))
1165 (nreverse articles
)))
1166 (gnus-newsgroup-processable
1167 (reverse gnus-newsgroup-processable
))
1169 (gnus-uu-find-articles-matching)))))
1171 (defun gnus-uu-string< (l1 l2
)
1172 (string< (car l1
) (car l2
)))
1174 (defun gnus-uu-find-articles-matching
1175 (&optional subject only-unread do-not-translate
)
1176 ;; Finds all articles that matches the regexp SUBJECT. If it is
1177 ;; nil, the current article name will be used. If ONLY-UNREAD is
1178 ;; non-nil, only unread articles are chosen. If DO-NOT-TRANSLATE is
1179 ;; non-nil, article names are not equalized before sorting.
1180 (let ((subject (or subject
1181 (gnus-uu-reginize-string (gnus-summary-article-subject))))
1185 ;; Collect all subjects matching subject.
1186 (let ((case-fold-search t
)
1187 (data gnus-newsgroup-data
)
1191 (and (not (gnus-data-pseudo-p d
))
1192 (or (not only-unread
)
1193 (= (setq mark
(gnus-data-mark d
))
1195 (= mark gnus-ticked-mark
)
1196 (= mark gnus-dormant-mark
))
1197 (setq subj
(mail-header-subject (gnus-data-header d
)))
1198 (string-match subject subj
)
1199 (push (cons subj
(gnus-data-number d
))
1200 list-of-subjects
))))
1202 ;; Expand numbers, sort, and return the list of article
1205 (sort (gnus-uu-expand-numbers
1207 (not do-not-translate
))
1208 'gnus-uu-string
<))))))
1210 (defun gnus-uu-expand-numbers (string-list &optional translate
)
1211 ;; Takes a list of strings and "expands" all numbers in all the
1212 ;; strings. That is, this function makes all numbers equal length by
1213 ;; prepending lots of zeroes before each number. This is to ease later
1214 ;; sorting to find out what sequence the articles are supposed to be
1215 ;; decoded in. Returns the list of expanded strings.
1216 (let ((out-list string-list
)
1218 (with-current-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
)
1219 (buffer-disable-undo)
1222 (insert (caar string-list
))
1223 ;; Translate multiple spaces to one space.
1224 (goto-char (point-min))
1225 (while (re-search-forward "[ \t]+" nil t
)
1226 (replace-match " "))
1227 ;; Translate all characters to "a".
1228 (goto-char (point-min))
1230 (while (re-search-forward "[A-Za-z]" nil t
)
1231 (replace-match "a" t t
)))
1233 (goto-char (point-min))
1234 (while (re-search-forward "[0-9]+" nil t
)
1238 (string-to-number (buffer-substring
1239 (match-beginning 0) (match-end 0)))))))
1240 (setq string
(buffer-substring (point-min) (point-max)))
1241 (setcar (car string-list
) string
)
1242 (setq string-list
(cdr string-list
))))
1246 ;; `gnus-uu-grab-articles' is the general multi-article treatment
1247 ;; function. It takes a list of articles to be grabbed and a function
1248 ;; to apply to each article.
1250 ;; The function to be called should take two parameters. The first
1251 ;; parameter is the article buffer. The function should leave the
1252 ;; result, if any, in this buffer. Most treatment functions will just
1253 ;; generate files...
1255 ;; The second parameter is the state of the list of articles, and can
1256 ;; have four values: `first', `middle', `last' and `first-and-last'.
1258 ;; The function should return a list. The list may contain the
1259 ;; following symbols:
1260 ;; `error' if an error occurred
1261 ;; `begin' if the beginning of an encoded file has been received
1262 ;; If the list returned contains a `begin', the first element of
1263 ;; the list *must* be a string with the file name of the decoded
1265 ;; `end' if the end of an encoded file has been received
1266 ;; `middle' if the article was a body part of an encoded file
1267 ;; `wrong-type' if the article was not a part of an encoded file
1268 ;; `ok', which can be used everything is ok
1270 (defvar gnus-uu-has-been-grabbed nil
)
1272 (defun gnus-uu-unmark-list-of-grabbed (&optional dont-unmark-last-article
)
1274 (if (not (and gnus-uu-has-been-grabbed
1275 gnus-uu-unmark-articles-not-decoded
))
1277 (when dont-unmark-last-article
1278 (setq art
(car gnus-uu-has-been-grabbed
))
1279 (setq gnus-uu-has-been-grabbed
(cdr gnus-uu-has-been-grabbed
)))
1280 (while gnus-uu-has-been-grabbed
1281 (gnus-summary-tick-article (car gnus-uu-has-been-grabbed
) t
)
1282 (setq gnus-uu-has-been-grabbed
(cdr gnus-uu-has-been-grabbed
)))
1283 (when dont-unmark-last-article
1284 (setq gnus-uu-has-been-grabbed
(list art
))))))
1286 ;; This function takes a list of articles and a function to apply to
1287 ;; each article grabbed.
1289 ;; This function returns a list of files decoded if the grabbing and
1290 ;; the process-function has been successful and nil otherwise.
1291 (defun gnus-uu-grab-articles (articles process-function
1292 &optional sloppy limit no-errors
)
1293 (require 'gnus-async
)
1294 (let ((state 'first
)
1295 (gnus-asynchronous nil
)
1296 (gnus-inhibit-treatment t
)
1297 has-been-begin article result-file result-files process-state
1298 gnus-summary-display-article-function
1299 gnus-article-prepare-hook gnus-display-mime-function
1300 article-series files
)
1302 (while (and articles
1303 (not (memq 'error process-state
))
1305 (not (memq 'end process-state
))))
1307 (setq article
(pop articles
))
1308 (when (vectorp (gnus-summary-article-header article
))
1309 (push article article-series
)
1312 (if (eq state
'first
)
1313 (setq state
'first-and-last
)
1314 (setq state
'last
)))
1316 (let ((part (gnus-uu-part-number article
)))
1317 (gnus-message 6 "Getting article %d%s..."
1318 article
(if (string= part
"") "" (concat ", " part
))))
1319 (gnus-summary-display-article article
)
1321 ;; Push the article to the processing function.
1322 (with-current-buffer gnus-original-article-buffer
1323 (let ((buffer-read-only nil
))
1324 (with-current-buffer gnus-summary-buffer
1326 (funcall process-function
1327 gnus-original-article-buffer state
)))))
1329 (gnus-summary-remove-process-mark article
)
1331 ;; If this is the beginning of a decoded file, we push it
1333 (when (or (memq 'begin process-state
)
1334 (and (or (eq state
'first
)
1335 (eq state
'first-and-last
))
1336 (memq 'ok process-state
)))
1337 (when has-been-begin
1338 ;; If there is a `result-file' here, that means that the
1339 ;; file was unsuccessfully decoded, so we delete it.
1340 (when (and result-file
1341 (file-exists-p result-file
)
1342 (not gnus-uu-be-dangerous
)
1343 (or (eq gnus-uu-be-dangerous t
)
1345 (format "Delete unsuccessfully decoded file %s? "
1347 (delete-file result-file
)))
1348 (when (memq 'begin process-state
)
1349 (setq result-file
(car process-state
)))
1350 (setq has-been-begin t
))
1352 ;; Check whether we have decoded one complete file.
1353 (when (memq 'end process-state
)
1354 (setq article-series nil
)
1355 (setq has-been-begin nil
)
1356 (if (stringp result-file
)
1357 (setq files
(list result-file
))
1358 (setq files result-file
))
1359 (setq result-file
(car files
))
1361 (push (list (cons 'name
(pop files
))
1362 (cons 'article article
))
1364 ;; Allow user-defined functions to be run on this file.
1365 (when gnus-uu-grabbed-file-functions
1366 (let ((funcs gnus-uu-grabbed-file-functions
))
1367 (unless (listp funcs
)
1368 (setq funcs
(list funcs
)))
1370 (funcall (pop funcs
) result-file
))))
1371 (setq result-file nil
)
1372 ;; Check whether we have decoded enough articles.
1373 (and limit
(= (length result-files
) limit
)
1374 (setq articles nil
)))
1376 ;; If this is the last article to be decoded, and
1377 ;; we still haven't reached the end, then we delete
1378 ;; the partially decoded file.
1379 (and (or (eq state
'last
) (eq state
'first-and-last
))
1380 (not (memq 'end process-state
))
1382 (file-exists-p result-file
)
1383 (not gnus-uu-be-dangerous
)
1384 (or (eq gnus-uu-be-dangerous t
)
1386 (format "Delete incomplete file %s? " result-file
)))
1387 (delete-file result-file
))
1389 ;; If this was a file of the wrong sort, then
1390 (when (and (or (memq 'wrong-type process-state
)
1391 (memq 'error process-state
))
1392 gnus-uu-unmark-articles-not-decoded
)
1393 (gnus-summary-tick-article article t
))
1395 ;; Set the new series state.
1396 (if (and (not has-been-begin
)
1398 (or (memq 'end process-state
)
1399 (memq 'middle process-state
)))
1401 (setq process-state
(list 'error
))
1402 (gnus-message 2 "No begin part at the beginning")
1404 (setq state
'middle
))))
1406 ;; When there are no result-files, then something must be wrong.
1410 ((not has-been-begin
)
1411 (gnus-message 2 "Wrong type file"))
1412 ((memq 'error process-state
)
1413 (gnus-message 2 "An error occurred during decoding"))
1414 ((not (or (memq 'ok process-state
)
1415 (memq 'end process-state
)))
1416 (gnus-message 2 "End of articles reached before end of file")))
1417 ;; Make unsuccessfully decoded articles unread.
1418 (when gnus-uu-unmark-articles-not-decoded
1419 (while article-series
1420 (gnus-summary-tick-article (pop article-series
) t
))))
1422 ;; The original article buffer is hosed, shoot it down.
1423 (gnus-kill-buffer gnus-original-article-buffer
)
1424 (setq gnus-current-article nil
)
1427 (defun gnus-uu-grab-view (file)
1428 "View FILE using the gnus-uu methods."
1429 (let ((action (gnus-uu-get-action file
)))
1430 (gnus-execute-command
1431 (if (string-match "%" action
)
1432 (format action file
)
1433 (concat action
" " file
))
1434 (eq gnus-view-pseudos
'not-confirm
))))
1436 (defun gnus-uu-grab-move (file)
1437 "Move FILE to somewhere."
1438 (when gnus-uu-default-dir
1439 (let ((to-file (concat (file-name-as-directory gnus-uu-default-dir
)
1440 (file-name-nondirectory file
))))
1441 (rename-file file to-file
)
1442 (unless (file-exists-p file
)
1443 (make-symbolic-link to-file file
)))))
1445 (defun gnus-uu-part-number (article)
1446 (let* ((header (gnus-summary-article-header article
))
1447 (subject (and header
(mail-header-subject header
)))
1450 (while (string-match "[0-9]+/[0-9]+\\|[0-9]+[ \t]+of[ \t]+[0-9]+"
1452 (setq part
(match-string 0 subject
))
1453 (setq subject
(substring subject
(match-end 0)))))
1455 (while (string-match "[0-9]+[^0-9]+[0-9]+" subject
)
1456 (setq part
(match-string 0 subject
))
1457 (setq subject
(substring subject
(match-end 0)))))
1460 (defun gnus-uu-uudecode-sentinel (process event
)
1461 (delete-process (get-process process
)))
1463 (defun gnus-uu-uustrip-article (process-buffer in-state
)
1464 ;; Uudecodes a file asynchronously.
1465 (with-current-buffer process-buffer
1466 (let ((state (list 'wrong-type
))
1467 process-connection-type case-fold-search buffer-read-only
1469 (goto-char (point-min))
1471 ;; Deal with ^M at the end of the lines.
1472 (when gnus-uu-kill-carriage-return
1474 (while (search-forward "\r" nil t
)
1477 (while (or (re-search-forward gnus-uu-begin-string nil t
)
1478 (re-search-forward gnus-uu-body-line nil t
))
1479 (setq state
(list 'ok
))
1480 ;; Ok, we are at the first uucoded line.
1482 (setq start-char
(point))
1484 (if (not (looking-at gnus-uu-begin-string
))
1485 (setq state
(list 'middle
))
1486 ;; This is the beginning of a uuencoded article.
1487 ;; We replace certain characters that could make things messy.
1488 (setq gnus-uu-file-name
1490 mm-file-name-rewrite-functions
1491 (file-name-nondirectory (match-string 1))))
1492 (replace-match (concat "begin 644 " gnus-uu-file-name
) t t
)
1494 ;; Remove any non gnus-uu-body-line right after start.
1496 (while (and (not (eobp))
1497 (not (looking-at gnus-uu-body-line
)))
1500 ;; If a process is running, we kill it.
1501 (when (and gnus-uu-uudecode-process
1502 (memq (process-status gnus-uu-uudecode-process
)
1504 (delete-process gnus-uu-uudecode-process
)
1505 (gnus-uu-unmark-list-of-grabbed t
))
1507 ;; Start a new uudecoding process.
1508 (let ((cdir default-directory
))
1511 (cd gnus-uu-work-dir
)
1512 (setq gnus-uu-uudecode-process
1515 (gnus-get-buffer-create gnus-uu-output-buffer-name
)
1516 shell-file-name shell-command-switch
1517 (format "cd %s %s uudecode" gnus-uu-work-dir
1518 gnus-shell-command-separator
))))
1520 (set-process-sentinel
1521 gnus-uu-uudecode-process
'gnus-uu-uudecode-sentinel
)
1522 (setq state
(list 'begin
))
1523 (push (concat gnus-uu-work-dir gnus-uu-file-name
) files
))
1525 ;; We look for the end of the thing to be decoded.
1526 (if (re-search-forward gnus-uu-end-string nil t
)
1528 (goto-char (point-max))
1529 (re-search-backward gnus-uu-body-line nil t
))
1533 (when gnus-uu-uudecode-process
1534 (when (memq (process-status gnus-uu-uudecode-process
) '(run stop
))
1535 ;; Try to correct mishandled uucode.
1536 (when gnus-uu-correct-stripped-uucode
1537 (gnus-uu-check-correct-stripped-uucode start-char
(point)))
1538 (gnus-run-hooks 'gnus-uu-pre-uudecode-hook
)
1540 ;; Send the text to the process.
1542 (process-send-region
1543 gnus-uu-uudecode-process start-char
(point))
1546 (delete-process gnus-uu-uudecode-process
)
1547 (gnus-message 2 "gnus-uu: Couldn't uudecode")
1548 (setq state
(list 'wrong-type
)))))
1550 (if (memq 'end state
)
1552 ;; Send an EOF, just in case.
1554 (process-send-eof gnus-uu-uudecode-process
))
1555 (while (memq (process-status gnus-uu-uudecode-process
)
1557 (accept-process-output gnus-uu-uudecode-process
1)))
1558 (when (or (not gnus-uu-uudecode-process
)
1559 (not (memq (process-status gnus-uu-uudecode-process
)
1561 (setq state
(list 'wrong-type
)))))))
1563 (if (memq 'begin state
)
1564 (cons (if (= (length files
) 1) (car files
) files
) state
)
1567 (defvar gnus-uu-unshar-warning
1570 Shell archives are an archaic method of bundling files for distribution
1571 across computer networks. During the unpacking process, arbitrary commands
1572 are executed on your system, and all kinds of nasty things can happen.
1573 Please examine the archive very carefully before you instruct Emacs to
1574 unpack it. You can browse the archive buffer using \\[scroll-other-window].
1576 If you are unsure what to do, please answer \"no\"."
1577 "Text of warning message displayed by `gnus-uu-unshar-article'.
1578 Make sure that this text consists only of few text lines. Otherwise,
1579 Gnus might fail to display all of it.")
1582 ;; This function is used by `gnus-uu-grab-articles' to treat
1583 ;; a shared article.
1584 (defun gnus-uu-unshar-article (process-buffer in-state
)
1585 (let ((state (list 'ok
))
1587 (with-current-buffer process-buffer
1588 (goto-char (point-min))
1589 (if (not (re-search-forward gnus-uu-shar-begin-string nil t
))
1590 (setq state
(list 'wrong-type
))
1591 (save-window-excursion
1593 (switch-to-buffer (current-buffer))
1594 (delete-other-windows)
1595 (let ((buffer (get-buffer-create (generate-new-buffer-name
1599 (with-current-buffer buffer
1600 (insert (substitute-command-keys
1601 gnus-uu-unshar-warning
))
1602 (goto-char (point-min))
1603 (display-buffer buffer
)
1604 (yes-or-no-p "This is a shell archive, unshar it? "))
1605 (kill-buffer buffer
))
1606 (setq state
(list 'error
))))))
1607 (unless (memq 'error state
)
1609 (setq start-char
(point))
1610 (call-process-region
1611 start-char
(point-max) shell-file-name nil
1612 (gnus-get-buffer-create gnus-uu-output-buffer-name
) nil
1613 shell-command-switch
1614 (concat "cd " gnus-uu-work-dir
" "
1615 gnus-shell-command-separator
" sh")))))
1618 ;; Returns the name of what the shar file is going to unpack.
1619 (defun gnus-uu-find-name-in-shar ()
1620 (let ((oldpoint (point))
1622 (goto-char (point-min))
1623 (when (re-search-forward gnus-uu-shar-name-marker nil t
)
1624 (setq res
(buffer-substring (match-beginning 1) (match-end 1))))
1625 (goto-char oldpoint
)
1628 ;; `gnus-uu-choose-action' chooses what action to perform given the name
1629 ;; and `gnus-uu-file-action-list'. Returns either nil if no action is
1630 ;; found, or the name of the command to run if such a rule is found.
1631 (defun gnus-uu-choose-action (file-name file-action-list
&optional no-ignore
)
1632 (let ((action-list (copy-sequence file-action-list
))
1633 (case-fold-search t
)
1638 (and gnus-uu-ignore-files-by-name
1639 (string-match gnus-uu-ignore-files-by-name file-name
)))
1641 (and gnus-uu-ignore-files-by-type
1642 (string-match gnus-uu-ignore-files-by-type
1643 (or (gnus-uu-choose-action
1644 file-name gnus-uu-ext-to-mime-list t
)
1646 (while (not (or (eq action-list
()) action
))
1647 (setq rule
(car action-list
))
1648 (setq action-list
(cdr action-list
))
1649 (when (string-match (car rule
) file-name
)
1650 (setq action
(cadr rule
)))))
1653 (defun gnus-uu-treat-archive (file-path)
1654 ;; Unpacks an archive. Returns t if unpacking is successful.
1655 (let ((did-unpack t
)
1657 (setq action
(gnus-uu-choose-action
1658 file-path
(append gnus-uu-user-archive-rules
1659 (if gnus-uu-ignore-default-archive-rules
1661 gnus-uu-default-archive-rules
))))
1664 (error "No unpackers for the file %s" file-path
))
1666 (string-match "/[^/]*$" file-path
)
1667 (setq dir
(substring file-path
0 (match-beginning 0)))
1669 (when (member action gnus-uu-destructive-archivers
)
1670 (copy-file file-path
(concat file-path
"~") t
))
1672 (setq command
(format "cd %s ; %s" dir
(gnus-uu-command action file-path
)))
1674 (with-current-buffer (gnus-get-buffer-create gnus-uu-output-buffer-name
)
1677 (gnus-message 5 "Unpacking: %s..." (gnus-uu-command action file-path
))
1679 (if (eq 0 (call-process shell-file-name nil
1680 (gnus-get-buffer-create gnus-uu-output-buffer-name
)
1681 nil shell-command-switch command
))
1683 (gnus-message 2 "Error during unpacking of archive")
1684 (setq did-unpack nil
))
1686 (when (member action gnus-uu-destructive-archivers
)
1687 (rename-file (concat file-path
"~") file-path t
))
1691 (defun gnus-uu-dir-files (dir)
1692 (let ((dirs (directory-files dir t
"[^/][^\\.][^\\.]?$"))
1695 (if (file-directory-p (setq file
(car dirs
)))
1696 (setq files
(append files
(gnus-uu-dir-files file
)))
1698 (setq dirs
(cdr dirs
)))
1701 (defun gnus-uu-unpack-files (files &optional ignore
)
1702 ;; Go through FILES and look for files to unpack.
1703 (let* ((totfiles (gnus-uu-ls-r gnus-uu-work-dir
))
1707 (setq file
(cdr (assq 'name
(car files
))))
1708 (when (and (not (member file ignore
))
1709 (equal (gnus-uu-get-action (file-name-nondirectory file
))
1711 (push file did-unpack
)
1712 (unless (gnus-uu-treat-archive file
)
1713 (gnus-message 2 "Error during unpacking of %s" file
))
1714 (let* ((newfiles (gnus-uu-ls-r gnus-uu-work-dir
))
1717 (unless (member (car nfiles
) totfiles
)
1718 (push (list (cons 'name
(car nfiles
))
1719 (cons 'original file
))
1721 (setq nfiles
(cdr nfiles
)))
1722 (setq totfiles newfiles
)))
1723 (setq files
(cdr files
)))
1725 (gnus-uu-unpack-files ofiles
(append did-unpack ignore
))
1728 (defun gnus-uu-ls-r (dir)
1729 (let* ((files (gnus-uu-directory-files dir t
))
1732 (when (file-directory-p (car files
))
1733 (setq ofiles
(delete (car files
) ofiles
))
1734 (setq ofiles
(append ofiles
(gnus-uu-ls-r (car files
)))))
1735 (setq files
(cdr files
)))
1740 (defun gnus-uu-directory-files (dir &optional full
)
1741 (let (files out file
)
1742 (setq files
(directory-files dir full
))
1744 (setq file
(car files
))
1745 (setq files
(cdr files
))
1746 (unless (member (file-name-nondirectory file
) '("." ".."))
1748 (setq out
(nreverse out
))
1751 (defun gnus-uu-check-correct-stripped-uucode (start end
)
1753 (let (found beg length
)
1754 (unless gnus-uu-correct-stripped-uucode
1757 (if (re-search-forward " \\|`" end t
)
1762 (when (looking-at "\n")
1767 (unless (looking-at (concat gnus-uu-begin-string
"\\|"
1768 gnus-uu-end-string
))
1770 (setq length
(- (point-at-eol) (point-at-bol))))
1775 (unless (= length
(- (point) beg
))
1776 (insert (make-string (- length
(- (point) beg
)) ?
))))
1777 (forward-line 1)))))))
1779 (defvar gnus-uu-tmp-alist nil
)
1781 (defun gnus-uu-initialize (&optional scan
)
1784 (when (setq entry
(assoc gnus-newsgroup-name gnus-uu-tmp-alist
))
1785 (if (file-exists-p (cdr entry
))
1786 (setq gnus-uu-work-dir
(cdr entry
))
1787 (setq gnus-uu-tmp-alist
(delq entry gnus-uu-tmp-alist
))
1790 (setq gnus-uu-tmp-dir
(file-name-as-directory
1791 (expand-file-name gnus-uu-tmp-dir
)))
1792 (if (not (file-directory-p gnus-uu-tmp-dir
))
1793 (error "Temp directory %s doesn't exist" gnus-uu-tmp-dir
)
1794 (when (not (file-writable-p gnus-uu-tmp-dir
))
1795 (error "Temp directory %s can't be written to"
1798 (setq gnus-uu-work-dir
1799 (mm-make-temp-file (concat gnus-uu-tmp-dir
"gnus") 'dir
))
1800 (gnus-set-file-modes gnus-uu-work-dir
448)
1801 (setq gnus-uu-work-dir
(file-name-as-directory gnus-uu-work-dir
))
1802 (push (cons gnus-newsgroup-name gnus-uu-work-dir
)
1803 gnus-uu-tmp-alist
))))
1806 ;; Kills the temporary uu buffers, kills any processes, etc.
1807 (defun gnus-uu-clean-up ()
1809 (and gnus-uu-uudecode-process
1810 (memq (process-status (or gnus-uu-uudecode-process
"nevair"))
1812 (delete-process gnus-uu-uudecode-process
))
1813 (when (setq buf
(get-buffer gnus-uu-output-buffer-name
))
1814 (kill-buffer buf
))))
1816 ;; Inputs an action and a filename and returns a full command, making sure
1817 ;; that the filename will be treated as a single argument when the shell
1818 ;; executes the command.
1819 (defun gnus-uu-command (action file
)
1820 (let ((quoted-file (shell-quote-argument file
)))
1821 (if (string-match "%s" action
)
1822 (format action quoted-file
)
1823 (concat action
" " quoted-file
))))
1825 (defun gnus-uu-delete-work-dir (&optional dir
)
1826 "Delete recursively all files and directories under `gnus-uu-work-dir'."
1828 (gnus-message 7 "Deleting directory %s..." dir
)
1829 (setq dir gnus-uu-work-dir
))
1831 (file-exists-p dir
))
1832 (let ((files (directory-files dir t nil t
))
1834 (while (setq file
(pop files
))
1835 (unless (member (file-name-nondirectory file
) '("." ".."))
1836 (if (file-directory-p file
)
1837 (gnus-uu-delete-work-dir file
)
1838 (gnus-message 9 "Deleting file %s..." file
)
1841 (error (gnus-message 3 "Deleting file %s failed... %s" file err
))))))
1843 (delete-directory dir
)
1844 (error (gnus-message 3 "Deleting directory %s failed... %s" file err
))))
1845 (gnus-message 7 "")))
1849 (add-hook 'gnus-exit-group-hook
'gnus-uu-clean-up
)
1850 (add-hook 'gnus-exit-group-hook
'gnus-uu-delete-work-dir
)
1855 ;;; uuencoded posting
1858 ;; Any function that is to be used as and encoding method will take two
1859 ;; parameters: PATH-NAME and FILE-NAME. (E.g. "/home/gaga/spiral.jpg"
1860 ;; and "spiral.jpg", respectively.) The function should return nil if
1861 ;; the encoding wasn't successful.
1862 (defcustom gnus-uu-post-encode-method
'gnus-uu-post-encode-uuencode
1863 "Function used for encoding binary files.
1864 There are three functions supplied with gnus-uu for encoding files:
1865 `gnus-uu-post-encode-uuencode', which does straight uuencoding;
1866 `gnus-uu-post-encode-mime', which encodes with base64 and adds MIME
1867 headers; and `gnus-uu-post-encode-mime-uuencode', which encodes with
1868 uuencode and adds MIME headers."
1869 :group
'gnus-extract-post
1870 :type
'(radio (function-item gnus-uu-post-encode-uuencode
)
1871 (function-item gnus-uu-post-encode-mime
)
1872 (function-item gnus-uu-post-encode-mime-uuencode
)
1873 (function :tag
"Other")))
1875 (defcustom gnus-uu-post-include-before-composing nil
1876 "Non-nil means that gnus-uu will ask for a file to encode before you compose the article.
1877 If this variable is t, you can either include an encoded file with
1878 \\[gnus-uu-post-insert-binary-in-article] or have one included for you when you post the article."
1879 :group
'gnus-extract-post
1882 (defcustom gnus-uu-post-length
990
1883 "Maximum length of an article.
1884 The encoded file will be split into how many articles it takes to
1885 post the entire file."
1886 :group
'gnus-extract-post
1889 (defcustom gnus-uu-post-threaded nil
1890 "Non-nil means that gnus-uu will post the encoded file in a thread.
1891 This may not be smart, as no other decoder I have seen are able to
1892 follow threads when collecting uuencoded articles. (Well, I have seen
1893 one package that does that - gnus-uu, but somehow, I don't think that
1894 counts...) The default is nil."
1895 :group
'gnus-extract-post
1898 (defcustom gnus-uu-post-separate-description t
1899 "Non-nil means that the description will be posted in a separate article.
1900 The first article will typically be numbered (0/x). If this variable
1901 is nil, the description the user enters will be included at the
1902 beginning of the first article, which will be numbered (1/x). Default
1904 :group
'gnus-extract-post
1907 (defvar gnus-uu-post-binary-separator
"--binary follows this line--")
1908 (defvar gnus-uu-post-message-id nil
)
1909 (defvar gnus-uu-post-inserted-file-name nil
)
1910 (defvar gnus-uu-winconf-post-news nil
)
1912 (defun gnus-uu-post-news ()
1913 "Compose an article and post an encoded file."
1915 (setq gnus-uu-post-inserted-file-name nil
)
1916 (setq gnus-uu-winconf-post-news
(current-window-configuration))
1918 (gnus-summary-post-news)
1920 (let ((map (make-sparse-keymap)))
1921 (set-keymap-parent map
(current-local-map))
1922 (use-local-map map
))
1923 ;;(local-set-key "\C-c\C-c" 'gnus-summary-edit-article-done)
1924 (local-set-key "\C-c\C-c" 'gnus-uu-post-news-inews
)
1925 (local-set-key "\C-c\C-s" 'gnus-uu-post-news-inews
)
1926 (local-set-key "\C-c\C-i" 'gnus-uu-post-insert-binary-in-article
)
1928 (when gnus-uu-post-include-before-composing
1929 (save-excursion (setq gnus-uu-post-inserted-file-name
1930 (gnus-uu-post-insert-binary)))))
1932 (defun gnus-uu-post-insert-binary-in-article ()
1933 "Inserts an encoded file in the buffer.
1934 The user will be asked for a file name."
1937 (setq gnus-uu-post-inserted-file-name
(gnus-uu-post-insert-binary))))
1939 ;; Encodes with uuencode and substitutes all spaces with backticks.
1940 (defun gnus-uu-post-encode-uuencode (path file-name
)
1941 (when (gnus-uu-post-encode-file "uuencode" path file-name
)
1942 (goto-char (point-min))
1944 (while (search-forward " " nil t
)
1945 (replace-match "`"))
1948 ;; Encodes with uuencode and adds MIME headers.
1949 (defun gnus-uu-post-encode-mime-uuencode (path file-name
)
1950 (when (gnus-uu-post-encode-uuencode path file-name
)
1951 (gnus-uu-post-make-mime file-name
"x-uue")
1954 ;; Encodes with base64 and adds MIME headers
1955 (defun gnus-uu-post-encode-mime (path file-name
)
1956 (when (eq 0 (call-process shell-file-name nil t nil shell-command-switch
1957 (format "%s %s -o %s" "mmencode" path file-name
)))
1958 (gnus-uu-post-make-mime file-name
"base64")
1961 ;; Adds MIME headers.
1962 (defun gnus-uu-post-make-mime (file-name encoding
)
1963 (goto-char (point-min))
1964 (insert (format "Content-Type: %s; name=\"%s\"\n"
1965 (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list
)
1967 (insert (format "Content-Transfer-Encoding: %s\n\n" encoding
))
1969 (set-buffer gnus-message-buffer
)
1970 (goto-char (point-min))
1971 (re-search-forward (concat "^" (regexp-quote mail-header-separator
) "$"))
1973 (narrow-to-region (point-min) (point))
1974 (unless (mail-fetch-field "mime-version")
1976 (insert "MIME-Version: 1.0\n"))
1979 ;; Encodes a file PATH with COMMAND, leaving the result in the
1981 (defun gnus-uu-post-encode-file (command path file-name
)
1982 (eq 0 (call-process shell-file-name nil t nil shell-command-switch
1983 (format "%s %s %s" command path file-name
))))
1985 (defun gnus-uu-post-news-inews ()
1986 "Posts the composed news article and encoded file.
1987 If no file has been included, the user will be asked for a file."
1992 (if gnus-uu-post-inserted-file-name
1993 (setq file-name gnus-uu-post-inserted-file-name
)
1994 (setq file-name
(gnus-uu-post-insert-binary)))
1996 (gnus-uu-post-encoded file-name gnus-uu-post-threaded
))
1997 (setq gnus-uu-post-inserted-file-name nil
)
1998 (when gnus-uu-winconf-post-news
1999 (set-window-configuration gnus-uu-winconf-post-news
)))
2001 ;; Asks for a file to encode, encodes it and inserts the result in
2002 ;; the current buffer. Returns the file name the user gave.
2003 (defun gnus-uu-post-insert-binary ()
2004 (let ((uuencode-buffer-name "*uuencode buffer*")
2005 file-path uubuf file-name
)
2007 (setq file-path
(read-file-name
2008 "What file do you want to encode? "))
2009 (when (not (file-exists-p file-path
))
2010 (error "%s: No such file" file-path
))
2012 (goto-char (point-max))
2013 (insert (format "\n%s\n" gnus-uu-post-binary-separator
))
2015 ;; #### Unix-specific?
2016 (when (string-match "^~/" file-path
)
2017 (setq file-path
(concat "$HOME" (substring file-path
1))))
2018 ;; #### Unix-specific?
2019 (if (string-match "/[^/]*$" file-path
)
2020 (setq file-name
(substring file-path
(1+ (match-beginning 0))))
2021 (setq file-name file-path
))
2024 (if (with-current-buffer
2025 (setq uubuf
(gnus-get-buffer-create uuencode-buffer-name
))
2027 (funcall gnus-uu-post-encode-method file-path file-name
))
2028 (insert-buffer-substring uubuf
)
2029 (error "Encoding unsuccessful"))
2030 (kill-buffer uubuf
))
2033 ;; Posts the article and all of the encoded file.
2034 (defun gnus-uu-post-encoded (file-name &optional threaded
)
2035 (let ((send-buffer-name "*uuencode send buffer*")
2036 (encoded-buffer-name "*encoded buffer*")
2037 (top-string "[ cut here %s (%s %d/%d) %s gnus-uu ]")
2038 (separator (concat mail-header-separator
"\n\n"))
2039 uubuf length parts header i end beg
2040 beg-line minlen post-buf whole-len beg-binary end-binary
)
2042 (setq post-buf
(current-buffer))
2044 (goto-char (point-min))
2045 (when (not (re-search-forward
2046 (if gnus-uu-post-separate-description
2047 (concat "^" (regexp-quote gnus-uu-post-binary-separator
)
2049 (concat "^" (regexp-quote mail-header-separator
) "$"))
2051 (error "Internal error: No binary/header separator"))
2054 (setq beg-binary
(point))
2055 (setq end-binary
(point-max))
2057 (with-current-buffer
2058 (setq uubuf
(gnus-get-buffer-create encoded-buffer-name
))
2060 (insert-buffer-substring post-buf beg-binary end-binary
)
2061 (goto-char (point-min))
2062 (setq length
(count-lines (point-min) (point-max)))
2063 (setq parts
(/ length gnus-uu-post-length
))
2064 (unless (< (% length gnus-uu-post-length
) 4)
2067 (when gnus-uu-post-separate-description
2069 (delete-region (point) (point-max))
2071 (goto-char (point-min))
2073 (concat "^" (regexp-quote mail-header-separator
) "$") nil t
)
2074 (setq header
(buffer-substring (point-min) (point-at-bol)))
2076 (goto-char (point-min))
2077 (when gnus-uu-post-separate-description
2078 (when (re-search-forward "^Subject: " nil t
)
2080 (insert (format " (0/%d)" parts
)))
2083 (setq gnus-uu-post-message-id
(message-fetch-field "message-id")))
2088 (while (not (> i parts
))
2089 (set-buffer (gnus-get-buffer-create send-buffer-name
))
2092 (when (and threaded gnus-uu-post-message-id
)
2093 (insert "References: " gnus-uu-post-message-id
"\n"))
2096 (- 62 (length (format top-string
"" file-name i parts
""))))
2097 (when (> 1 (setq minlen
(/ whole-len
2)))
2102 (make-string minlen ?-
)
2105 (if (= 0 (% whole-len
2)) (1- minlen
) minlen
) ?-
)))
2107 (goto-char (point-min))
2108 (when (re-search-forward "^Subject: " nil t
)
2110 (insert (format " (%d/%d)" i parts
)))
2112 (goto-char (point-max))
2113 (with-current-buffer uubuf
2116 (goto-char (point-max))
2117 (forward-line gnus-uu-post-length
))
2118 (when (and (= (1+ i
) parts
) (< (count-lines (point) (point-max)) 4))
2121 (insert-buffer-substring uubuf beg end
)
2122 (insert beg-line
"\n")
2125 (goto-char (point-min))
2127 (concat "^" (regexp-quote mail-header-separator
) "$") nil t
)
2130 (when (re-search-forward
2131 (concat "^" (regexp-quote gnus-uu-post-binary-separator
) "$")
2137 (let (message-sent-message-via)
2140 (setq gnus-uu-post-message-id
2141 (concat (message-fetch-field "references") " "
2142 (message-fetch-field "message-id"))))))
2144 (gnus-kill-buffer send-buffer-name
)
2145 (gnus-kill-buffer encoded-buffer-name
)
2147 (when (not gnus-uu-post-separate-description
)
2148 (set-buffer-modified-p nil
)
2153 ;;; gnus-uu.el ends here