*** 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              (if (not (setq headers gnus-uu-digest-headers))
685                  (setq sorthead (buffer-substring (point-min) (point-max)))
686                (while headers
687                  (setq headline (car headers))
688                  (setq headers (cdr headers))
689                  (goto-char (point-min))
690                  (if (re-search-forward headline nil t)
691                      (setq sorthead 
692                            (concat sorthead
693                                    (buffer-substring 
694                                     (match-beginning 0)
695                                     (or (and (re-search-forward "^[^ \t]" nil t)
696                                              (1- (point)))
697                                         (progn (forward-line 1) (point)))))))))
698              (widen)))
699          (insert sorthead)(goto-char (point-max))
700          (insert body)(goto-char (point-max))
701          (insert (concat "\n" (make-string 30 ?-) "\n\n"))
702          (goto-char beg)
703          (if (re-search-forward "^Subject: \\(.*\\)$" nil t)
704              (progn
705                (setq subj (buffer-substring (match-beginning 1) (match-end 1)))
706                (save-excursion 
707                 (set-buffer (get-buffer "*gnus-uu-pre*"))
708                 (insert (format "   %s\n" subj))))))
709       (if (or (eq in-state 'last)
710               (eq in-state 'first-and-last))
711           (progn
712             (save-excursion
713               (set-buffer (get-buffer "*gnus-uu-pre*"))
714               (insert (format "\n\n%s\n\n" (make-string 70 ?-)))
715               (write-region 1 (point-max) gnus-uu-saved-article-name))
716             (save-excursion
717               (set-buffer (get-buffer "*gnus-uu-body*"))
718               (goto-char (point-max))
719               (insert 
720                (concat (setq end-string (format "End of %s Digest" name)) 
721                        "\n"))
722               (insert (concat (make-string (length end-string) ?*) "\n"))
723               (write-region 1 (point-max) gnus-uu-saved-article-name t))
724             (kill-buffer (get-buffer "*gnus-uu-pre*"))
725             (kill-buffer (get-buffer "*gnus-uu-body*"))
726             (setq state (cons 'end state))))
727       (if (memq 'begin state)
728           (cons gnus-uu-saved-article-name state)
729         state)))))
730
731 ;; Binhex treatment - not very advanced. 
732
733 (defconst gnus-uu-binhex-body-line 
734   "^[^:]...............................................................$")
735 (defconst gnus-uu-binhex-begin-line 
736   "^:...............................................................$")
737 (defconst gnus-uu-binhex-end-line
738   ":$")
739
740 (defun gnus-uu-binhex-article (buffer in-state)
741   (let (state start-char)
742     (save-excursion
743       (set-buffer buffer)
744       (widen)
745       (goto-char (point-min))
746       (if (not (re-search-forward gnus-uu-binhex-begin-line nil t))
747           (if (not (re-search-forward gnus-uu-binhex-body-line nil t))
748               (setq state (list 'wrong-type))))
749
750       (if (memq 'wrong-type state)
751           ()
752         (beginning-of-line)
753         (setq start-char (point))
754         (if (looking-at gnus-uu-binhex-begin-line)
755             (progn
756               (setq state (list 'begin))
757               (write-region 1 1 gnus-uu-binhex-article-name))
758           (setq state (list 'middle)))
759         (goto-char (point-max))
760         (re-search-backward (concat gnus-uu-binhex-body-line "\\|" 
761                                     gnus-uu-binhex-end-line) nil t)
762         (if (looking-at gnus-uu-binhex-end-line)
763             (setq state (if (memq 'begin state)
764                             (cons 'end state)
765                           (list 'end))))
766         (beginning-of-line)
767         (forward-line 1)
768         (if (file-exists-p gnus-uu-binhex-article-name)
769             (append-to-file start-char (point) gnus-uu-binhex-article-name))))
770     (if (memq 'begin state)
771         (cons gnus-uu-binhex-article-name state)
772       state)))
773
774 ;; PostScript
775
776 (defun gnus-uu-decode-postscript-article (process-buffer in-state)
777   (let ((state (list 'ok))
778         start-char end-char file-name)
779     (save-excursion
780      (set-buffer process-buffer)
781      (goto-char (point-min))
782      (if (not (re-search-forward gnus-uu-postscript-begin-string nil t))
783          (setq state (list 'wrong-type))
784        (beginning-of-line)
785        (setq start-char (point))
786        (if (not (re-search-forward gnus-uu-postscript-end-string nil t))
787            (setq state (list 'wrong-type))
788          (setq end-char (point))
789          (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
790          (insert-buffer-substring process-buffer start-char end-char)
791          (setq file-name (concat gnus-uu-work-dir (cdr gnus-article-current) ".ps"))
792          (write-region (point-min) (point-max) file-name)
793          (setq state (list file-name'begin 'end))
794
795          ))
796      )
797     state))
798       
799
800 ;; Find actions.
801
802 (defun gnus-uu-get-actions (files)
803   (let ((ofiles files)
804         action name)
805     (while files
806       (setq name (cdr (assq 'name (car files))))
807       (and 
808        (setq action (gnus-uu-get-action name))
809        (setcar files (nconc (list (if (string= action "gnus-uu-archive")
810                                       (cons 'action "file")
811                                     (cons 'action action))
812                                   (cons 'execute (if (string-match "%" action)
813                                                      (format action name)
814                                                    (concat action " " name))))
815                             (car files))))
816       (setq files (cdr files)))
817     ofiles))
818
819 (defun gnus-uu-get-action (file-name)
820   (let (action)
821     (setq action 
822           (gnus-uu-choose-action 
823            file-name
824            (append 
825             gnus-uu-user-view-rules
826             (if gnus-uu-ignore-default-view-rules 
827                 nil 
828               gnus-uu-default-view-rules)
829             gnus-uu-user-view-rules-end)))
830     (if (and (not (string= (or action "") "gnus-uu-archive")) 
831              gnus-uu-view-with-metamail)
832         (if (setq action 
833                   (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list))
834             (setq action (format "metamail -d -b -c \"%s\"" action))))
835     action))
836
837
838 ;; Functions for treating subjects and collecting series.
839
840 (defun gnus-uu-reginize-string (string)
841   ;; Takes a string and puts a \ in front of every special character;
842   ;; ignores any leading "version numbers" thingies that they use in
843   ;; the comp.binaries groups, and either replaces anything that looks
844   ;; like "2/3" with "[0-9]+/[0-9]+" or, if it can't find something
845   ;; like that, replaces the last two numbers with "[0-9]+". This, in
846   ;; my experience, should get most postings of a series.
847   (let ((count 2)
848         (vernum "v[0-9]+[a-z][0-9]+:")
849         beg)
850     (save-excursion
851       (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
852       (buffer-disable-undo (current-buffer))
853       (erase-buffer)
854       (insert (regexp-quote string))
855       (setq beg 1)
856
857       (setq case-fold-search nil)
858       (goto-char (point-min))
859       (if (looking-at vernum)
860           (progn
861             (replace-match vernum t t)
862             (setq beg (length vernum))))
863
864       (goto-char beg)
865       (if (re-search-forward "[ \t]*[0-9]+/[0-9]+" nil t)
866           (replace-match " [0-9]+/[0-9]+")
867
868         (goto-char beg)
869         (if (re-search-forward "[0-9]+[ \t]*of[ \t]*[0-9]+" nil t)
870             (replace-match "[0-9]+ of [0-9]+")
871
872           (end-of-line)
873           (while (and (re-search-backward "[0-9]" nil t) (> count 0))
874             (while (and 
875                     (looking-at "[0-9]") 
876                     (< 1 (goto-char (1- (point))))))
877             (re-search-forward "[0-9]+" nil t)
878             (replace-match "[0-9]+")
879             (backward-char 5)
880             (setq count (1- count)))))
881
882       (goto-char beg)
883       (while (re-search-forward "[ \t]+" nil t)
884         (replace-match "[ \t]*" t t))
885
886       (buffer-substring 1 (point-max)))))
887
888 (defun gnus-uu-get-list-of-articles (n)
889   ;; If N is non-nil, the article numbers of the N next articles
890   ;; will be returned.
891   ;; If any articles have been marked as processable, they will be
892   ;; returned. 
893   ;; Failing that, articles that have subjects that are part of the
894   ;; same "series" as the current will be returned.
895   (let (articles)
896   (cond 
897    (n
898     (let ((backward (< n 0))
899           (n (abs n)))
900       (save-excursion
901         (while (and (> n 0)
902                     (setq articles (cons (gnus-summary-article-number) 
903                                          articles))
904                     (gnus-summary-search-forward nil nil backward))
905           (setq n (1- n))))
906       (nreverse articles)))
907    (gnus-newsgroup-processable
908     (reverse gnus-newsgroup-processable))
909    (t
910     (gnus-uu-find-articles-matching)))))
911
912 (defun gnus-uu-string< (l1 l2)
913   (string< (car l1) (car l2)))
914
915 (defun gnus-uu-find-articles-matching 
916   (&optional subject only-unread do-not-translate)
917   ;; Finds all articles that matches the regexp SUBJECT.  If it is
918   ;; nil, the current article name will be used. If ONLY-UNREAD is
919   ;; non-nil, only unread articles are chosen. If DO-NOT-TRANSLATE is
920   ;; non-nil, article names are not equalized before sorting.
921   (let ((subject (or subject 
922                      (gnus-uu-reginize-string (gnus-summary-subject-string))))
923         list-of-subjects)
924     (save-excursion
925       (if (not subject)
926           ()
927         ;; Collect all subjects matching subject.
928         (let ((case-fold-search t)
929               subj mark)
930           (goto-char (point-min))
931           (while (not (eobp))
932             (and (setq subj (gnus-summary-subject-string))
933                  (string-match subject subj)
934                  (or (not only-unread)
935                      (= (setq mark (gnus-summary-article-mark)) 
936                         gnus-unread-mark)
937                      (= mark gnus-ticked-mark)
938                      (= mark gnus-dormant-mark))
939                  (setq list-of-subjects 
940                        (cons (cons subj (gnus-summary-article-number))
941                              list-of-subjects)))
942             (forward-line 1)))
943
944         ;; Expand numbers, sort, and return the list of article
945         ;; numbers.
946         (mapcar (lambda (sub) (cdr sub)) 
947                 (sort (gnus-uu-expand-numbers 
948                        list-of-subjects
949                        (not do-not-translate)) 
950                       'gnus-uu-string<))))))
951
952 (defun gnus-uu-expand-numbers (string-list &optional translate)
953   ;; Takes a list of strings and "expands" all numbers in all the
954   ;; strings.  That is, this function makes all numbers equal length by
955   ;; prepending lots of zeroes before each number. This is to ease later
956   ;; sorting to find out what sequence the articles are supposed to be
957   ;; decoded in. Returns the list of expanded strings.
958   (let ((out-list string-list)
959         string)
960     (save-excursion
961       (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
962       (buffer-disable-undo (current-buffer))
963       (while string-list
964         (erase-buffer)
965         (insert (car (car string-list)))
966         ;; Translate multiple spaces to one space.
967         (goto-char (point-min))
968         (while (re-search-forward "[ \t]+" nil t)
969           (replace-match " "))
970         ;; Translate all characters to "a".
971         (goto-char (point-min))
972         (if translate 
973             (while (re-search-forward "[A-Za-z]" nil t)
974               (replace-match "a" t t)))
975         ;; Expand numbers.
976         (goto-char (point-min))
977         (while (re-search-forward "[0-9]+" nil t)
978           (replace-match  
979            (format "%06d" 
980                    (string-to-int (buffer-substring 
981                                    (match-beginning 0) (match-end 0))))))
982         (setq string (buffer-substring 1 (point-max)))
983         (setcar (car string-list) string)
984         (setq string-list (cdr string-list))))
985     out-list))
986
987
988 ;; `gnus-uu-grab-articles' is the general multi-article treatment
989 ;; function.  It takes a list of articles to be grabbed and a function
990 ;; to apply to each article.
991 ;;
992 ;; The function to be called should take two parameters.  The first
993 ;; parameter is the article buffer. The function should leave the
994 ;; result, if any, in this buffer. Most treatment functions will just
995 ;; generate files...
996 ;;
997 ;; The second parameter is the state of the list of articles, and can
998 ;; have four values: `first', `middle', `last' and `first-and-last'.
999 ;;
1000 ;; The function should return a list. The list may contain the
1001 ;; following symbols:
1002 ;; `error' if an error occurred
1003 ;; `begin' if the beginning of an encoded file has been received
1004 ;;   If the list returned contains a `begin', the first element of
1005 ;;   the list *must* be a string with the file name of the decoded
1006 ;;   file.
1007 ;; `end' if the the end of an encoded file has been received
1008 ;; `middle' if the article was a body part of an encoded file
1009 ;; `wrong-type' if the article was not a part of an encoded file
1010 ;; `ok', which can be used everything is ok
1011
1012 (defvar gnus-uu-has-been-grabbed nil)
1013
1014 (defun gnus-uu-unmark-list-of-grabbed (&optional dont-unmark-last-article)
1015   (let (art)
1016     (if (not (and gnus-uu-has-been-grabbed
1017                   gnus-uu-unmark-articles-not-decoded))
1018         ()
1019       (if dont-unmark-last-article
1020           (progn
1021             (setq art (car gnus-uu-has-been-grabbed))
1022             (setq gnus-uu-has-been-grabbed (cdr gnus-uu-has-been-grabbed))))
1023       (while gnus-uu-has-been-grabbed
1024         (gnus-summary-tick-article (car gnus-uu-has-been-grabbed) t)
1025         (setq gnus-uu-has-been-grabbed (cdr gnus-uu-has-been-grabbed)))
1026       (if dont-unmark-last-article
1027           (setq gnus-uu-has-been-grabbed (list art))))))
1028
1029 ;; This function takes a list of articles and a function to apply to
1030 ;; each article grabbed. 
1031 ;; 
1032 ;; This function returns a list of files decoded if the grabbing and
1033 ;; the process-function has been successful and nil otherwise.
1034 (defun gnus-uu-grab-articles 
1035   (articles process-function &optional sloppy limit no-errors)
1036   (let ((state 'first) 
1037         has-been-begin article result-file result-files process-state 
1038         article-buffer)
1039  
1040     (if (not (gnus-server-opened gnus-current-select-method))
1041         (progn
1042           (gnus-start-news-server)
1043           (gnus-request-group gnus-newsgroup-name)))
1044
1045     (setq gnus-uu-has-been-grabbed nil)
1046
1047     (while (and articles 
1048                 (not (memq 'error process-state))
1049                 (or sloppy
1050                     (not (memq 'end process-state))))
1051
1052       (setq article (car articles))
1053       (setq articles (cdr articles))
1054       (setq gnus-uu-has-been-grabbed (cons article gnus-uu-has-been-grabbed))
1055
1056       (if (eq articles ()) 
1057           (if (eq state 'first)
1058               (setq state 'first-and-last)
1059             (setq state 'last)))
1060
1061       (message "Getting article %d, %s" article (gnus-uu-part-number article))
1062
1063       (if (not (= (or gnus-current-article 0) article))
1064           (let ((nntp-async-number nil))
1065             (gnus-request-article article gnus-newsgroup-name
1066                                   nntp-server-buffer)
1067             (setq gnus-last-article gnus-current-article)
1068             (setq gnus-current-article article)
1069             (setq gnus-article-current (cons gnus-newsgroup-name article))
1070             (if (stringp nntp-server-buffer)
1071                 (setq article-buffer nntp-server-buffer)
1072               (setq article-buffer (buffer-name nntp-server-buffer))))
1073         (setq article-buffer gnus-article-buffer))
1074
1075       (buffer-disable-undo article-buffer)
1076       ;; Mark article as read.
1077       (and (memq article gnus-newsgroup-processable)
1078            (gnus-summary-remove-process-mark article))
1079       (run-hooks 'gnus-mark-article-hook)
1080
1081       (setq process-state (funcall process-function article-buffer state))
1082
1083       (if (or (memq 'begin process-state)
1084               (and (or (eq state 'first) (eq state 'first-and-last))
1085                    (memq 'ok process-state)))
1086           (progn
1087             (if has-been-begin
1088                 (if (and result-file (file-exists-p result-file)) 
1089                     (delete-file result-file)))
1090             (if (memq 'begin process-state)
1091                 (setq result-file (car process-state)))
1092             (setq has-been-begin t)))
1093
1094       (if (memq 'end process-state)
1095           (progn
1096             (setq gnus-uu-has-been-grabbed nil)
1097             (setq result-files (cons (list (cons 'name result-file)
1098                                            (cons 'article article))
1099                                      result-files))
1100             (setq has-been-begin nil)
1101             (and limit (= (length result-files) limit)
1102                  (setq articles nil))))
1103
1104       (if (and (or (eq state 'last) (eq state 'first-and-last))
1105                (not (memq 'end process-state)))
1106                 (if (and result-file (file-exists-p result-file))
1107                     (delete-file result-file)))
1108
1109       (if (not (memq 'wrong-type process-state))
1110           ()
1111         (if gnus-uu-unmark-articles-not-decoded
1112             (gnus-summary-tick-article article t)))
1113
1114       (if (and (not has-been-begin)
1115                (not sloppy)
1116                (or (memq 'end process-state)
1117                    (memq 'middle process-state)))
1118           (progn
1119             (setq process-state (list 'error))
1120             (message "No begin part at the beginning")
1121             (sleep-for 2))
1122         (setq state 'middle)))
1123
1124     ;; Make sure the last article is put in the article buffer & fix
1125     ;; windows etc.
1126
1127     (if (not (string= article-buffer gnus-article-buffer))
1128         (save-excursion
1129           (set-buffer (get-buffer-create gnus-article-buffer))
1130           (let ((buffer-read-only nil))
1131             (widen)
1132             (erase-buffer)
1133             (insert-buffer-substring article-buffer)
1134             (gnus-set-mode-line 'article)
1135             (goto-char (point-min)))))
1136
1137     (gnus-set-mode-line 'summary)
1138
1139     (if result-files
1140         ()
1141       (if (not has-been-begin)
1142           (if (not no-errors) (message "Wrong type file"))
1143         (if (memq 'error process-state)
1144             (setq result-files nil)
1145           (if (not (or (memq 'ok process-state) 
1146                        (memq 'end process-state)))
1147               (progn
1148                 (if (not no-errors)
1149                     (message "End of articles reached before end of file"))
1150                 (setq result-files nil))
1151             (gnus-uu-unmark-list-of-grabbed)))))
1152     result-files))
1153
1154 (defun gnus-uu-part-number (article)
1155   (let ((subject (header-subject (gnus-get-header-by-number article))))
1156     (if (string-match "[0-9]+ */[0-9]+\\|[0-9]+ * of *[0-9]+"
1157                       subject)
1158         (substring subject (match-beginning 0) (match-end 0))
1159       "")))
1160
1161 (defun gnus-uu-uudecode-sentinel (process event)
1162   (delete-process (get-process process)))
1163
1164 (defun gnus-uu-uustrip-article (process-buffer in-state)
1165   ;; Uudecodes a file asynchronously.
1166   (let ((state (list 'ok))
1167         (process-connection-type nil)
1168         start-char pst name-beg name-end)
1169     (save-excursion
1170       (set-buffer process-buffer)
1171       (let ((case-fold-search nil)
1172             (buffer-read-only nil))
1173
1174         (goto-char (point-min))
1175
1176         (if gnus-uu-kill-carriage-return
1177             (progn
1178               (while (search-forward "\r" nil t)
1179                 (delete-backward-char 1))
1180               (goto-char (point-min))))
1181
1182         (if (not (re-search-forward gnus-uu-begin-string nil t))
1183             (if (not (re-search-forward gnus-uu-body-line nil t))
1184                 (setq state (list 'wrong-type))))
1185      
1186         (if (memq 'wrong-type state)
1187             ()
1188           (beginning-of-line)
1189           (setq start-char (point))
1190
1191           (if (looking-at gnus-uu-begin-string)
1192               (progn 
1193                 (setq name-end (match-end 1)
1194                       name-beg (match-beginning 1))
1195                 ;; Remove any non gnus-uu-body-line right after start.
1196                 (forward-line 1)
1197                 (or (looking-at gnus-uu-body-line)
1198                     (gnus-delete-line))
1199  
1200                 ; Replace any slashes and spaces in file names before decoding
1201                 (goto-char name-beg)
1202                 (while (re-search-forward "/" name-end t)
1203                   (replace-match ","))
1204                 (goto-char name-beg)
1205                 (while (re-search-forward " " name-end t)
1206                   (replace-match "_"))
1207                 (goto-char name-beg)
1208                 (if (re-search-forward "_*$" name-end t)
1209                   (replace-match ""))
1210
1211                 (setq gnus-uu-file-name (buffer-substring name-beg name-end))
1212                 (and gnus-uu-uudecode-process
1213                      (setq pst (process-status 
1214                                 (or gnus-uu-uudecode-process "nevair")))
1215                      (if (or (eq pst 'stop) (eq pst 'run))
1216                          (progn
1217                            (delete-process gnus-uu-uudecode-process)
1218                            (gnus-uu-unmark-list-of-grabbed t))))
1219                 (if (get-process "*uudecode*")
1220                     (delete-process "*uudecode*"))
1221                 (setq gnus-uu-uudecode-process
1222                       (start-process 
1223                        "*uudecode*" 
1224                        (get-buffer-create gnus-uu-output-buffer-name)
1225                        "sh" "-c" 
1226                        (format "cd %s ; uudecode" gnus-uu-work-dir)))
1227                 (set-process-sentinel 
1228                  gnus-uu-uudecode-process 'gnus-uu-uudecode-sentinel)
1229                 (setq state (list 'begin))
1230                 (gnus-uu-add-file (concat gnus-uu-work-dir gnus-uu-file-name)))
1231             (setq state (list 'middle)))
1232         
1233           (goto-char (point-max))
1234
1235           (re-search-backward 
1236            (concat gnus-uu-body-line "\\|" gnus-uu-end-string) nil t)
1237           (beginning-of-line)
1238
1239           (if (looking-at gnus-uu-end-string)
1240               (setq state (cons 'end state)))
1241           (forward-line 1)
1242
1243           (and gnus-uu-uudecode-process
1244                (setq pst (process-status 
1245                           (or gnus-uu-uudecode-process "nevair")))
1246                (if (or (eq pst 'run) (eq pst 'stop))
1247                    (progn
1248                      (if gnus-uu-correct-stripped-uucode
1249                          (progn
1250                            (gnus-uu-check-correct-stripped-uucode 
1251                             start-char (point))
1252                            (goto-char (point-max))
1253                            (re-search-backward 
1254                             (concat gnus-uu-body-line "\\|" 
1255                                     gnus-uu-end-string) 
1256                             nil t)
1257                            (forward-line 1)))
1258
1259                      (condition-case nil
1260                          (process-send-region gnus-uu-uudecode-process 
1261                                               start-char (point))
1262                        (error 
1263                         (progn 
1264                           (delete-process gnus-uu-uudecode-process)
1265                           (message "gnus-uu: Couldn't uudecode")
1266 ;                         (sleep-for 2)
1267                           (setq state (list 'wrong-type)))))
1268
1269                      (if (memq 'end state)
1270                          (accept-process-output gnus-uu-uudecode-process)))
1271                  (setq state (list 'wrong-type))))
1272           (if (not gnus-uu-uudecode-process)
1273               (setq state (list 'wrong-type)))))
1274
1275       (if (memq 'begin state)
1276           (cons (concat gnus-uu-work-dir gnus-uu-file-name) state)
1277         state))))
1278
1279 ;; This function is used by `gnus-uu-grab-articles' to treat
1280 ;; a shared article.
1281 (defun gnus-uu-unshar-article (process-buffer in-state)
1282   (let ((state (list 'ok))
1283         start-char)
1284     (save-excursion
1285      (set-buffer process-buffer)
1286      (goto-char (point-min))
1287      (if (not (re-search-forward gnus-uu-shar-begin-string nil t))
1288          (setq state (list 'wrong-type))
1289        (beginning-of-line)
1290        (setq start-char (point))
1291        (call-process-region 
1292         start-char (point-max) "sh" nil 
1293         (get-buffer-create gnus-uu-output-buffer-name) nil 
1294         "-c" (concat "cd " gnus-uu-work-dir " ; sh"))))
1295     state))
1296
1297 ;; Returns the name of what the shar file is going to unpack.
1298 (defun gnus-uu-find-name-in-shar ()
1299   (let ((oldpoint (point))
1300         res)
1301     (goto-char (point-min))
1302     (if (re-search-forward gnus-uu-shar-name-marker nil t)
1303         (setq res (buffer-substring (match-beginning 1) (match-end 1))))
1304     (goto-char oldpoint)
1305     res))
1306
1307 ;; `gnus-uu-choose-action' chooses what action to perform given the name
1308 ;; and `gnus-uu-file-action-list'.  Returns either nil if no action is
1309 ;; found, or the name of the command to run if such a rule is found.
1310 (defun gnus-uu-choose-action (file-name file-action-list &optional no-ignore)
1311   (let ((action-list (copy-sequence file-action-list))
1312         (case-fold-search t)
1313         rule action)
1314     (and 
1315      (or no-ignore 
1316          (and (not 
1317                (and gnus-uu-ignore-files-by-name
1318                     (string-match gnus-uu-ignore-files-by-name file-name)))
1319               (not 
1320                (and gnus-uu-ignore-files-by-type
1321                     (string-match gnus-uu-ignore-files-by-type 
1322                                   (or (gnus-uu-choose-action 
1323                                        file-name gnus-uu-ext-to-mime-list t) 
1324                                       ""))))))
1325      (while (not (or (eq action-list ()) action))
1326        (setq rule (car action-list))
1327        (setq action-list (cdr action-list))
1328        (if (string-match (car rule) file-name)
1329            (setq action (car (cdr rule))))))
1330     action))
1331
1332 (defun gnus-uu-treat-archive (file-path)
1333   ;; Unpacks an archive. Returns t if unpacking is successful.
1334   (let ((did-unpack t)
1335         action command dir)
1336     (setq action (gnus-uu-choose-action 
1337                   file-path (append gnus-uu-user-archive-rules
1338                                     (if gnus-uu-ignore-default-archive-rules
1339                                         nil
1340                                       gnus-uu-default-archive-rules))))
1341
1342     (if (not action) (error "No unpackers for the file %s" file-path))
1343
1344     (string-match "/[^/]*$" file-path)
1345     (setq dir (substring file-path 0 (match-beginning 0)))
1346
1347     (if (member action gnus-uu-destructive-archivers)
1348         (copy-file file-path (concat file-path "~") t))
1349
1350     (setq command (format "cd %s ; %s" dir (gnus-uu-command action file-path)))
1351
1352     (save-excursion
1353       (set-buffer (get-buffer-create gnus-uu-output-buffer-name))
1354       (erase-buffer))
1355
1356     (message "Unpacking: %s..." (gnus-uu-command action file-path))
1357
1358     (if (= 0 (call-process "sh" nil 
1359                            (get-buffer-create gnus-uu-output-buffer-name)
1360                            nil "-c" command))
1361         (message "")
1362       (message "Error during unpacking of archive")
1363       (setq did-unpack nil))
1364
1365     (if (member action gnus-uu-destructive-archivers)
1366         (rename-file (concat file-path "~") file-path t))
1367
1368     did-unpack))
1369
1370 (defun gnus-uu-dir-files (dir)
1371   (let ((dirs (directory-files dir t "[^/][^\\.][^\\.]?$"))
1372         files file)
1373     (while dirs
1374       (if (file-directory-p (setq file (car dirs)))
1375           (setq files (append files (gnus-uu-dir-files file)))
1376         (setq files (cons file files)))
1377       (setq dirs (cdr dirs)))
1378     files))
1379
1380 (defun gnus-uu-unpack-files (files &optional ignore)
1381   ;; Go through FILES and look for files to unpack. 
1382   (let* ((totfiles (gnus-uu-ls-r gnus-uu-work-dir))
1383          (ofiles files)
1384          file did-unpack file-entry)
1385     (gnus-uu-add-file totfiles) 
1386     (while files
1387       (setq file (cdr (setq file-entry (assq 'name (car files)))))
1388       (if (and (not (member file ignore))
1389                (equal (gnus-uu-get-action (file-name-nondirectory file))
1390                       "gnus-uu-archive"))
1391           (progn
1392             (setq did-unpack (cons file did-unpack))
1393             (or (gnus-uu-treat-archive file)
1394                 (message "Error during unpacking of %s" file))
1395             (let* ((newfiles (gnus-uu-ls-r gnus-uu-work-dir))
1396                    (nfiles newfiles))
1397               (gnus-uu-add-file newfiles)
1398               (while nfiles
1399                 (or (member (car nfiles) totfiles)
1400                     (setq ofiles (cons (list (cons 'name (car nfiles))
1401                                              (cons 'original file))
1402                                        ofiles)))
1403                 (setq nfiles (cdr nfiles)))
1404               (setq totfiles newfiles))))
1405       (setq files (cdr files)))
1406     (if did-unpack 
1407         (gnus-uu-unpack-files ofiles (append did-unpack ignore))
1408       ofiles)))
1409
1410 (defun gnus-uu-ls-r (dir)
1411   (let* ((files (gnus-uu-directory-files dir t))
1412          (ofiles files))
1413     (while files
1414       (if (file-directory-p (car files))
1415           (progn
1416             (setq ofiles (delete (car files) ofiles))
1417             (setq ofiles (append ofiles (gnus-uu-ls-r (car files))))))
1418       (setq files (cdr files)))
1419     ofiles))
1420
1421 ;; Various stuff
1422
1423 (defun gnus-uu-directory-files (dir &optional full)
1424   (let (files out file)
1425     (setq files (directory-files dir full))
1426     (while files
1427       (setq file (car files))
1428       (setq files (cdr files))
1429       (or (string-match "/\\.\\.?$" file)
1430           (setq out (cons file out))))
1431     (setq out (nreverse out))
1432     out))
1433
1434 (defun gnus-uu-check-correct-stripped-uucode (start end)
1435   (let (found beg length)
1436     (if (not gnus-uu-correct-stripped-uucode)
1437         ()
1438       (goto-char start)
1439
1440       (if (re-search-forward " \\|`" end t)
1441           (progn
1442             (goto-char start)
1443             (while (not (eobp))
1444               (progn
1445                 (if (looking-at "\n") (replace-match ""))
1446                 (forward-line 1))))
1447             
1448         (while (not (eobp))
1449           (if (looking-at (concat gnus-uu-begin-string "\\|" 
1450                                   gnus-uu-end-string))
1451               ()
1452             (if (not found)
1453                 (progn
1454                   (beginning-of-line)
1455                   (setq beg (point))
1456                   (end-of-line)
1457                   (setq length (- (point) beg))))
1458             (setq found t)
1459             (beginning-of-line)
1460             (setq beg (point))
1461             (end-of-line)
1462             (if (not (= length (- (point) beg)))
1463                 (insert (make-string (- length (- (point) beg)) ? ))))
1464           (forward-line 1))))))
1465
1466 (defvar gnus-uu-tmp-alist nil)
1467
1468 (defun gnus-uu-initialize (&optional scan)
1469   (let (entry)
1470     (if (and (not scan)
1471              (if (setq entry (assoc gnus-newsgroup-name gnus-uu-tmp-alist))
1472                  (if (file-exists-p (cdr entry))
1473                      (setq gnus-uu-work-dir (cdr entry))
1474                    (setq gnus-uu-tmp-alist (delq entry gnus-uu-tmp-alist))
1475                    nil)))
1476         t
1477       (setq gnus-uu-tmp-dir (file-name-as-directory 
1478                              (expand-file-name gnus-uu-tmp-dir)))
1479       (if (not (file-directory-p gnus-uu-tmp-dir))
1480           (error "Temp directory %s doesn't exist" gnus-uu-tmp-dir)
1481         (if (not (file-writable-p gnus-uu-tmp-dir))
1482             (error "Temp directory %s can't be written to" 
1483                    gnus-uu-tmp-dir)))
1484
1485       (setq gnus-uu-work-dir 
1486             (make-temp-name (concat gnus-uu-tmp-dir "gnus")))
1487       (gnus-uu-add-file gnus-uu-work-dir)
1488       (if (not (file-directory-p gnus-uu-work-dir)) 
1489           (gnus-make-directory gnus-uu-work-dir))
1490       (set-file-modes gnus-uu-work-dir 448)
1491       (setq gnus-uu-work-dir (file-name-as-directory gnus-uu-work-dir))
1492       (setq gnus-uu-tmp-alist (cons (cons gnus-newsgroup-name gnus-uu-work-dir)
1493                                     gnus-uu-tmp-alist)))))
1494
1495
1496 ;; Kills the temporary uu buffers, kills any processes, etc.
1497 (defun gnus-uu-clean-up ()
1498   (let (buf pst)
1499     (and gnus-uu-uudecode-process
1500          (setq pst (process-status (or gnus-uu-uudecode-process "nevair")))
1501          (if (or (eq pst 'stop) (eq pst 'run))
1502              (delete-process gnus-uu-uudecode-process)))
1503     (and (setq buf (get-buffer gnus-uu-output-buffer-name))
1504          (kill-buffer buf))))
1505
1506 ;; `gnus-uu-check-for-generated-files' deletes any generated files that
1507 ;; hasn't been deleted, if, for instance, the user terminated decoding
1508 ;; with `C-g'.
1509 (defun gnus-uu-check-for-generated-files ()
1510   (let (file dirs)
1511     (while gnus-uu-generated-file-list
1512       (setq file (car gnus-uu-generated-file-list))
1513       (setq gnus-uu-generated-file-list (cdr gnus-uu-generated-file-list))
1514       (if (not (string-match "/\\.[\\.]?$" file))
1515           (progn
1516             (if (file-directory-p file)
1517                 (setq dirs (cons file dirs))
1518               (if (file-exists-p file)
1519                   (delete-file file))))))
1520     (setq dirs (nreverse dirs))
1521     (while dirs
1522       (setq file (car dirs))
1523       (setq dirs (cdr dirs))
1524       (if (file-directory-p file)
1525           (if (string-match "/$" file)
1526               (delete-directory (substring file 0 (match-beginning 0)))
1527             (delete-directory file))))))
1528
1529 ;; Add a file (or a list of files) to be checked (and deleted if it/they
1530 ;; still exists upon exiting the newsgroup).
1531 (defun gnus-uu-add-file (file)
1532   (if (stringp file)
1533       (setq gnus-uu-generated-file-list 
1534             (cons file gnus-uu-generated-file-list))
1535     (setq gnus-uu-generated-file-list 
1536           (append file gnus-uu-generated-file-list))))
1537
1538 ;; Inputs an action and a file and returns a full command, putting
1539 ;; quotes round the file name and escaping any quotes in the file name.
1540 (defun gnus-uu-command (action file)
1541   (let ((ofile ""))
1542     (while (string-match "!\\|`\\|\"\\|\\$\\|\\\\\\|&" file)
1543       (progn
1544         (setq ofile
1545               (concat ofile (substring file 0 (match-beginning 0)) "\\"
1546                       (substring file (match-beginning 0) (match-end 0))))
1547         (setq file (substring file (1+ (match-beginning 0))))))
1548     (setq ofile (concat "\"" ofile file "\""))
1549     (if (string-match "%s" action)
1550         (format action ofile)
1551       (concat action " " ofile))))
1552
1553
1554 ;; Initializing
1555
1556 (add-hook 'gnus-exit-group-hook 'gnus-uu-clean-up)
1557 (add-hook 'gnus-exit-group-hook 'gnus-uu-check-for-generated-files)
1558
1559 \f
1560
1561 ;;;
1562 ;;; uuencoded posting
1563 ;;;
1564
1565 (require 'sendmail)
1566 (require 'rnews)
1567
1568 ;; Any function that is to be used as and encoding method will take two
1569 ;; parameters: PATH-NAME and FILE-NAME. (E.g. "/home/gaga/spiral.jpg"
1570 ;; and "spiral.jpg", respectively.) The function should return nil if
1571 ;; the encoding wasn't successful.
1572 (defvar gnus-uu-post-encode-method 'gnus-uu-post-encode-uuencode
1573   "Function used for encoding binary files.
1574 There are three functions supplied with gnus-uu for encoding files:
1575 `gnus-uu-post-encode-uuencode', which does straight uuencoding;
1576 `gnus-uu-post-encode-mime', which encodes with base64 and adds MIME 
1577 headers; and `gnus-uu-post-encode-mime-uuencode', which encodes with 
1578 uuencode and adds MIME headers.")
1579
1580 (defvar gnus-uu-post-include-before-composing nil
1581   "Non-nil means that gnus-uu will ask for a file to encode before you compose the article.
1582 If this variable is t, you can either include an encoded file with
1583 \\[gnus-uu-post-insert-binary-in-article] or have one included for you when you post the article.")
1584
1585 (defvar gnus-uu-post-length 990
1586   "Maximum length of an article.
1587 The encoded file will be split into how many articles it takes to
1588 post the entire file.")
1589
1590 (defvar gnus-uu-post-threaded nil
1591   "Non-nil means that gnus-uu will post the encoded file in a thread.
1592 This may not be smart, as no other decoder I have seen are able to
1593 follow threads when collecting uuencoded articles. (Well, I have seen
1594 one package that does that - gnus-uu, but somehow, I don't think that 
1595 counts...) Default is nil.")
1596
1597 (defvar gnus-uu-post-separate-description t
1598   "Non-nil means that the description will be posted in a separate article.
1599 The first article will typically be numbered (0/x). If this variable
1600 is nil, the description the user enters will be included at the 
1601 beginning of the first article, which will be numbered (1/x). Default 
1602 is t.")
1603
1604 (defvar gnus-uu-post-binary-separator "--binary follows this line--")
1605 (defvar gnus-uu-post-message-id nil)
1606 (defvar gnus-uu-post-inserted-file-name nil)
1607 (defvar gnus-uu-winconf-post-news nil)
1608
1609 (defun gnus-uu-post-news ()
1610   "Compose an article and post an encoded file."
1611   (interactive)
1612   (setq gnus-uu-post-inserted-file-name nil)
1613   (setq gnus-uu-winconf-post-news (current-window-configuration))
1614
1615   (gnus-summary-post-news)
1616
1617   (use-local-map (copy-keymap (current-local-map)))
1618   (local-set-key "\C-c\C-c" 'gnus-summary-edit-article-done)
1619   (local-set-key "\C-c\C-c" 'gnus-uu-post-news-inews)
1620   (local-set-key "\C-c\C-s" 'gnus-uu-post-news-inews)
1621   (local-set-key "\C-c\C-i" 'gnus-uu-post-insert-binary-in-article)
1622       
1623   (if gnus-uu-post-include-before-composing
1624       (save-excursion (setq gnus-uu-post-inserted-file-name 
1625                             (gnus-uu-post-insert-binary)))))
1626
1627 (defun gnus-uu-post-insert-binary-in-article ()
1628   "Inserts an encoded file in the buffer.
1629 The user will be asked for a file name."
1630   (interactive)
1631   (if (not (eq (current-buffer) (get-buffer gnus-post-news-buffer)))
1632       (error "Not in post-news buffer"))
1633   (save-excursion 
1634     (setq gnus-uu-post-inserted-file-name (gnus-uu-post-insert-binary))))
1635
1636 ;; Encodes with uuencode and substitutes all spaces with backticks.
1637 (defun gnus-uu-post-encode-uuencode (path file-name)
1638   (if (gnus-uu-post-encode-file "uuencode" path file-name)
1639       (progn
1640         (goto-char (point-min))
1641         (forward-line 1)
1642         (while (re-search-forward " " nil t)
1643           (replace-match "`"))
1644         t)))
1645
1646 ;; Encodes with uuencode and adds MIME headers.
1647 (defun gnus-uu-post-encode-mime-uuencode (path file-name)
1648   (if (gnus-uu-post-encode-uuencode path file-name)
1649       (progn
1650         (gnus-uu-post-make-mime file-name "x-uue")
1651         t)))
1652
1653 ;; Encodes with base64 and adds MIME headers
1654 (defun gnus-uu-post-encode-mime (path file-name)
1655   (if (gnus-uu-post-encode-file "mmencode" path file-name)
1656       (progn
1657         (gnus-uu-post-make-mime file-name "base64")
1658         t)))
1659
1660 ;; Adds MIME headers.
1661 (defun gnus-uu-post-make-mime (file-name encoding)
1662   (goto-char (point-min))
1663   (insert (format "Content-Type: %s; name=\"%s\"\n" 
1664                   (gnus-uu-choose-action file-name gnus-uu-ext-to-mime-list) 
1665                   file-name))
1666   (insert (format "Content-Transfer-Encoding: %s\n\n" encoding))
1667   (save-restriction
1668     (set-buffer gnus-post-news-buffer)
1669     (goto-char (point-min))
1670     (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
1671     (forward-line -1)
1672     (narrow-to-region 1 (point))
1673     (or (mail-fetch-field "mime-version")
1674         (progn
1675           (widen)
1676           (insert "MIME-Version: 1.0\n")))
1677     (widen)))
1678
1679 ;; Encodes a file PATH with COMMAND, leaving the result in the
1680 ;; current buffer.
1681 (defun gnus-uu-post-encode-file (command path file-name)
1682   (= 0 (call-process "sh" nil t nil "-c" 
1683                      (format "%s %s %s" command path file-name))))
1684
1685 (defun gnus-uu-post-news-inews ()
1686   "Posts the composed news article and encoded file.
1687 If no file has been included, the user will be asked for a file."
1688   (interactive)
1689   (if (not (eq (current-buffer) (get-buffer gnus-post-news-buffer)))
1690       (error "Not in post news buffer"))
1691
1692   (let (file-name)
1693
1694     (if gnus-uu-post-inserted-file-name
1695         (setq file-name gnus-uu-post-inserted-file-name)
1696       (setq file-name (gnus-uu-post-insert-binary)))
1697   
1698     (if gnus-uu-post-threaded
1699         (let ((gnus-required-headers 
1700                (if (memq 'Message-ID gnus-required-headers)
1701                    gnus-required-headers
1702                  (cons 'Message-ID gnus-required-headers)))
1703               gnus-inews-article-hook)
1704
1705           (setq gnus-inews-article-hook (if (listp gnus-inews-article-hook)
1706                                             gnus-inews-article-hook
1707                                           (list gnus-inews-article-hook)))
1708           (setq gnus-inews-article-hook 
1709                 (cons
1710                  '(lambda ()
1711                     (save-excursion
1712                       (goto-char (point-min))
1713                       (if (re-search-forward "^Message-ID: \\(.*\\)$" nil t)
1714                           (setq gnus-uu-post-message-id 
1715                                 (buffer-substring 
1716                                  (match-beginning 1) (match-end 1)))
1717                         (setq gnus-uu-post-message-id nil))))
1718                  gnus-inews-article-hook))
1719           (gnus-uu-post-encoded file-name t))
1720       (gnus-uu-post-encoded file-name nil)))
1721   (setq gnus-uu-post-inserted-file-name nil)
1722   (and gnus-uu-winconf-post-news
1723        (set-window-configuration gnus-uu-winconf-post-news)))
1724       
1725 ;; Asks for a file to encode, encodes it and inserts the result in
1726 ;; the current buffer. Returns the file name the user gave.
1727 (defun gnus-uu-post-insert-binary ()
1728   (let ((uuencode-buffer-name "*uuencode buffer*")
1729         file-path uubuf file-name)
1730
1731     (setq file-path (read-file-name 
1732                      "What file do you want to encode? "))
1733     (if (not (file-exists-p file-path))
1734         (error "%s: No such file" file-path))
1735
1736     (goto-char (point-max))
1737     (insert (format "\n%s\n" gnus-uu-post-binary-separator))
1738     
1739     (if (string-match "^~/" file-path)
1740         (setq file-path (concat "$HOME" (substring file-path 1))))
1741     (if (string-match "/[^/]*$" file-path)
1742         (setq file-name (substring file-path (1+ (match-beginning 0))))
1743       (setq file-name file-path))
1744
1745     (unwind-protect
1746         (if (save-excursion
1747               (set-buffer (setq uubuf 
1748                                 (get-buffer-create uuencode-buffer-name)))
1749               (erase-buffer)
1750               (funcall gnus-uu-post-encode-method file-path file-name))
1751             (insert-buffer uubuf)
1752           (error "Encoding unsuccessful"))
1753       (kill-buffer uubuf))
1754     file-name))
1755
1756 ;; Posts the article and all of the encoded file.
1757 (defun gnus-uu-post-encoded (file-name &optional threaded)
1758   (let ((send-buffer-name "*uuencode send buffer*")
1759         (encoded-buffer-name "*encoded buffer*")
1760         (top-string "[ cut here %s (%s %d/%d) %s gnus-uu ]")
1761         (separator (concat mail-header-separator "\n\n"))
1762         uubuf length parts header i end beg
1763         beg-line minlen buf post-buf whole-len beg-binary end-binary)
1764
1765     (setq post-buf (current-buffer))
1766
1767     (goto-char (point-min))
1768     (if (not (re-search-forward 
1769               (if gnus-uu-post-separate-description 
1770                   (concat "^" (regexp-quote gnus-uu-post-binary-separator)
1771                           "$")
1772                 (concat "^" (regexp-quote mail-header-separator) "$")) nil t))
1773         (error "Internal error: No binary/header separator"))
1774     (beginning-of-line)
1775     (forward-line 1)
1776     (setq beg-binary (point))
1777     (setq end-binary (point-max))
1778
1779     (save-excursion 
1780       (set-buffer (setq uubuf (get-buffer-create encoded-buffer-name)))
1781       (erase-buffer)
1782       (insert-buffer-substring post-buf beg-binary end-binary)
1783       (goto-char (point-min))
1784       (setq length (count-lines 1 (point-max)))
1785       (setq parts (/ length gnus-uu-post-length))
1786       (if (not (< (% length gnus-uu-post-length) 4))
1787           (setq parts (1+ parts))))
1788
1789     (if gnus-uu-post-separate-description
1790         (forward-line -1))
1791     (kill-region (point) (point-max))
1792
1793     (goto-char (point-min))
1794     (re-search-forward 
1795      (concat "^" (regexp-quote mail-header-separator) "$") nil t)
1796     (beginning-of-line)
1797     (setq header (buffer-substring 1 (point)))
1798
1799     (goto-char (point-min))
1800     (if (not gnus-uu-post-separate-description)
1801         ()
1802       (if (and (not threaded) (re-search-forward "^Subject: " nil t))
1803           (progn
1804             (end-of-line)
1805             (insert (format " (0/%d)" parts))))
1806       (gnus-inews-news))
1807
1808     (save-excursion
1809       (setq i 1)
1810       (setq beg 1)
1811       (while (not (> i parts))
1812         (set-buffer (get-buffer-create send-buffer-name))
1813         (erase-buffer)
1814         (insert header)
1815         (if (and threaded gnus-uu-post-message-id)
1816             (insert (format "References: %s\n" gnus-uu-post-message-id)))
1817         (insert separator)
1818         (setq whole-len
1819               (- 62 (length (format top-string "" file-name i parts ""))))
1820         (if (> 1 (setq minlen (/ whole-len 2)))
1821             (setq minlen 1))
1822         (setq 
1823          beg-line 
1824          (format top-string
1825                  (make-string minlen ?-) 
1826                  file-name i parts
1827                  (make-string 
1828                   (if (= 0 (% whole-len 2)) (1- minlen) minlen) ?-)))
1829
1830         (goto-char (point-min))
1831         (if (not (re-search-forward "^Subject: " nil t))
1832             ()
1833           (if (not threaded)
1834               (progn
1835                 (end-of-line)
1836                 (insert (format " (%d/%d)" i parts)))
1837             (if (or (and (= i 2) gnus-uu-post-separate-description)
1838                     (and (= i 1) (not gnus-uu-post-separate-description)))
1839                 (replace-match "Subject: Re: "))))
1840                   
1841         (goto-char (point-max))
1842         (save-excursion
1843           (set-buffer uubuf)
1844           (goto-char beg)
1845           (if (= i parts)
1846               (goto-char (point-max))
1847             (forward-line gnus-uu-post-length))
1848           (if (and (= (1+ i) parts) (< (count-lines (point) (point-max)) 4))
1849               (forward-line -4))
1850           (setq end (point)))
1851         (insert-buffer-substring uubuf beg end)
1852         (insert beg-line)
1853         (insert "\n")
1854         (setq beg end)
1855         (setq i (1+ i))
1856         (goto-char (point-min))
1857         (re-search-forward
1858          (concat "^" (regexp-quote mail-header-separator) "$") nil t)
1859         (beginning-of-line)
1860         (forward-line 2)
1861         (if (re-search-forward 
1862              (concat "^" (regexp-quote gnus-uu-post-binary-separator) "$")
1863              nil t)
1864             (progn 
1865               (replace-match "")
1866               (forward-line 1)))
1867         (insert beg-line)
1868         (insert "\n")
1869         (gnus-inews-news)))
1870
1871     (and (setq buf (get-buffer send-buffer-name))
1872          (kill-buffer buf))
1873     (and (setq buf (get-buffer encoded-buffer-name))
1874          (kill-buffer buf))
1875
1876     (if (not gnus-uu-post-separate-description)
1877         (progn
1878           (set-buffer-modified-p nil)
1879           (and (fboundp 'bury-buffer) (bury-buffer))))))
1880
1881 (provide 'gnus-uu)
1882
1883 ;; gnus-uu.el ends here