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