]> code.delx.au - gnu-emacs/blob - lisp/mail/undigest.el
(mail-mode-map): Bind M-TAB to mail-complete.
[gnu-emacs] / lisp / mail / undigest.el
1 ;;; undigest.el --- digest-cracking support for the RMAIL mail reader
2
3 ;; Copyright (C) 1985, 1986, 1994 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: mail
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 the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; See Internet RFC 934
28
29 ;;; Code:
30
31 (require 'rmail)
32
33 (defun undigestify-rmail-message ()
34 "Break up a digest message into its constituent messages.
35 Leaves original message, deleted, before the undigestified messages."
36 (interactive)
37 (widen)
38 (let ((buffer-read-only nil)
39 (msg-string (buffer-substring (rmail-msgbeg rmail-current-message)
40 (rmail-msgend rmail-current-message))))
41 (goto-char (rmail-msgend rmail-current-message))
42 (narrow-to-region (point) (point))
43 (insert msg-string)
44 (narrow-to-region (point-min) (1- (point-max))))
45 (let ((error t)
46 (buffer-read-only nil))
47 (unwind-protect
48 (progn
49 (save-restriction
50 (goto-char (point-min))
51 (delete-region (point-min)
52 (progn (search-forward "\n*** EOOH ***\n")
53 (point)))
54 (insert "\^_\^L\n0, unseen,,\n*** EOOH ***\n")
55 (narrow-to-region (point)
56 (point-max))
57 (let* ((fill-prefix "")
58 (case-fold-search t)
59 start
60 (digest-name
61 (mail-strip-quoted-names
62 (or (save-restriction
63 (search-forward "\n\n")
64 (setq start (point))
65 (narrow-to-region (point-min) (point))
66 (goto-char (point-max))
67 (or (mail-fetch-field "Reply-To")
68 (mail-fetch-field "To")
69 (mail-fetch-field "Apparently-To")
70 (mail-fetch-field "From")))
71 (error "Message is not a digest--bad header")))))
72 (save-excursion
73 (goto-char (point-max))
74 (skip-chars-backward " \t\n")
75 (let (found)
76 ;; compensate for broken un*x digestifiers. Sigh Sigh.
77 (while (and (> (point) start) (not found))
78 (forward-line -1)
79 (if (looking-at (concat "End of.*Digest.*\n"
80 (regexp-quote "*********") "*"
81 "\\(\n------*\\)*"))
82 (setq found t)))
83 (if (not found)
84 (error "Message is not a digest--no end line"))))
85 (re-search-forward (concat "^" (make-string 55 ?-) "-*\n*"))
86 (replace-match "\^_\^L\n0, unseen,,\n*** EOOH ***\n")
87 (save-restriction
88 (narrow-to-region (point)
89 (progn (search-forward "\n\n")
90 (point)))
91 (if (mail-fetch-field "To") nil
92 (goto-char (point-min))
93 (insert "To: " digest-name "\n")))
94 (while (re-search-forward
95 (concat "\n\n" (make-string 27 ?-) "-*\n*")
96 nil t)
97 (replace-match "\n\n\^_\^L\n0, unseen,,\n*** EOOH ***\n")
98 (save-restriction
99 (if (looking-at "End ")
100 (insert "To: " digest-name "\n\n")
101 (narrow-to-region (point)
102 (progn (search-forward "\n\n"
103 nil 'move)
104 (point))))
105 (if (mail-fetch-field "To")
106 nil
107 (goto-char (point-min))
108 (insert "To: " digest-name "\n")))
109 ;; Digestifiers may insert `- ' on lines that start with `-'.
110 ;; Undo that.
111 (save-excursion
112 (goto-char (point-min))
113 (if (re-search-forward
114 "\n\n----------------------------*\n*"
115 nil t)
116 (let ((end (point-marker)))
117 (goto-char (point-min))
118 (while (re-search-forward "^- " end t)
119 (delete-char -2)))))
120 )))
121 (setq error nil)
122 (message "Message successfully undigestified")
123 (let ((n rmail-current-message))
124 (rmail-forget-messages)
125 (rmail-show-message n)
126 (rmail-delete-forward)
127 (if (rmail-summary-exists)
128 (rmail-select-summary
129 (rmail-update-summary)))))
130 (cond (error
131 (narrow-to-region (point-min) (1+ (point-max)))
132 (delete-region (point-min) (point-max))
133 (rmail-show-message rmail-current-message))))))
134
135 ;;;###autoload
136 (defun unforward-rmail-message ()
137 "Extract a forwarded message from the containing message.
138 This puts the forwarded message into a separate rmail message
139 following the containing message."
140 (interactive)
141 (narrow-to-region (rmail-msgbeg rmail-current-message)
142 (rmail-msgend rmail-current-message))
143 (goto-char (point-min))
144 (let (beg end (buffer-read-only nil) msg-string who-forwarded-it)
145 (setq who-forwarded-it (mail-fetch-field "From"))
146 (if (re-search-forward "^----" nil t)
147 nil
148 (error "No forwarded message"))
149 (forward-line 1)
150 (setq beg (point))
151 (if (re-search-forward "^----" nil t)
152 (setq end (match-beginning 0))
153 (error "No terminator for forwarded message"))
154 (widen)
155 (setq msg-string (buffer-substring beg end))
156 (goto-char (rmail-msgend rmail-current-message))
157 (narrow-to-region (point) (point))
158 (insert "\^_\^L\n0, unseen,,\n*** EOOH ***\n")
159 (narrow-to-region (point) (point))
160 (insert "Forwarded-by: " who-forwarded-it "\n")
161 (insert msg-string)
162 (goto-char (point-min))
163 (while (not (eobp))
164 (if (looking-at "- ")
165 (delete-region (point) (+ 2 (point))))
166 (forward-line 1))
167 (let ((n rmail-current-message))
168 (rmail-forget-messages)
169 (rmail-show-message n)
170 (if (rmail-summary-exists)
171 (rmail-select-summary
172 (rmail-update-summary))))))
173
174 ;;; undigest.el ends here