*** empty log message ***
[gnus] / lisp / gnus-uu.el
1 ;;; gnus-uu.el --- extract (uu)encoded files in Gnus
2 ;; Copyright (C) 1985,86,87,93,94,95 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;; Created: 2 Oct 1993
6 ;; Version: v3.0
7 ;; Keyword: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;;; Code: 
28
29 (require 'gnus)
30 (require 'gnus-msg)
31
32 ;; Default viewing action rules
33
34 (defvar gnus-uu-default-view-rules 
35   '(("\\.te?xt$\\|\\.doc$\\|read.*me\\|\\.c?$\\|\\.h$\\|\\.bat$\\|\\.asm$\\|makefile" "cat %s | sed s/\r//g")
36     ("\\.pas$" "cat %s | sed s/\r//g")
37     ("\\.[1-9]$" "groff -mandoc -Tascii %s | sed s/\b.//g")
38     ("\\.\\(jpe?g\\|gif\\|tiff?\\|p[pgb]m\\|xwd\\|xbm\\|pcx\\)$" "xv")
39     ("\\.tga$" "tgatoppm %s | xv -")
40     ("\\.\\(wav\\|aiff\\|hcom\\|u[blw]\\|s[bfw]\\|voc\\|smp\\)$" 
41      "sox -v .5 %s -t .au -u - > /dev/audio")
42     ("\\.au$" "cat %s > /dev/audio")
43     ("\\.mod$" "str32")
44     ("\\.ps$" "ghostview")
45     ("\\.dvi$" "xdvi")
46     ("\\.html$" "xmosaic")
47     ("\\.mpe?g$" "mpeg_play")
48     ("\\.\\(flc\\|fli\\|rle\\|iff\\|pfx\\|avi\\|sme\\|rpza\\|dl\\|qt\\|rsrc\\|mov\\)$" "xanim")
49     ("\\.\\(tar\\|arj\\|zip\\|zoo\\|arc\\|gz\\|Z\\|lzh\\|ar\\|lha\\)$" 
50      "gnus-uu-archive"))
51   "*Default actions to be taken when the user asks to view a file.  
52 To change the behaviour, you can either edit this variable or set
53 `gnus-uu-user-view-rules' to something useful.
54
55 For example:
56
57 To make gnus-uu use 'xli' to display JPEG and GIF files, put the
58 following in your .emacs file:
59
60   (setq gnus-uu-user-view-rules '((\"jpg$\\\\|gif$\" \"xli\")))
61
62 Both these variables are lists of lists with two string elements. The
63 first string is a regular expression. If the file name matches this
64 regular expression, the command in the second string is executed with
65 the file as an argument.
66
67 If the command string contains \"%s\", the file name will be inserted
68 at that point in the command string. If there's no \"%s\" in the
69 command string, the file name will be appended to the command string
70 before executing.
71
72 There are several user variables to tailor the behaviour of gnus-uu to
73 your needs. First we have `gnus-uu-user-view-rules', which is the
74 variable gnus-uu first consults when trying to decide how to view a
75 file. If this variable contains no matches, gnus-uu examines the
76 default rule variable provided in this package. If gnus-uu finds no
77 match here, it uses `gnus-uu-user-view-rules-end' to try to make a
78 match.")
79
80 (defvar gnus-uu-user-view-rules nil 
81   "*Variable detailing what actions are to be taken to view a file.
82 See the documentation on the `gnus-uu-default-view-rules' variable for 
83 details.")
84
85 (defvar gnus-uu-user-view-rules-end 
86   '(("" "file"))
87   "*Variable saying what actions are to be taken if no rule matched the file name.
88 See the documentation on the `gnus-uu-default-view-rules' variable for 
89 details.")
90
91 ;; Default unpacking commands
92
93 (defvar gnus-uu-default-archive-rules 
94   '(("\\.tar$" "tar xf")
95     ("\\.zip$" "unzip -o")
96     ("\\.ar$" "ar x")
97     ("\\.arj$" "unarj x")
98     ("\\.zoo$" "zoo -e")
99     ("\\.\\(lzh\\|lha\\)$" "lha x")
100     ("\\.Z$" "uncompress")
101     ("\\.gz$" "gunzip")
102     ("\\.arc$" "arc -x")))
103
104 (defvar gnus-uu-destructive-archivers 
105   (list "uncompress" "gunzip"))
106
107 (defvar gnus-uu-user-archive-rules nil
108   "*A list that can be set to override the default archive unpacking commands.
109 To use, for instance, 'untar' to unpack tar files and 'zip -x' to
110 unpack zip files, say the following:
111   (setq gnus-uu-user-archive-rules 
112     '((\"\\\\.tar$\" \"untar\")
113       (\"\\\\.zip$\" \"zip -x\")))")
114
115 (defvar gnus-uu-ignore-files-by-name nil
116   "*A regular expression saying what files should not be viewed based on name.
117 If, for instance, you want gnus-uu to ignore all .au and .wav files, 
118 you could say something like
119
120   (setq gnus-uu-ignore-files-by-name \"\\\\.au$\\\\|\\\\.wav$\")
121
122 Note that this variable can be used in conjunction with the
123 `gnus-uu-ignore-files-by-type' variable.")
124
125 (defvar gnus-uu-ignore-files-by-type nil
126   "*A regular expression saying what files that shouldn't be viewed, based on MIME file type.
127 If, for instance, you want gnus-uu to ignore all audio files and all mpegs, 
128 you could say something like
129
130   (setq gnus-uu-ignore-files-by-type \"audio/\\\\|video/mpeg\")
131
132 Note that this variable can be used in conjunction with the
133 `gnus-uu-ignore-files-by-name' variable.")
134
135 ;; Pseudo-MIME support
136
137 (defconst gnus-uu-ext-to-mime-list
138   '(("\\.gif$" "image/gif")
139     ("\\.jpe?g$" "image/jpeg")
140     ("\\.tiff?$" "image/tiff")
141     ("\\.xwd$" "image/xwd")
142     ("\\.pbm$" "image/pbm")
143     ("\\.pgm$" "image/pgm")
144     ("\\.ppm$" "image/ppm")
145     ("\\.xbm$" "image/xbm")
146     ("\\.pcx$" "image/pcx")
147     ("\\.tga$" "image/tga")
148     ("\\.ps$" "image/postscript")
149     ("\\.fli$" "video/fli")
150     ("\\.wav$" "audio/wav")
151     ("\\.aiff$" "audio/aiff")
152     ("\\.hcom$" "audio/hcom")
153     ("\\.voc$" "audio/voc")
154     ("\\.smp$" "audio/smp")
155     ("\\.mod$" "audio/mod")
156     ("\\.dvi$" "image/dvi")
157     ("\\.mpe?g$" "video/mpeg")
158     ("\\.au$" "audio/basic")
159     ("\\.\\(te?xt\\|doc\\|c\\|h\\)$" "text/plain")
160     ("\\.\\(c\\|h\\)$" "text/source")
161     ("read.*me" "text/plain")
162     ("\\.html$" "text/html")
163     ("\\.bat$" "text/bat")
164     ("\\.[1-6]$" "text/man")
165     ("\\.flc$" "video/flc")
166     ("\\.rle$" "video/rle")
167     ("\\.pfx$" "video/pfx")
168     ("\\.avi$" "video/avi")
169     ("\\.sme$" "video/sme")
170     ("\\.rpza$" "video/prza")
171     ("\\.dl$" "video/dl")
172     ("\\.qt$" "video/qt")
173     ("\\.rsrc$" "video/rsrc")
174     ("\\..*$" "unknown/unknown")))
175
176 ;; Various variables users may set 
177
178 (defvar gnus-uu-tmp-dir "/tmp/" 
179   "*Variable saying where gnus-uu is to do its work.
180 Default is \"/tmp/\".")
181
182 (defvar gnus-uu-do-not-unpack-archives nil 
183   "*Non-nil means that gnus-uu won't peek inside archives looking for files to dispay. 
184 Default is nil.")
185
186 (defvar gnus-uu-view-and-save nil 
187   "*Non-nil means that the user will always be asked to save a file after viewing it.
188 If the variable is nil, the user will only be asked to save if the
189 viewing is unsuccessful. Default is nil.")
190
191 (defvar gnus-uu-ignore-default-view-rules nil
192   "*Non-nil means that gnus-uu will ignore the default viewing rules.
193 Only the user viewing rules will be consulted. Default is nil.")
194
195 (defvar gnus-uu-ignore-default-archive-rules nil 
196   "*Non-nil means that gnus-uu will ignore the default archive unpacking commands.  
197 Only the user unpacking commands will be consulted. Default is nil.")
198
199 (defvar gnus-uu-kill-carriage-return t
200   "*Non-nil means that gnus-uu will strip all carriage returns from articles.
201 Default is t.")
202
203 (defvar gnus-uu-view-with-metamail nil
204   "*Non-nil means that files will be viewed with metamail.
205 The gnus-uu viewing functions will be ignored and gnus-uu will try
206 to guess at a content-type based on file name suffixes. Default
207 it nil.")
208
209 (defvar gnus-uu-unmark-articles-not-decoded nil
210   "*Non-nil means that gnus-uu will mark articles that were unsuccessfully decoded as unread. 
211 Default is nil.")
212
213 (defvar gnus-uu-correct-stripped-uucode nil
214   "*Non-nil means that gnus-uu will *try* to fix uuencoded files that have had trailing spaces deleted. 
215 Default is nil.")
216
217 (defvar gnus-uu-save-in-digest nil
218   "*Non-nil means that gnus-uu, when asked to save without decoding, will save in digests.
219 If this variable is nil, gnus-uu will just save everything in a 
220 file without any embellishments. The digesting almost conforms to RFC1153 -
221 no easy way to specify any meaningful volume and issue numbers were found, 
222 so I simply dropped them.")
223
224 (defvar gnus-uu-digest-headers 
225   '("^Date:" "^From:" "^To:" "^Cc:" "^Subject:" "^Message-ID:" "^Keywords:"
226     "^Summary:" "^References:")
227   "*List of regexps to match headers included in digested messages.
228 The headers will be included in the sequence they are matched.")
229
230 (defvar gnus-uu-save-separate-articles nil
231   "*Non-nil means that gnus-uu will save articles in separate files.")
232
233 ;; Internal variables
234
235 (defvar gnus-uu-saved-article-name nil)
236
237 (defconst gnus-uu-begin-string "^begin[ \t]+[0-7][0-7][0-7][ \t]+\\(.*\\)$")
238 (defconst gnus-uu-end-string "^end[ \t]*$")
239
240 (defconst gnus-uu-body-line "^M")
241 (let ((i 61))
242   (while (> (setq i (1- i)) 0)
243     (setq gnus-uu-body-line (concat gnus-uu-body-line "[^a-z]")))
244   (setq gnus-uu-body-line (concat gnus-uu-body-line ".?$")))
245
246 ;"^M.............................................................?$"
247
248 (defconst gnus-uu-shar-begin-string "^#! */bin/sh")
249
250 (defvar gnus-uu-shar-file-name nil)
251 (defconst gnus-uu-shar-name-marker "begin [0-7][0-7][0-7][ \t]+\\(\\(\\w\\|\\.\\)*\\b\\)")
252
253 (defconst gnus-uu-postscript-begin-string "^%!PS-")
254 (defconst gnus-uu-postscript-end-string "^%%EOF$")
255
256 (defvar gnus-uu-file-name nil)
257 (defconst gnus-uu-uudecode-process nil)
258 (defvar gnus-uu-binhex-article-name nil)
259
260 (defvar gnus-uu-generated-file-list nil)
261 (defvar gnus-uu-work-dir nil)
262
263 (defconst gnus-uu-output-buffer-name " *Gnus UU Output*")
264
265 (defvar gnus-uu-default-dir default-directory)
266
267 ;; Keymaps
268
269 (defvar gnus-uu-extract-map nil)
270 (defvar gnus-uu-extract-view-map nil)
271 (defvar gnus-uu-mark-map nil)
272
273 (define-prefix-command 'gnus-uu-mark-map)
274 (define-key gnus-summary-mark-map "p" 'gnus-uu-mark-map)
275 (define-key gnus-uu-mark-map "p" 'gnus-summary-mark-as-processable)
276 (define-key gnus-uu-mark-map "u" 'gnus-summary-unmark-as-processable)
277 (define-key gnus-uu-mark-map "U" 'gnus-summary-unmark-all-processable)
278 (define-key gnus-uu-mark-map "s" 'gnus-uu-mark-series)
279 (define-key gnus-uu-mark-map "r" 'gnus-uu-mark-region)
280 (define-key gnus-uu-mark-map "R" 'gnus-uu-mark-by-regexp)
281 (define-key gnus-uu-mark-map "t" 'gnus-uu-mark-thread)
282 (define-key gnus-uu-mark-map "a" 'gnus-uu-mark-all)
283 (define-key gnus-uu-mark-map "S" 'gnus-uu-mark-sparse)
284
285 (define-prefix-command 'gnus-uu-extract-map)
286 (define-key gnus-summary-mode-map "X" 'gnus-uu-extract-map)
287 ;;(define-key gnus-uu-extract-map "x" 'gnus-uu-extract-any)
288 ;;(define-key gnus-uu-extract-map "m" 'gnus-uu-extract-mime)
289 (define-key gnus-uu-extract-map "u" 'gnus-uu-decode-uu)
290 (define-key gnus-uu-extract-map "U" 'gnus-uu-decode-uu-and-save)
291 (define-key gnus-uu-extract-map "s" 'gnus-uu-decode-unshar)
292 (define-key gnus-uu-extract-map "S" 'gnus-uu-decode-unshar-and-save)
293 (define-key gnus-uu-extract-map "o" 'gnus-uu-decode-save)
294 (define-key gnus-uu-extract-map "O" 'gnus-uu-decode-save)
295 (define-key gnus-uu-extract-map "b" 'gnus-uu-decode-binhex)
296 (define-key gnus-uu-extract-map "B" 'gnus-uu-decode-binhex)
297 (define-key gnus-uu-extract-map "p" 'gnus-uu-decode-postscript)
298 (define-key gnus-uu-extract-map "P" 'gnus-uu-decode-postscript-and-save)
299
300 (define-prefix-command 'gnus-uu-extract-view-map)
301 (define-key gnus-uu-extract-map "v" 'gnus-uu-extract-view-map)
302 (define-key gnus-uu-extract-view-map "u" 'gnus-uu-decode-uu-view)
303 (define-key gnus-uu-extract-view-map "U" 'gnus-uu-decode-uu-and-save-view)
304 (define-key gnus-uu-extract-view-map "s" 'gnus-uu-decode-unshar-view)
305 (define-key gnus-uu-extract-view-map "S" 'gnus-uu-decode-unshar-and-save-view)
306 (define-key gnus-uu-extract-view-map "o" 'gnus-uu-decode-save-view)
307 (define-key gnus-uu-extract-view-map "O" 'gnus-uu-decode-save-view)
308 (define-key gnus-uu-extract-view-map "b" 'gnus-uu-decode-binhex-view)
309 (define-key gnus-uu-extract-view-map "B" 'gnus-uu-decode-binhex-view)
310 (define-key gnus-uu-extract-view-map "p" 'gnus-uu-decode-postscript-view)
311 (define-key gnus-uu-extract-view-map "P" 'gnus-uu-decode-postscript-and-save-view)
312
313
314
315 ;; Commands.
316
317 (defun gnus-uu-decode-uu (n)
318   "Uudecodes the current article."
319   (interactive "P") 
320   (gnus-uu-decode-with-method 'gnus-uu-uustrip-article n))
321
322 (defun gnus-uu-decode-uu-and-save (n dir)
323   "Decodes and saves the resulting file."
324   (interactive
325    (list current-prefix-arg
326          (file-name-as-directory
327           (read-file-name "Uudecode and save in dir: "
328                           gnus-uu-default-dir
329                           gnus-uu-default-dir t))))
330   (gnus-uu-decode-with-method 'gnus-uu-uustrip-article n dir))
331
332 (defun gnus-uu-decode-unshar (n)
333   "Unshars the current article."
334   (interactive "P")
335   (gnus-uu-decode-with-method 'gnus-uu-unshar-article n nil nil 'scan))
336
337 (defun gnus-uu-decode-unshar-and-save (n dir)
338   "Unshars and saves the current article."
339   (interactive
340    (list current-prefix-arg
341          (file-name-as-directory
342           (read-file-name "Unshar and save in dir: "
343                           gnus-uu-default-dir
344                           gnus-uu-default-dir t))))
345   (gnus-uu-decode-with-method 'gnus-uu-unshar-article n dir nil 'scan))
346
347 (defun gnus-uu-decode-save (n file)
348   "Saves the current article."
349   (interactive
350    (list current-prefix-arg
351          (read-file-name 
352           (if gnus-uu-save-separate-articles
353               "Save articles is dir: "
354             "Save articles in file: ")
355           gnus-uu-default-dir
356           gnus-uu-default-dir)))
357   (setq gnus-uu-saved-article-name file)
358   (gnus-uu-decode-with-method 'gnus-uu-save-article n nil t)
359   (setq gnus-uu-generated-file-list 
360         (delete file gnus-uu-generated-file-list)))
361
362 (defun gnus-uu-decode-binhex (n dir)
363   "Unbinhexes the current article."
364   (interactive
365    (list current-prefix-arg
366          (file-name-as-directory
367           (read-file-name "Unbinhex and save in dir: "
368                           gnus-uu-default-dir
369                           gnus-uu-default-dir))))
370   (setq gnus-uu-binhex-article-name 
371         (make-temp-name (concat gnus-uu-work-dir "binhex")))
372   (gnus-uu-decode-with-method 'gnus-uu-binhex-article n dir))
373
374 (defun gnus-uu-decode-uu-view (n)
375   "Uudecodes and views the current article."    
376   (interactive "P")
377   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
378     (gnus-uu-decode-uu n)))
379
380 (defun gnus-uu-decode-uu-and-save-view (n dir)
381   "Decodes, views and saves the resulting file."
382   (interactive
383    (list current-prefix-arg
384          (read-file-name "Uudecode, view and save in dir: "
385                          gnus-uu-default-dir
386                          gnus-uu-default-dir t)))
387   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
388     (gnus-uu-decode-uu-and-save n dir)))
389
390 (defun gnus-uu-decode-unshar-view (n)
391   "Unshars and views the current article."
392   (interactive "P")
393   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
394     (gnus-uu-decode-unshar n)))
395
396 (defun gnus-uu-decode-unshar-and-save-view (n dir)
397   "Unshars and saves the current article."
398   (interactive
399    (list current-prefix-arg
400          (read-file-name "Unshar, view and save in dir: "
401                          gnus-uu-default-dir
402                          gnus-uu-default-dir t)))
403   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
404     (gnus-uu-decode-unshar-and-save n dir)))
405
406 (defun gnus-uu-decode-save-view (n file)
407   "Saves and views the current article."
408   (interactive
409    (list current-prefix-arg
410          (read-file-name  (if gnus-uu-save-separate-articles
411                               "Save articles is dir: "
412                             "Save articles in file: ")
413                           gnus-uu-default-dir gnus-uu-default-dir)))
414   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
415     (gnus-uu-decode-save n file)))
416
417 (defun gnus-uu-decode-binhex-view (n file)
418   "Unbinhexes and views the current article."
419   (interactive
420    (list current-prefix-arg
421          (read-file-name "Unbinhex, view and save in dir: "
422                          gnus-uu-default-dir gnus-uu-default-dir)))
423   (setq gnus-uu-binhex-article-name 
424         (make-temp-name (concat gnus-uu-work-dir "binhex")))
425   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
426     (gnus-uu-decode-binhex n file)))
427
428
429 ;; Digest and forward articles
430
431 (defun gnus-uu-digest-mail-forward (n &optional post)
432   "Digests and forwards all articles in this series."
433   (interactive "P")
434   (let ((gnus-uu-save-in-digest t)
435         (file (make-temp-name (concat gnus-uu-tmp-dir "forward")))
436         buf)
437     (gnus-uu-decode-save n file)
438     (gnus-uu-add-file file)
439     (setq buf (switch-to-buffer (get-buffer-create " *gnus-uu-forward*")))
440     (gnus-add-current-to-buffer-list)
441     (erase-buffer)
442     (delete-other-windows)
443     (insert-file file)
444     (goto-char (point-min))
445     (and (re-search-forward "^Subject: ")
446          (progn
447            (delete-region (point) (gnus-point-at-eol))
448            (insert "Digested Articles")))
449     (goto-char (point-min))
450     (and (re-search-forward "^From: ")
451          (progn
452            (delete-region (point) (gnus-point-at-eol))
453            (insert "Various")))
454     (if post
455         (gnus-forward-using-post)
456       (funcall gnus-mail-forward-method))
457     (delete-file file)
458     (kill-buffer buf)))
459
460 (defun gnus-uu-digest-post-forward (n)
461   "Digest and forward to a newsgroup."
462   (interactive "P")
463   (gnus-uu-digest-mail-forward n t))
464
465 ;; Process marking.
466
467 (defun gnus-uu-mark-by-regexp (regexp)
468   "Ask for a regular expression and set the process mark on all articles that match."
469   (interactive (list (read-from-minibuffer "Mark (regexp): ")))
470   (gnus-set-global-variables)
471   (let ((articles (gnus-uu-find-articles-matching regexp)))
472     (while articles
473       (gnus-summary-set-process-mark (car articles))
474       (setq articles (cdr articles)))
475     (message ""))
476   (gnus-summary-position-cursor))
477
478 (defun gnus-uu-mark-series ()
479   "Mark the current series with the process mark."
480   (interactive)
481   (gnus-set-global-variables)
482   (let ((articles (gnus-uu-find-articles-matching)))
483     (while articles
484       (gnus-summary-set-process-mark (car articles))
485       (setq articles (cdr articles)))
486     (message ""))
487   (gnus-summary-position-cursor))
488
489 (defun gnus-uu-mark-region (beg end)
490   "Marks all articles between point and mark."
491   (interactive "r")
492   (gnus-set-global-variables)
493   (save-excursion
494     (goto-char beg)
495     (while (< (point) end)
496       (gnus-summary-set-process-mark (gnus-summary-article-number))
497       (forward-line 1)))
498   (gnus-summary-position-cursor))
499       
500 (defun gnus-uu-mark-thread ()
501   "Marks all articles downwards in this thread."
502   (interactive)
503   (gnus-set-global-variables)
504   (let ((level (gnus-summary-thread-level)))
505     (while (and (gnus-summary-set-process-mark (gnus-summary-article-number))
506                 (zerop (gnus-summary-next-subject 1))
507                 (> (gnus-summary-thread-level) level))))
508   (gnus-summary-position-cursor))
509
510 (defun gnus-uu-mark-sparse ()
511   "Mark all series that have some articles marked."
512   (interactive)
513   (gnus-set-global-variables)
514   (let ((marked (nreverse gnus-newsgroup-processable))
515         subject articles total headers)
516     (or marked (error "No articles marked with the process mark"))
517     (setq gnus-newsgroup-processable nil)
518     (save-excursion
519       (while marked
520         (and (setq headers (gnus-get-header-by-number (car marked)))
521              (setq subject (header-subject headers)
522                    articles (gnus-uu-find-articles-matching 
523                              (gnus-uu-reginize-string subject))
524                    total (nconc total articles)))
525         (while articles
526           (gnus-summary-set-process-mark (car articles))
527           (setcdr marked (delq (car articles) (cdr marked)))
528           (setq articles (cdr articles)))
529         (setq marked (cdr marked)))
530       (setq gnus-newsgroup-processable (nreverse total)))
531     (gnus-summary-position-cursor)))
532
533 (defun gnus-uu-mark-all ()
534   "Mark all articles in \"series\" order."
535   (interactive)
536   (gnus-set-global-variables)
537   (setq gnus-newsgroup-processable nil)
538   (save-excursion
539     (goto-char (point-min))
540     (let (number)
541       (while (and (not (eobp)) 
542                   (setq number (gnus-summary-article-number)))
543         (if (not (memq number gnus-newsgroup-processable))
544             (save-excursion (gnus-uu-mark-series)))
545         (forward-line 1))))
546   (gnus-summary-position-cursor))
547
548 ;; All PostScript functions written by Erik Selberg <speed@cs.washington.edu>. 
549
550 (defun gnus-uu-decode-postscript (n)
551   "Gets postscript of the current article."
552   (interactive "P")
553   (gnus-uu-decode-with-method 'gnus-uu-decode-postscript-article n))
554
555 (defun gnus-uu-decode-postscript-view (n)
556   "Gets and views the current article."
557   (interactive "P")
558   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
559     (gnus-uu-decode-postscript n)))
560
561 (defun gnus-uu-decode-postscript-and-save (n dir)
562   "Extracts postscript and saves the current article."
563   (interactive
564    (list current-prefix-arg
565          (file-name-as-directory
566           (read-file-name "Save in dir: "
567                           gnus-uu-default-dir
568                           gnus-uu-default-dir t))))
569   (gnus-uu-decode-with-method 'gnus-uu-decode-postscript-article n dir))
570
571
572 (defun gnus-uu-decode-postscript-and-save-view (n dir)
573   "Decodes, views and saves the resulting file."
574   (interactive
575    (list current-prefix-arg
576          (read-file-name "Where do you want to save the file(s)? "
577                          gnus-uu-default-dir
578                          gnus-uu-default-dir t)))
579   (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic)))
580     (gnus-uu-decode-postscript-and-save n dir)))
581
582
583 ;; Internal functions.
584
585 (defun gnus-uu-decode-with-method (method n &optional save not-insert scan)
586   (gnus-uu-initialize scan)
587   (if save (setq gnus-uu-default-dir save))
588   (let ((articles (gnus-uu-get-list-of-articles n))
589         files)
590     (setq files (gnus-uu-grab-articles articles method t))
591     (let ((gnus-current-article (car articles)))
592       (and scan (setq files (gnus-uu-scan-directory gnus-uu-work-dir))))
593     (and save (gnus-uu-save-files files save))
594     (setq files (gnus-uu-unpack-files files))
595     (gnus-uu-add-file (mapcar (lambda (file) (cdr (assq 'name file))) files))
596     (setq files (nreverse (gnus-uu-get-actions files)))
597     (or not-insert (gnus-summary-insert-pseudos files save))))
598
599 ;; Return a list of files in dir.
600 (defun gnus-uu-scan-directory (dir)
601   (let ((files (directory-files dir t))
602         dirs out)
603     (while files
604       (cond ((string-match "/\\.\\.?$" (car files)))
605             ((file-directory-p (car files))
606              (setq dirs (cons (car files) dirs)))
607             (t (setq out (cons (list (cons 'name (car files))
608                                      (cons 'article gnus-current-article))
609                                out))))
610       (setq files (cdr files)))
611     (apply 'nconc out (mapcar (lambda (d) (gnus-uu-scan-directory d))
612                               dirs))))
613
614 (defun gnus-uu-save-files (files dir)
615   (let ((len (length files))
616         to-file file)
617     (while files
618       (and 
619        (setq file (cdr (assq 'name (car files))))
620        (file-exists-p file)
621        (progn
622          (setq to-file (if (file-directory-p dir)
623                            (concat dir (file-name-nondirectory file))
624                          dir))
625          (and (or (not (file-exists-p to-file))
626                   (gnus-y-or-n-p (format "%s exists; overwrite? "
627                                          to-file)))
628               (copy-file file to-file t t))))
629       (setq files (cdr files)))
630     (message "Saved %d file%s" len (if (> len 1) "s" ""))))
631
632 ;; Functions for saving and possibly digesting articles without
633 ;; any decoding.
634
635 ;; Function called by gnus-uu-grab-articles to treat each article.
636 (defun gnus-uu-save-article (buffer in-state)
637   (cond 
638    (gnus-uu-save-separate-articles
639     (save-excursion
640       (set-buffer buffer)
641       (write-region 1 (point-max) (concat gnus-uu-saved-article-name 
642                                           gnus-current-article))
643       (cond ((eq in-state 'first) (list gnus-uu-saved-article-name 'begin))
644             ((eq in-state 'first-and-last) (list gnus-uu-saved-article-name 
645                                                  'begin 'end))
646             ((eq in-state 'last) (list 'end))
647             (t (list 'middle)))))
648    ((not gnus-uu-save-in-digest)
649     (save-excursion
650       (set-buffer buffer)
651       (write-region 1 (point-max) gnus-uu-saved-article-name t)
652       (cond ((eq in-state 'first) (list gnus-uu-saved-article-name 'begin))
653             ((eq in-state 'first-and-last) (list gnus-uu-saved-article-name 
654                                                  'begin 'end))
655             ((eq in-state 'last) (list 'end))
656             (t (list 'middle)))))
657     (t
658      (let ((name (file-name-nondirectory gnus-uu-saved-article-name))
659            beg subj headers headline sorthead body end-string state)
660        (if (or (eq in-state 'first) 
661                (eq in-state 'first-and-last))
662            (progn 
663              (setq state (list 'begin))
664              (save-excursion (set-buffer (get-buffer-create "*gnus-uu-body*"))
665                              (erase-buffer))
666              (save-excursion 
667                (set-buffer (get-buffer-create "*gnus-uu-pre*"))
668                (erase-buffer)
669                (insert (format 
670                         "Date: %s\nFrom: %s\nSubject: %s Digest\n\nTopics:\n"
671                         (current-time-string) name name))))
672          (if (not (eq in-state 'end))
673              (setq state (list 'middle))))
674        (save-excursion
675          (set-buffer (get-buffer "*gnus-uu-body*"))
676          (goto-char (setq beg (point-max)))
677          (save-excursion
678            (save-restriction
679              (set-buffer buffer)
680              (goto-char (point-min))
681              (re-search-forward "\n\n")
682              (setq body (buffer-substring (1- (point)) (point-max)))
683              (narrow-to-region 1 (point))
684              (setq headers gnus-uu-digest-headers)
685              (while headers
686                (setq headline (car headers))
687                (setq headers (cdr headers))
688                (goto-char (point-min))
689                (if (re-search-forward headline nil t)
690                    (setq sorthead 
691                          (concat sorthead
692                                  (buffer-substring 
693                                   (match-beginning 0)
694                                   (or (and (re-search-forward "^[^ \t]" nil t)
695                                            (1- (point)))
696                                       (progn (forward-line 1) (point))))))))
697              (widen)))
698          (insert sorthead)(goto-char (point-max))
699          (insert body)(goto-char (point-max))
700          (insert (concat "\n" (make-string 30 ?-) "\n\n"))
701          (goto-char beg)
702          (if (re-search-forward "^Subject: \\(.*\\)$" nil t)
703              (progn
704                (setq subj (buffer-substring (match-beginning 1) (match-end 1)))
705                (save-excursion 
706                 (set-buffer (get-buffer "*gnus-uu-pre*"))
707                 (insert (format "   %s\n" subj))))))
708       (if (or (eq in-state 'last)
709               (eq in-state 'first-and-last))
710           (progn
711             (save-excursion
712               (set-buffer (get-buffer "*gnus-uu-pre*"))
713               (insert (format "\n\n%s\n\n" (make-string 70 ?-)))
714               (write-region 1 (point-max) gnus-uu-saved-article-name))
715             (save-excursion
716               (set-buffer (get-buffer "*gnus-uu-body*"))
717               (goto-char (point-max))
718               (insert 
719                (concat (setq end-string (format "End of %s Digest" name)) 
720                        "\n"))
721               (insert (concat (make-string (length end-string) ?*) "\n"))
722               (write-region 1 (point-max) gnus-uu-saved-article-name t))
723             (kill-buffer (get-buffer "*gnus-uu-pre*"))
724             (kill-buffer (get-buffer "*gnus-uu-body*"))
725             (setq state (cons 'end state))))
726       (if (memq 'begin state)
727           (cons gnus-uu-saved-article-name state)
728         state)))))
729
730 ;; Binhex treatment - not very advanced. 
731
732 (defconst gnus-uu-binhex-body-line 
733   "^[^:]...............................................................$")
734 (defconst gnus-uu-binhex-begin-line 
735   "^:...............................................................$")
736 (defconst gnus-uu-binhex-end-line
737   ":$")
738
739 (defun gnus-uu-binhex-article (buffer in-state)
740   (let (state start-char)
741     (save-excursion
742       (set-buffer buffer)
743       (widen)
744       (goto-char (point-min))
745       (if (not (re-search-forward gnus-uu-binhex-begin-line nil t))
746           (if (not (re-search-forward gnus-uu-binhex-body-line nil t))
747               (setq state (list 'wrong-type))))
748
749       (if (memq 'wrong-type state)
750           ()
751         (beginning-of-line)
752         (setq start-char (point))
753         (if (looking-at gnus-uu-binhex-begin-line)
754             (progn
755               (setq state (list 'begin))
756               (write-region 1 1 gnus-uu-binhex-article-name))
757           (setq state (list 'middle)))
758         (goto-char (point-max))
759         (re-search-backward (concat gnus-uu-binhex-body-line "\\|" 
760                                     gnus-uu-binhex-end-line) nil t)
761         (if (looking-at gnus-uu-binhex-end-line)
762             (setq state (if (memq 'begin state)
763                             (cons 'end state)
764                           (list 'end))))
765         (beginning-of-line)
766         (forward-line 1)
767         (if (file-exists-p gnus-uu-binhex-article-name)
768             (append-to-file start-char (point) gnus-uu-binhex-article-name))))
769     (if (memq 'begin state)
770         (cons gnus-uu-binhex-article-name state)
771       state)))
772
773 ;; PostScript
774
775 (defun gnus-uu-decode-postscript-article (process-buffer in-state)
776   (let ((state (list 'ok))
777         start-char end-char file-name)
778     (save-excursion
779      (set-buffer process-buffer)
780      (goto-char (point-min))
781      (if (not (re-search-forward gnus-uu-postscript-begin-string nil t))
782          (setq state (list 'wrong-type))
783        (beginning-of-line)
784        (setq start-char (point))
785        (if (not (re-search-forward gnus-uu-postscript-end-string nil t))
786            (setq state (list 'wrong-type))
787          (setq end-char (point))
788          (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
789          (insert-buffer-substring process-buffer start-char end-char)
790          (setq file-name (concat gnus-uu-work-dir (cdr gnus-article-current) ".ps"))
791          (write-region (point-min) (point-max) file-name)
792          (setq state (list file-name'begin 'end))
793
794          ))
795      )
796     state))
797       
798
799 ;; Find actions.
800
801 (defun gnus-uu-get-actions (files)
802   (let ((ofiles files)
803         action name)
804     (while files
805       (setq name (cdr (assq 'name (car files))))
806       (and 
807        (setq action (gnus-uu-get-action name))
808        (setcar files (nconc (list (if (string= action "gnus-uu-archive")
809                                       (cons 'action "file")
810                                     (cons 'action action))
811                                   (cons 'execute (if (string-match "%" action)
812                                                      (format action name)
813                                                    (concat action " " name))))
814                             (car files))))
815       (setq files (cdr files)))
816     ofiles))
817
818 (defun gnus-uu-get-action (file-name)
819   (let (action)
820     (setq action 
821           (gnus-uu-choose-action 
822            file-name
823            (append 
824             gnus-uu-user-view-rules
825             (if gnus-uu-ignore-default-view-rules 
826                 nil 
827               gnus-uu-default-view-rules)
828             gnus-uu-user-view-rules-end)))
829     (if (and (not (string= (or action "") "gnus-uu-archive")) 
830              gnus-uu-view-with-metamail)
831         (if (setq action 
832                   (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list))
833             (setq action (format "metamail -d -b -c \"%s\"" action))))
834     action))
835
836
837 ;; Functions for treating subjects and collecting series.
838
839 (defun gnus-uu-reginize-string (string)
840   ;; Takes a string and puts a \ in front of every special character;
841   ;; ignores any leading "version numbers" thingies that they use in
842   ;; the comp.binaries groups, and either replaces anything that looks
843   ;; like "2/3" with "[0-9]+/[0-9]+" or, if it can't find something
844   ;; like that, replaces the last two numbers with "[0-9]+". This, in
845   ;; my experience, should get most postings of a series.
846   (let ((count 2)
847         (vernum "v[0-9]+[a-z][0-9]+:")
848         beg)
849     (save-excursion
850       (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
851       (buffer-disable-undo (current-buffer))
852       (erase-buffer)
853       (insert (regexp-quote string))
854       (setq beg 1)
855
856       (setq case-fold-search nil)
857       (goto-char (point-min))
858       (if (looking-at vernum)
859           (progn
860             (replace-match vernum t t)
861             (setq beg (length vernum))))
862
863       (goto-char beg)
864       (if (re-search-forward "[ \t]*[0-9]+/[0-9]+" nil t)
865           (replace-match " [0-9]+/[0-9]+")
866
867         (goto-char beg)
868         (if (re-search-forward "[0-9]+[ \t]*of[ \t]*[0-9]+" nil t)
869             (replace-match "[0-9]+ of [0-9]+")
870
871           (end-of-line)
872           (while (and (re-search-backward "[0-9]" nil t) (> count 0))
873             (while (and 
874                     (looking-at "[0-9]") 
875                     (< 1 (goto-char (1- (point))))))
876             (re-search-forward "[0-9]+" nil t)
877             (replace-match "[0-9]+")
878             (backward-char 5)
879             (setq count (1- count)))))
880
881       (goto-char beg)
882       (while (re-search-forward "[ \t]+" nil t)
883         (replace-match "[ \t]*" t t))
884
885       (buffer-substring 1 (point-max)))))
886
887 (defun gnus-uu-get-list-of-articles (n)
888   ;; If N is non-nil, the article numbers of the N next articles
889   ;; will be returned.
890   ;; If any articles have been marked as processable, they will be
891   ;; returned. 
892   ;; Failing that, articles that have subjects that are part of the
893   ;; same "series" as the current will be returned.
894   (let (articles)
895   (cond 
896    (n
897     (let ((backward (< n 0))
898           (n (abs n)))
899       (save-excursion
900         (while (and (> n 0)
901                     (setq articles (cons (gnus-summary-article-number) 
902                                          articles))
903                     (gnus-summary-search-forward nil nil backward))
904           (setq n (1- n))))
905       (nreverse articles)))
906    (gnus-newsgroup-processable
907     (reverse gnus-newsgroup-processable))
908    (t
909     (gnus-uu-find-articles-matching)))))
910
911 (defun gnus-uu-string< (l1 l2)
912   (string< (car l1) (car l2)))
913
914 (defun gnus-uu-find-articles-matching 
915   (&optional subject only-unread do-not-translate)
916   ;; Finds all articles that matches the regexp SUBJECT.  If it is
917   ;; nil, the current article name will be used. If ONLY-UNREAD is
918   ;; non-nil, only unread articles are chosen. If DO-NOT-TRANSLATE is
919   ;; non-nil, article names are not equalized before sorting.
920   (let ((subject (or subject 
921                      (gnus-uu-reginize-string (gnus-summary-subject-string))))
922         list-of-subjects)
923     (save-excursion
924       (if (not subject)
925           ()
926         ;; Collect all subjects matching subject.
927         (let ((case-fold-search t)
928               subj mark)
929           (goto-char (point-min))
930           (while (not (eobp))
931             (and (setq subj (gnus-summary-subject-string))
932                  (string-match subject subj)
933                  (or (not only-unread)
934                      (= (setq mark (gnus-summary-article-mark)) 
935                         gnus-unread-mark)
936                      (= mark gnus-ticked-mark)
937                      (= mark gnus-dormant-mark))
938                  (setq list-of-subjects 
939                        (cons (cons subj (gnus-summary-article-number))
940                              list-of-subjects)))
941             (forward-line 1)))
942
943         ;; Expand numbers, sort, and return the list of article
944         ;; numbers.
945         (mapcar (lambda (sub) (cdr sub)) 
946                 (sort (gnus-uu-expand-numbers 
947                        list-of-subjects
948                        (not do-not-translate)) 
949                       'gnus-uu-string<))))))
950
951 (defun gnus-uu-expand-numbers (string-list &optional translate)
952   ;; Takes a list of strings and "expands" all numbers in all the
953   ;; strings.  That is, this function makes all numbers equal length by
954   ;; prepending lots of zeroes before each number. This is to ease later
955   ;; sorting to find out what sequence the articles are supposed to be
956   ;; decoded in. Returns the list of expanded strings.
957   (let ((out-list string-list)
958         string)
959     (save-excursion
960       (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
961       (buffer-disable-undo (current-buffer))
962       (while string-list
963         (erase-buffer)
964         (insert (car (car string-list)))
965         ;; Translate multiple spaces to one space.
966         (goto-char (point-min))
967         (while (re-search-forward "[ \t]+" nil t)
968           (replace-match " "))
969         ;; Translate all characters to "a".
970         (goto-char (point-min))
971         (if translate 
972             (while (re-search-forward "[A-Za-z]" nil t)
973               (replace-match "a" t t)))
974         ;; Expand numbers.
975         (goto-char (point-min))
976         (while (re-search-forward "[0-9]+" nil t)
977           (replace-match  
978            (format "%06d" 
979                    (string-to-int (buffer-substring 
980                                    (match-beginning 0) (match-end 0))))))
981         (setq string (buffer-substring 1 (point-max)))
982         (setcar (car string-list) string)
983         (setq string-list (cdr string-list))))
984     out-list))
985
986
987 ;; `gnus-uu-grab-articles' is the general multi-article treatment
988 ;; function.  It takes a list of articles to be grabbed and a function
989 ;; to apply to each article.
990 ;;
991 ;; The function to be called should take two parameters.  The first
992 ;; parameter is the article buffer. The function should leave the
993 ;; result, if any, in this buffer. Most treatment functions will just
994 ;; generate files...
995 ;;
996 ;; The second parameter is the state of the list of articles, and can
997 ;; have four values: `first', `middle', `last' and `first-and-last'.
998 ;;
999 ;; The function should return a list. The list may contain the
1000 ;; following symbols:
1001 ;; `error' if an error occurred
1002 ;; `begin' if the beginning of an encoded file has been received
1003 ;;   If the list returned contains a `begin', the first element of
1004 ;;   the list *must* be a string with the file name of the decoded
1005 ;;   file.
1006 ;; `end' if the the end of an encoded file has been received
1007 ;; `middle' if the article was a body part of an encoded file
1008 ;; `wrong-type' if the article was not a part of an encoded file
1009 ;; `ok', which can be used everything is ok
1010
1011 (defvar gnus-uu-has-been-grabbed nil)
1012
1013 (defun gnus-uu-unmark-list-of-grabbed (&optional dont-unmark-last-article)
1014   (let (art)
1015     (if (not (and gnus-uu-has-been-grabbed
1016                   gnus-uu-unmark-articles-not-decoded))
1017         ()
1018       (if dont-unmark-last-article
1019           (progn
1020             (setq art (car gnus-uu-has-been-grabbed))
1021             (setq gnus-uu-has-been-grabbed (cdr gnus-uu-has-been-grabbed))))
1022       (while gnus-uu-has-been-grabbed
1023         (gnus-summary-tick-article (car gnus-uu-has-been-grabbed) t)
1024         (setq gnus-uu-has-been-grabbed (cdr gnus-uu-has-been-grabbed)))
1025       (if dont-unmark-last-article
1026           (setq gnus-uu-has-been-grabbed (list art))))))
1027
1028 ;; This function takes a list of articles and a function to apply to
1029 ;; each article grabbed. 
1030 ;; 
1031 ;; This function returns a list of files decoded if the grabbing and
1032 ;; the process-function has been successful and nil otherwise.
1033 (defun gnus-uu-grab-articles 
1034   (articles process-function &optional sloppy limit no-errors)
1035   (let ((state 'first) 
1036         has-been-begin article result-file result-files process-state 
1037         article-buffer)
1038  
1039     (if (not (gnus-server-opened gnus-current-select-method))
1040         (progn
1041           (gnus-start-news-server)
1042           (gnus-request-group gnus-newsgroup-name)))
1043
1044     (setq gnus-uu-has-been-grabbed nil)
1045
1046     (while (and articles 
1047                 (not (memq 'error process-state))
1048                 (or sloppy
1049                     (not (memq 'end process-state))))
1050
1051       (setq article (car articles))
1052       (setq articles (cdr articles))
1053       (setq gnus-uu-has-been-grabbed (cons article gnus-uu-has-been-grabbed))
1054
1055       (if (eq articles ()) 
1056           (if (eq state 'first)
1057               (setq state 'first-and-last)
1058             (setq state 'last)))
1059
1060       (message "Getting article %d, %s" article (gnus-uu-part-number article))
1061
1062       (if (not (= (or gnus-current-article 0) article))
1063           (let ((nntp-async-number nil))
1064             (gnus-request-article article gnus-newsgroup-name
1065                                   nntp-server-buffer)
1066             (setq gnus-last-article gnus-current-article)
1067             (setq gnus-current-article article)
1068             (setq gnus-article-current (cons gnus-newsgroup-name article))
1069             (if (stringp nntp-server-buffer)
1070                 (setq article-buffer nntp-server-buffer)
1071               (setq article-buffer (buffer-name nntp-server-buffer))))
1072         (setq article-buffer gnus-article-buffer))
1073
1074       (buffer-disable-undo article-buffer)
1075       ;; Mark article as read.
1076       (and (memq article gnus-newsgroup-processable)
1077            (gnus-summary-remove-process-mark article))
1078       (run-hooks 'gnus-mark-article-hook)
1079
1080       (setq process-state (funcall process-function article-buffer state))
1081
1082       (if (or (memq 'begin process-state)
1083               (and (or (eq state 'first) (eq state 'first-and-last))
1084                    (memq 'ok process-state)))
1085           (progn
1086             (if has-been-begin
1087                 (if (and result-file (file-exists-p result-file)) 
1088                     (delete-file result-file)))
1089             (if (memq 'begin process-state)
1090                 (setq result-file (car process-state)))
1091             (setq has-been-begin t)))
1092
1093       (if (memq 'end process-state)
1094           (progn
1095             (setq gnus-uu-has-been-grabbed nil)
1096             (setq result-files (cons (list (cons 'name result-file)
1097                                            (cons 'article article))
1098                                      result-files))
1099             (setq has-been-begin nil)
1100             (and limit (= (length result-files) limit)
1101                  (setq articles nil))))
1102
1103       (if (and (or (eq state 'last) (eq state 'first-and-last))
1104                (not (memq 'end process-state)))
1105                 (if (and result-file (file-exists-p result-file))
1106                     (delete-file result-file)))
1107
1108       (if (not (memq 'wrong-type process-state))
1109           ()
1110         (if gnus-uu-unmark-articles-not-decoded
1111             (gnus-summary-tick-article article t)))
1112
1113       (if (and (not has-been-begin)
1114                (not sloppy)
1115                (or (memq 'end process-state)
1116                    (memq 'middle process-state)))
1117           (progn
1118             (setq process-state (list 'error))
1119             (message "No begin part at the beginning")
1120             (sleep-for 2))
1121         (setq state 'middle)))
1122
1123     ;; Make sure the last article is put in the article buffer & fix
1124     ;; windows etc.
1125
1126     (if (not (string= article-buffer gnus-article-buffer))
1127         (save-excursion
1128           (set-buffer (get-buffer-create gnus-article-buffer))
1129           (let ((buffer-read-only nil))
1130             (widen)
1131             (erase-buffer)
1132             (insert-buffer-substring article-buffer)
1133             (goto-char (point-min)))))
1134
1135     (if result-files
1136         ()
1137       (if (not has-been-begin)
1138           (if (not no-errors) (message "Wrong type file"))
1139         (if (memq 'error process-state)
1140             (setq result-files nil)
1141           (if (not (or (memq 'ok process-state) 
1142                        (memq 'end process-state)))
1143               (progn
1144                 (if (not no-errors)
1145                     (message "End of articles reached before end of file"))
1146                 (setq result-files nil))
1147             (gnus-uu-unmark-list-of-grabbed)))))
1148     result-files))
1149
1150 (defun gnus-uu-part-number (article)
1151   (let ((subject (header-subject (gnus-get-header-by-number article))))
1152     (if (string-match "[0-9]+ */[0-9]+\\|[0-9]+ * of *[0-9]+"
1153                       subject)
1154         (substring subject (match-beginning 0) (match-end 0))
1155       "")))
1156
1157 (defun gnus-uu-uudecode-sentinel (process event)
1158   (delete-process (get-process process)))
1159
1160 (defun gnus-uu-uustrip-article (process-buffer in-state)
1161   ;; Uudecodes a file asynchronously.
1162   (let ((state (list 'ok))
1163         (process-connection-type nil)
1164         start-char pst name-beg name-end)
1165     (save-excursion
1166       (set-buffer process-buffer)
1167       (let ((case-fold-search nil)
1168             (buffer-read-only nil))
1169
1170         (goto-char (point-min))
1171
1172         (if gnus-uu-kill-carriage-return
1173             (progn
1174               (while (search-forward "\r" nil t)
1175                 (delete-backward-char 1))
1176               (goto-char (point-min))))
1177
1178         (if (not (re-search-forward gnus-uu-begin-string nil t))
1179             (if (not (re-search-forward gnus-uu-body-line nil t))
1180                 (setq state (list 'wrong-type))))
1181      
1182         (if (memq 'wrong-type state)
1183             ()
1184           (beginning-of-line)
1185           (setq start-char (point))
1186
1187           (if (looking-at gnus-uu-begin-string)
1188               (progn 
1189                 (setq name-end (match-end 1)
1190                       name-beg (match-beginning 1))
1191                 ;; Remove any non gnus-uu-body-line right after start.
1192                 (forward-line 1)
1193                 (or (looking-at gnus-uu-body-line)
1194                     (gnus-delete-line))
1195  
1196                 ; Replace any slashes and spaces in file names before decoding
1197                 (goto-char name-beg)
1198                 (while (re-search-forward "/" name-end t)
1199                   (replace-match ","))
1200                 (goto-char name-beg)
1201                 (while (re-search-forward " " name-end t)
1202                   (replace-match "_"))
1203                 (goto-char name-beg)
1204                 (if (re-search-forward "_*$" name-end t)
1205                   (replace-match ""))
1206
1207                 (setq gnus-uu-file-name (buffer-substring name-beg name-end))
1208                 (and gnus-uu-uudecode-process
1209                      (setq pst (process-status 
1210                                 (or gnus-uu-uudecode-process "nevair")))
1211                      (if (or (eq pst 'stop) (eq pst 'run))
1212                          (progn
1213                            (delete-process gnus-uu-uudecode-process)
1214                            (gnus-uu-unmark-list-of-grabbed t))))
1215                 (if (get-process "*uudecode*")
1216                     (delete-process "*uudecode*"))
1217                 (setq gnus-uu-uudecode-process
1218                       (start-process 
1219                        "*uudecode*" 
1220                        (get-buffer-create gnus-uu-output-buffer-name)
1221                        "sh" "-c" 
1222                        (format "cd %s ; uudecode" gnus-uu-work-dir)))
1223                 (set-process-sentinel 
1224                  gnus-uu-uudecode-process 'gnus-uu-uudecode-sentinel)
1225                 (setq state (list 'begin))
1226                 (gnus-uu-add-file (concat gnus-uu-work-dir gnus-uu-file-name)))
1227             (setq state (list 'middle)))
1228         
1229           (goto-char (point-max))
1230
1231           (re-search-backward 
1232            (concat gnus-uu-body-line "\\|" gnus-uu-end-string) nil t)
1233           (beginning-of-line)
1234
1235           (if (looking-at gnus-uu-end-string)
1236               (setq state (cons 'end state)))
1237           (forward-line 1)
1238
1239           (and gnus-uu-uudecode-process
1240                (setq pst (process-status 
1241                           (or gnus-uu-uudecode-process "nevair")))
1242                (if (or (eq pst 'run) (eq pst 'stop))
1243                    (progn
1244                      (if gnus-uu-correct-stripped-uucode
1245                          (progn
1246                            (gnus-uu-check-correct-stripped-uucode 
1247                             start-char (point))
1248                            (goto-char (point-max))
1249                            (re-search-backward 
1250                             (concat gnus-uu-body-line "\\|" 
1251                                     gnus-uu-end-string) 
1252                             nil t)
1253                            (forward-line 1)))
1254
1255                      (condition-case nil
1256                          (process-send-region gnus-uu-uudecode-process 
1257                                               start-char (point))
1258                        (error 
1259                         (progn 
1260                           (delete-process gnus-uu-uudecode-process)
1261                           (message "gnus-uu: Couldn't uudecode")
1262 ;                         (sleep-for 2)
1263                           (setq state (list 'wrong-type)))))
1264
1265                      (if (memq 'end state)
1266                          (accept-process-output gnus-uu-uudecode-process)))
1267                  (setq state (list 'wrong-type))))
1268           (if (not gnus-uu-uudecode-process)
1269               (setq state (list 'wrong-type)))))
1270
1271       (if (memq 'begin state)
1272           (cons (concat gnus-uu-work-dir gnus-uu-file-name) state)
1273         state))))
1274
1275 ;; This function is used by `gnus-uu-grab-articles' to treat
1276 ;; a shared article.
1277 (defun gnus-uu-unshar-article (process-buffer in-state)
1278   (let ((state (list 'ok))
1279         start-char)
1280     (save-excursion
1281      (set-buffer process-buffer)
1282      (goto-char (point-min))
1283      (if (not (re-search-forward gnus-uu-shar-begin-string nil t))
1284          (setq state (list 'wrong-type))
1285        (beginning-of-line)
1286        (setq start-char (point))
1287        (call-process-region 
1288         start-char (point-max) "sh" nil 
1289         (get-buffer-create gnus-uu-output-buffer-name) nil 
1290         "-c" (concat "cd " gnus-uu-work-dir " ; sh"))))
1291     state))
1292
1293 ;; Returns the name of what the shar file is going to unpack.
1294 (defun gnus-uu-find-name-in-shar ()
1295   (let ((oldpoint (point))
1296         res)
1297     (goto-char (point-min))
1298     (if (re-search-forward gnus-uu-shar-name-marker nil t)
1299         (setq res (buffer-substring (match-beginning 1) (match-end 1))))
1300     (goto-char oldpoint)
1301     res))
1302
1303 ;; `gnus-uu-choose-action' chooses what action to perform given the name
1304 ;; and `gnus-uu-file-action-list'.  Returns either nil if no action is
1305 ;; found, or the name of the command to run if such a rule is found.
1306 (defun gnus-uu-choose-action (file-name file-action-list &optional no-ignore)
1307   (let ((action-list (copy-sequence file-action-list))
1308         (case-fold-search t)
1309         rule action)
1310     (and 
1311      (or no-ignore 
1312          (and (not 
1313                (and gnus-uu-ignore-files-by-name
1314                     (string-match gnus-uu-ignore-files-by-name file-name)))
1315               (not 
1316                (and gnus-uu-ignore-files-by-type
1317                     (string-match gnus-uu-ignore-files-by-type 
1318                                   (or (gnus-uu-choose-action 
1319                                        file-name gnus-uu-ext-to-mime-list t) 
1320                                       ""))))))
1321      (while (not (or (eq action-list ()) action))
1322        (setq rule (car action-list))
1323        (setq action-list (cdr action-list))
1324        (if (string-match (car rule) file-name)
1325            (setq action (car (cdr rule))))))
1326     action))
1327
1328 (defun gnus-uu-treat-archive (file-path)
1329   ;; Unpacks an archive. Returns t if unpacking is successful.
1330   (let ((did-unpack t)
1331         action command dir)
1332     (setq action (gnus-uu-choose-action 
1333                   file-path (append gnus-uu-user-archive-rules
1334                                     (if gnus-uu-ignore-default-archive-rules
1335                                         nil
1336                                       gnus-uu-default-archive-rules))))
1337
1338     (if (not action) (error "No unpackers for the file %s" file-path))
1339
1340     (string-match "/[^/]*$" file-path)
1341     (setq dir (substring file-path 0 (match-beginning 0)))
1342
1343     (if (member action gnus-uu-destructive-archivers)
1344         (copy-file file-path (concat file-path "~") t))
1345
1346     (setq command (format "cd %s ; %s" dir (gnus-uu-command action file-path)))
1347
1348     (save-excursion
1349       (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
1350       (erase-buffer))
1351
1352     (message "Unpacking: %s..." (gnus-uu-command action file-path))
1353
1354     (if (= 0 (call-process "sh" nil 
1355                            (get-buffer-create gnus-uu-output-buffer-name)
1356                            nil "-c" command))
1357         (message "")
1358       (message "Error during unpacking of archive")
1359       (setq did-unpack nil))
1360
1361     (if (member action gnus-uu-destructive-archivers)
1362         (rename-file (concat file-path "~") file-path t))
1363
1364     did-unpack))
1365
1366 (defun gnus-uu-dir-files (dir)
1367   (let ((dirs (directory-files dir t "[^/][^\\.][^\\.]?$"))
1368         files file)
1369     (while dirs
1370       (if (file-directory-p (setq file (car dirs)))
1371           (setq files (append files (gnus-uu-dir-files file)))
1372         (setq files (cons file files)))
1373       (setq dirs (cdr dirs)))
1374     files))
1375
1376 (defun gnus-uu-unpack-files (files &optional ignore)
1377   ;; Go through FILES and look for files to unpack. 
1378   (let* ((totfiles (gnus-uu-ls-r gnus-uu-work-dir))
1379          (ofiles files)
1380          file did-unpack file-entry)
1381     (gnus-uu-add-file totfiles) 
1382     (while files
1383       (setq file (cdr (setq file-entry (assq 'name (car files)))))
1384       (if (and (not (member file ignore))
1385                (equal (gnus-uu-get-action (file-name-nondirectory file))
1386                       "gnus-uu-archive"))
1387           (progn
1388             (setq did-unpack (cons file did-unpack))
1389             (or (gnus-uu-treat-archive file)
1390                 (message "Error during unpacking of %s" file))
1391             (let* ((newfiles (gnus-uu-ls-r gnus-uu-work-dir))
1392                    (nfiles newfiles))
1393               (gnus-uu-add-file newfiles)
1394               (while nfiles
1395                 (or (member (car nfiles) totfiles)
1396                     (setq ofiles (cons (list (cons 'name (car nfiles))
1397                                              (cons 'original file))
1398                                        ofiles)))
1399                 (setq nfiles (cdr nfiles)))
1400               (setq totfiles newfiles))))
1401       (setq files (cdr files)))
1402     (if did-unpack 
1403         (gnus-uu-unpack-files ofiles (append did-unpack ignore))
1404       ofiles)))
1405
1406 (defun gnus-uu-ls-r (dir)
1407   (let* ((files (gnus-uu-directory-files dir t))
1408          (ofiles files))
1409     (while files
1410       (if (file-directory-p (car files))
1411           (progn
1412             (setq ofiles (delete (car files) ofiles))
1413             (setq ofiles (append ofiles (gnus-uu-ls-r (car files))))))
1414       (setq files (cdr files)))
1415     ofiles))
1416
1417 ;; Various stuff
1418
1419 (defun gnus-uu-directory-files (dir &optional full)
1420   (let (files out file)
1421     (setq files (directory-files dir full))
1422     (while files
1423       (setq file (car files))
1424       (setq files (cdr files))
1425       (or (string-match "/\\.\\.?$" file)
1426           (setq out (cons file out))))
1427     (setq out (nreverse out))
1428     out))
1429
1430 (defun gnus-uu-check-correct-stripped-uucode (start end)
1431   (let (found beg length)
1432     (if (not gnus-uu-correct-stripped-uucode)
1433         ()
1434       (goto-char start)
1435
1436       (if (re-search-forward " \\|`" end t)
1437           (progn
1438             (goto-char start)
1439             (while (not (eobp))
1440               (progn
1441                 (if (looking-at "\n") (replace-match ""))
1442                 (forward-line 1))))
1443             
1444         (while (not (eobp))
1445           (if (looking-at (concat gnus-uu-begin-string "\\|" 
1446                                   gnus-uu-end-string))
1447               ()
1448             (if (not found)
1449                 (progn
1450                   (beginning-of-line)
1451                   (setq beg (point))
1452                   (end-of-line)
1453                   (setq length (- (point) beg))))
1454             (setq found t)
1455             (beginning-of-line)
1456             (setq beg (point))
1457             (end-of-line)
1458             (if (not (= length (- (point) beg)))
1459                 (insert (make-string (- length (- (point) beg)) ? ))))
1460           (forward-line 1))))))
1461
1462 (defvar gnus-uu-tmp-alist nil)
1463
1464 (defun gnus-uu-initialize (&optional scan)
1465   (let (entry)
1466     (if (and (not scan)
1467              (if (setq entry (assoc gnus-newsgroup-name gnus-uu-tmp-alist))
1468                  (if (file-exists-p (cdr entry))
1469                      (setq gnus-uu-work-dir (cdr entry))
1470                    (setq gnus-uu-tmp-alist (delq entry gnus-uu-tmp-alist))
1471                    nil)))
1472         t
1473       (setq gnus-uu-tmp-dir (file-name-as-directory 
1474                              (expand-file-name gnus-uu-tmp-dir)))
1475       (if (not (file-directory-p gnus-uu-tmp-dir))
1476           (error "Temp directory %s doesn't exist" gnus-uu-tmp-dir)
1477         (if (not (file-writable-p gnus-uu-tmp-dir))
1478             (error "Temp directory %s can't be written to" 
1479                    gnus-uu-tmp-dir)))
1480
1481       (setq gnus-uu-work-dir 
1482             (make-temp-name (concat gnus-uu-tmp-dir "gnus")))
1483       (gnus-uu-add-file gnus-uu-work-dir)
1484       (if (not (file-directory-p gnus-uu-work-dir)) 
1485           (gnus-make-directory gnus-uu-work-dir))
1486       (set-file-modes gnus-uu-work-dir 448)
1487       (setq gnus-uu-work-dir (file-name-as-directory gnus-uu-work-dir))
1488       (setq gnus-uu-tmp-alist (cons (cons gnus-newsgroup-name gnus-uu-work-dir)
1489                                     gnus-uu-tmp-alist)))))
1490
1491
1492 ;; Kills the temporary uu buffers, kills any processes, etc.
1493 (defun gnus-uu-clean-up ()
1494   (let (buf pst)
1495     (and gnus-uu-uudecode-process
1496          (setq pst (process-status (or gnus-uu-uudecode-process "nevair")))
1497          (if (or (eq pst 'stop) (eq pst 'run))
1498              (delete-process gnus-uu-uudecode-process)))
1499     (and (setq buf (get-buffer gnus-uu-output-buffer-name))
1500          (kill-buffer buf))))
1501
1502 ;; `gnus-uu-check-for-generated-files' deletes any generated files that
1503 ;; hasn't been deleted, if, for instance, the user terminated decoding
1504 ;; with `C-g'.
1505 (defun gnus-uu-check-for-generated-files ()
1506   (let (file dirs)
1507     (while gnus-uu-generated-file-list
1508       (setq file (car gnus-uu-generated-file-list))
1509       (setq gnus-uu-generated-file-list (cdr gnus-uu-generated-file-list))
1510       (if (not (string-match "/\\.[\\.]?$" file))
1511           (progn
1512             (if (file-directory-p file)
1513                 (setq dirs (cons file dirs))
1514               (if (file-exists-p file)
1515                   (delete-file file))))))
1516     (setq dirs (nreverse dirs))
1517     (while dirs
1518       (setq file (car dirs))
1519       (setq dirs (cdr dirs))
1520       (if (file-directory-p file)
1521           (if (string-match "/$" file)
1522               (delete-directory (substring file 0 (match-beginning 0)))
1523             (delete-directory file))))))
1524
1525 ;; Add a file (or a list of files) to be checked (and deleted if it/they
1526 ;; still exists upon exiting the newsgroup).
1527 (defun gnus-uu-add-file (file)
1528   (if (stringp file)
1529       (setq gnus-uu-generated-file-list 
1530             (cons file gnus-uu-generated-file-list))
1531     (setq gnus-uu-generated-file-list 
1532           (append file gnus-uu-generated-file-list))))
1533
1534 ;; Inputs an action and a file and returns a full command, putting
1535 ;; quotes round the file name and escaping any quotes in the file name.
1536 (defun gnus-uu-command (action file)
1537   (let ((ofile ""))
1538     (while (string-match "!\\|`\\|\"\\|\\$\\|\\\\\\|&" file)
1539       (progn
1540         (setq ofile
1541               (concat ofile (substring file 0 (match-beginning 0)) "\\"
1542                       (substring file (match-beginning 0) (match-end 0))))
1543         (setq file (substring file (1+ (match-beginning 0))))))
1544     (setq ofile (concat "\"" ofile file "\""))
1545     (if (string-match "%s" action)
1546         (format action ofile)
1547       (concat action " " ofile))))
1548
1549
1550 ;; Initializing
1551
1552 (add-hook 'gnus-exit-group-hook 'gnus-uu-clean-up)
1553 (add-hook 'gnus-exit-group-hook 'gnus-uu-check-for-generated-files)
1554
1555 \f
1556
1557 ;;;
1558 ;;; uuencoded posting
1559 ;;;
1560
1561 (require 'sendmail)
1562 (require 'rnews)
1563
1564 ;; Any function that is to be used as and encoding method will take two
1565 ;; parameters: PATH-NAME and FILE-NAME. (E.g. "/home/gaga/spiral.jpg"
1566 ;; and "spiral.jpg", respectively.) The function should return nil if
1567 ;; the encoding wasn't successful.
1568 (defvar gnus-uu-post-encode-method 'gnus-uu-post-encode-uuencode
1569   "Function used for encoding binary files.
1570 There are three functions supplied with gnus-uu for encoding files:
1571 `gnus-uu-post-encode-uuencode', which does straight uuencoding;
1572 `gnus-uu-post-encode-mime', which encodes with base64 and adds MIME 
1573 headers; and `gnus-uu-post-encode-mime-uuencode', which encodes with 
1574 uuencode and adds MIME headers.")
1575
1576 (defvar gnus-uu-post-include-before-composing nil
1577   "Non-nil means that gnus-uu will ask for a file to encode before you compose the article.
1578 If this variable is t, you can either include an encoded file with
1579 \\[gnus-uu-post-insert-binary-in-article] or have one included for you when you post the article.")
1580
1581 (defvar gnus-uu-post-length 990
1582   "Maximum length of an article.
1583 The encoded file will be split into how many articles it takes to
1584 post the entire file.")
1585
1586 (defvar gnus-uu-post-threaded nil
1587   "Non-nil means that gnus-uu will post the encoded file in a thread.
1588 This may not be smart, as no other decoder I have seen are able to
1589 follow threads when collecting uuencoded articles. (Well, I have seen
1590 one package that does that - gnus-uu, but somehow, I don't think that 
1591 counts...) Default is nil.")
1592
1593 (defvar gnus-uu-post-separate-description t
1594   "Non-nil means that the description will be posted in a separate article.
1595 The first article will typically be numbered (0/x). If this variable
1596 is nil, the description the user enters will be included at the 
1597 beginning of the first article, which will be numbered (1/x). Default 
1598 is t.")
1599
1600 (defconst gnus-uu-post-binary-separator "--binary follows this line--")
1601 (defvar gnus-uu-post-message-id nil)
1602 (defvar gnus-uu-post-inserted-file-name nil)
1603 (defvar gnus-uu-winconf-post-news nil)
1604
1605 (defun gnus-uu-post-news ()
1606   "Compose an article and post an encoded file."
1607   (interactive)
1608   (setq gnus-uu-post-inserted-file-name nil)
1609   (setq gnus-uu-winconf-post-news (current-window-configuration))
1610
1611   (gnus-summary-post-news)
1612
1613   (use-local-map (copy-keymap (current-local-map)))
1614   (local-set-key "\C-c\C-c" 'gnus-summary-edit-article-done)
1615   (local-set-key "\C-c\C-c" 'gnus-uu-post-news-inews)
1616   (local-set-key "\C-c\C-s" 'gnus-uu-post-news-inews)
1617   (local-set-key "\C-c\C-i" 'gnus-uu-post-insert-binary-in-article)
1618       
1619   (if gnus-uu-post-include-before-composing
1620       (save-excursion (setq gnus-uu-post-inserted-file-name 
1621                             (gnus-uu-post-insert-binary)))))
1622
1623 (defun gnus-uu-post-insert-binary-in-article ()
1624   "Inserts an encoded file in the buffer.
1625 The user will be asked for a file name."
1626   (interactive)
1627   (if (not (eq (current-buffer) (get-buffer gnus-post-news-buffer)))
1628       (error "Not in post-news buffer"))
1629   (save-excursion 
1630     (setq gnus-uu-post-inserted-file-name (gnus-uu-post-insert-binary))))
1631
1632 ;; Encodes with uuencode and substitutes all spaces with backticks.
1633 (defun gnus-uu-post-encode-uuencode (path file-name)
1634   (if (gnus-uu-post-encode-file "uuencode" path file-name)
1635       (progn
1636         (goto-char (point-min))
1637         (forward-line 1)
1638         (while (re-search-forward " " nil t)
1639           (replace-match "`"))
1640         t)))
1641
1642 ;; Encodes with uuencode and adds MIME headers.
1643 (defun gnus-uu-post-encode-mime-uuencode (path file-name)
1644   (if (gnus-uu-post-encode-uuencode path file-name)
1645       (progn
1646         (gnus-uu-post-make-mime file-name "x-uue")
1647         t)))
1648
1649 ;; Encodes with base64 and adds MIME headers
1650 (defun gnus-uu-post-encode-mime (path file-name)
1651   (if (gnus-uu-post-encode-file "mmencode" path file-name)
1652       (progn
1653         (gnus-uu-post-make-mime file-name "base64")
1654         t)))
1655
1656 ;; Adds MIME headers.
1657 (defun gnus-uu-post-make-mime (file-name encoding)
1658   (goto-char (point-min))
1659   (insert (format "Content-Type: %s; name=\"%s\"\n" 
1660                   (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list) 
1661                   file-name))
1662   (insert (format "Content-Transfer-Encoding: %s\n\n" encoding))
1663   (save-restriction
1664     (set-buffer gnus-post-news-buffer)
1665     (goto-char (point-min))
1666     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1667     (forward-line -1)
1668     (narrow-to-region 1 (point))
1669     (or (mail-fetch-field "mime-version")
1670         (progn
1671           (widen)
1672           (insert "MIME-Version: 1.0\n")))
1673     (widen)))
1674
1675 ;; Encodes a file PATH with COMMAND, leaving the result in the
1676 ;; current buffer.
1677 (defun gnus-uu-post-encode-file (command path file-name)
1678   (= 0 (call-process "sh" nil t nil "-c" 
1679                      (format "%s %s %s" command path file-name))))
1680
1681 (defun gnus-uu-post-news-inews ()
1682   "Posts the composed news article and encoded file.
1683 If no file has been included, the user will be asked for a file."
1684   (interactive)
1685   (if (not (eq (current-buffer) (get-buffer gnus-post-news-buffer)))
1686       (error "Not in post news buffer"))
1687
1688   (let (file-name)
1689
1690     (if gnus-uu-post-inserted-file-name
1691         (setq file-name gnus-uu-post-inserted-file-name)
1692       (setq file-name (gnus-uu-post-insert-binary)))
1693   
1694     (if gnus-uu-post-threaded
1695         (let ((gnus-required-headers 
1696                (if (memq 'Message-ID gnus-required-headers)
1697                    gnus-required-headers
1698                  (cons 'Message-ID gnus-required-headers)))
1699               gnus-inews-article-hook)
1700
1701           (setq gnus-inews-article-hook (if (listp gnus-inews-article-hook)
1702                                             gnus-inews-article-hook
1703                                           (list gnus-inews-article-hook)))
1704           (setq gnus-inews-article-hook 
1705                 (cons
1706                  '(lambda ()
1707                     (save-excursion
1708                       (goto-char (point-min))
1709                       (if (re-search-forward "^Message-ID: \\(.*\\)$" nil t)
1710                           (setq gnus-uu-post-message-id 
1711                                 (buffer-substring 
1712                                  (match-beginning 1) (match-end 1)))
1713                         (setq gnus-uu-post-message-id nil))))
1714                  gnus-inews-article-hook))
1715           (gnus-uu-post-encoded file-name t))
1716       (gnus-uu-post-encoded file-name nil)))
1717   (setq gnus-uu-post-inserted-file-name nil)
1718   (and gnus-uu-winconf-post-news
1719        (set-window-configuration gnus-uu-winconf-post-news)))
1720       
1721 ;; Asks for a file to encode, encodes it and inserts the result in
1722 ;; the current buffer. Returns the file name the user gave.
1723 (defun gnus-uu-post-insert-binary ()
1724   (let ((uuencode-buffer-name "*uuencode buffer*")
1725         file-path uubuf file-name)
1726
1727     (setq file-path (read-file-name 
1728                      "What file do you want to encode? "))
1729     (if (not (file-exists-p file-path))
1730         (error "%s: No such file" file-path))
1731
1732     (goto-char (point-max))
1733     (insert (format "\n%s\n" gnus-uu-post-binary-separator))
1734     
1735     (if (string-match "^~/" file-path)
1736         (setq file-path (concat "$HOME" (substring file-path 1))))
1737     (if (string-match "/[^/]*$" file-path)
1738         (setq file-name (substring file-path (1+ (match-beginning 0))))
1739       (setq file-name file-path))
1740
1741     (unwind-protect
1742         (if (save-excursion
1743               (set-buffer (setq uubuf 
1744                                 (get-buffer-create uuencode-buffer-name)))
1745               (erase-buffer)
1746               (funcall gnus-uu-post-encode-method file-path file-name))
1747             (insert-buffer uubuf)
1748           (error "Encoding unsuccessful"))
1749       (kill-buffer uubuf))
1750     file-name))
1751
1752 ;; Posts the article and all of the encoded file.
1753 (defun gnus-uu-post-encoded (file-name &optional threaded)
1754   (let ((send-buffer-name "*uuencode send buffer*")
1755         (encoded-buffer-name "*encoded buffer*")
1756         (top-string "[ cut here %s (%s %d/%d) %s gnus-uu ]")
1757         (separator (concat mail-header-separator "\n\n"))
1758         uubuf length parts header i end beg
1759         beg-line minlen buf post-buf whole-len beg-binary end-binary)
1760
1761     (setq post-buf (current-buffer))
1762
1763     (goto-char (point-min))
1764     (if (not (re-search-forward 
1765               (if gnus-uu-post-separate-description 
1766                   (concat "^" (regexp-quote gnus-uu-post-binary-separator)
1767                           "$")
1768                 (concat "^" (regexp-quote mail-header-separator) "$")) nil t))
1769         (error "Internal error: No binary/header separator"))
1770     (beginning-of-line)
1771     (forward-line 1)
1772     (setq beg-binary (point))
1773     (setq end-binary (point-max))
1774
1775     (save-excursion 
1776       (set-buffer (setq uubuf (get-buffer-create encoded-buffer-name)))
1777       (erase-buffer)
1778       (insert-buffer-substring post-buf beg-binary end-binary)
1779       (goto-char (point-min))
1780       (setq length (count-lines 1 (point-max)))
1781       (setq parts (/ length gnus-uu-post-length))
1782       (if (not (< (% length gnus-uu-post-length) 4))
1783           (setq parts (1+ parts))))
1784
1785     (if gnus-uu-post-separate-description
1786         (forward-line -1))
1787     (kill-region (point) (point-max))
1788
1789     (goto-char (point-min))
1790     (re-search-forward 
1791      (concat "^" (regexp-quote mail-header-separator) "$") nil t)
1792     (beginning-of-line)
1793     (setq header (buffer-substring 1 (point)))
1794
1795     (goto-char (point-min))
1796     (if (not gnus-uu-post-separate-description)
1797         ()
1798       (if (and (not threaded) (re-search-forward "^Subject: " nil t))
1799           (progn
1800             (end-of-line)
1801             (insert (format " (0/%d)" parts))))
1802       (gnus-inews-news))
1803
1804     (save-excursion
1805       (setq i 1)
1806       (setq beg 1)
1807       (while (not (> i parts))
1808         (set-buffer (get-buffer-create send-buffer-name))
1809         (erase-buffer)
1810         (insert header)
1811         (if (and threaded gnus-uu-post-message-id)
1812             (insert (format "References: %s\n" gnus-uu-post-message-id)))
1813         (insert separator)
1814         (setq whole-len
1815               (- 62 (length (format top-string "" file-name i parts ""))))
1816         (if (> 1 (setq minlen (/ whole-len 2)))
1817             (setq minlen 1))
1818         (setq 
1819          beg-line 
1820          (format top-string
1821                  (make-string minlen ?-) 
1822                  file-name i parts
1823                  (make-string 
1824                   (if (= 0 (% whole-len 2)) (1- minlen) minlen) ?-)))
1825
1826         (goto-char (point-min))
1827         (if (not (re-search-forward "^Subject: " nil t))
1828             ()
1829           (if (not threaded)
1830               (progn
1831                 (end-of-line)
1832                 (insert (format " (%d/%d)" i parts)))
1833             (if (or (and (= i 2) gnus-uu-post-separate-description)
1834                     (and (= i 1) (not gnus-uu-post-separate-description)))
1835                 (replace-match "Subject: Re: "))))
1836                   
1837         (goto-char (point-max))
1838         (save-excursion
1839           (set-buffer uubuf)
1840           (goto-char beg)
1841           (if (= i parts)
1842               (goto-char (point-max))
1843             (forward-line gnus-uu-post-length))
1844           (if (and (= (1+ i) parts) (< (count-lines (point) (point-max)) 4))
1845               (forward-line -4))
1846           (setq end (point)))
1847         (insert-buffer-substring uubuf beg end)
1848         (insert beg-line)
1849         (insert "\n")
1850         (setq beg end)
1851         (setq i (1+ i))
1852         (goto-char (point-min))
1853         (re-search-forward
1854          (concat "^" (regexp-quote mail-header-separator) "$") nil t)
1855         (beginning-of-line)
1856         (forward-line 2)
1857         (if (re-search-forward 
1858              (concat "^" (regexp-quote gnus-uu-post-binary-separator) "$")
1859              nil t)
1860             (progn 
1861               (replace-match "")
1862               (forward-line 1)))
1863         (insert beg-line)
1864         (insert "\n")
1865         (gnus-inews-news)))
1866
1867     (and (setq buf (get-buffer send-buffer-name))
1868          (kill-buffer buf))
1869     (and (setq buf (get-buffer encoded-buffer-name))
1870          (kill-buffer buf))
1871
1872     (if (not gnus-uu-post-separate-description)
1873         (progn
1874           (set-buffer-modified-p nil)
1875           (and (fboundp 'bury-buffer) (bury-buffer))))))
1876
1877 (provide 'gnus-uu)
1878
1879 ;; gnus-uu.el ends here