1 ;;; undigest.el --- digest-cracking support for the RMAIL mail reader
3 ;; Copyright (C) 1985, 1986, 1994, 1996, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; See Internet RFC 934 and RFC 1153
27 ;; Also limited support for MIME digest encapsulation
33 (defconst rmail-mail-separator
34 "\^_\^L\n0, unseen,,\n*** EOOH ***\n"
35 "String for separating messages in an rmail file.")
37 (defcustom rmail-forward-separator-regex
38 "^----.*\\([Ff]orwarded\\|[Oo]riginal\\).*[Mm]essage"
39 "*Regexp to match the string that introduces forwarded messages.
40 This is not a header, but a string contained in the body of the message.
41 You may need to customize it for local needs."
43 :group
'rmail-headers
)
46 (defconst rmail-digest-methods
47 '(rmail-digest-parse-mime
48 rmail-digest-parse-rfc1153strict
49 rmail-digest-parse-rfc1153sloppy
50 rmail-digest-parse-rfc934
)
51 "List of digest parsing functions, first tried first.
53 These functions operate on the current narrowing, and take no argument.
54 A function returns nil if it cannot parse the digest. If it can, it
55 returns a list of cons pairs containing the start and end positions of
56 each undigestified message as markers.")
58 (defun rmail-digest-parse-mime ()
59 (goto-char (point-min))
60 (when (let ((head-end (progn (search-forward "\n\n" nil t
) (point))))
61 (goto-char (point-min))
65 "^Content-type: multipart/digest;"
66 "\\s-* boundary=\"?\\([^\";\n]+\\)[\";\n]") head-end t
)
67 (search-forward (match-string 1) nil t
)))
68 ;; Ok, prolog separator found
69 (let ((start (make-marker))
71 (separator (concat "\n--" (match-string 0) "\n\n"))
73 (while (search-forward separator nil t
)
74 (move-marker start
(match-beginning 0))
75 (move-marker end
(match-end 0))
76 (add-to-list 'result
(cons (copy-marker start
) (copy-marker end t
))))
77 ;; Return the list of marker pairs
80 (defun rmail-digest-parse-rfc1153strict ()
81 "Parse following strictly the method defined in RFC 1153.
82 See rmail-digest-methods."
86 "^\n-\\{30\\}\n\nEnd of .* Digest.*\n\\*\\{15,\\}\n+\'"))
88 (defun rmail-digest-parse-rfc1153sloppy ()
89 "Parse using the method defined in RFC 1153, allowing for some sloppiness.
90 See rmail-digest-methods."
94 ;; GNU Mailman knowingly (see comment at line 353 of ToDigest.py in
95 ;; Mailman source) produces non-conformant rfc 1153 digests, in that
96 ;; the trailer contains a "digest footer" like this:
97 ;; _______________________________________________
98 ;; <one or more lines of list blurb>
100 ;; End of Foo Digest...
101 ;; **************************************
104 (defun rmail-digest-rfc1153 (prolog-sep message-sep trailer-sep
)
105 (goto-char (point-min))
106 (when (re-search-forward prolog-sep nil t
)
107 ;; Ok, prolog separator found
108 (let ((start (make-marker))
111 (move-marker start
(match-beginning 0))
112 (move-marker end
(match-end 0))
113 (setq result
(list (cons (copy-marker start
) (copy-marker end t
))))
114 (when (re-search-forward message-sep nil t
)
115 ;; Ok, at least one message separator found
116 (setq separator
(match-string 0))
117 (when (re-search-forward trailer-sep nil t
)
118 ;; Wonderful, we found a trailer, too. Now, go on splitting
119 ;; the digest into separate rmail messages
120 (goto-char (cdar result
))
121 (while (search-forward separator nil t
)
122 (move-marker start
(match-beginning 0))
123 (move-marker end
(match-end 0))
125 (cons (copy-marker start
) (copy-marker end t
))))
126 ;; Undo masking of separators inside digestified messages
127 (goto-char (point-min))
128 (while (search-forward
129 (replace-regexp-in-string "\n-" "\n " separator
) nil t
)
130 (replace-match separator
))
131 ;; Return the list of marker pairs
132 (nreverse result
))))))
134 (defun rmail-digest-parse-rfc934 ()
135 (goto-char (point-min))
136 (when (re-search-forward "^\n?-[^ ].*\n\n?" nil t
)
137 ;; Message separator found
138 (let ((start (make-marker))
140 (separator (match-string 0))
142 (goto-char (point-min))
143 (while (search-forward separator nil t
)
144 (move-marker start
(match-beginning 0))
145 (move-marker end
(match-end 0))
146 (add-to-list 'result
(cons (copy-marker start
) (copy-marker end t
))))
147 ;; Undo masking of separators inside digestified messages
148 (goto-char (point-min))
149 (while (search-forward "\n- -" nil t
)
150 (replace-match "\n-"))
151 ;; Return the list of marker pairs
154 (declare-function rmail-update-summary
"rmailsum" (&rest ignore
))
157 (defun undigestify-rmail-message ()
158 "Break up a digest message into its constituent messages.
159 Leaves original message, deleted, before the undigestified messages."
161 (with-current-buffer rmail-buffer
164 (buffer-read-only nil
))
165 (goto-char (rmail-msgend rmail-current-message
))
166 (let ((msg-copy (buffer-substring (rmail-msgbeg rmail-current-message
)
167 (rmail-msgend rmail-current-message
))))
168 (narrow-to-region (point) (point))
170 (narrow-to-region (point-min) (1- (point-max)))
174 (goto-char (point-min))
175 (delete-region (point-min)
176 (progn (search-forward "\n*** EOOH ***\n" nil t
)
178 (insert "\n" rmail-mail-separator
)
179 (narrow-to-region (point)
181 (let ((fill-prefix "")
183 digest-name type start end separator fun-list sep-list
)
184 (setq digest-name
(mail-strip-quoted-names
186 (search-forward "\n\n" nil
'move
)
188 (narrow-to-region (point-min) start
)
189 (or (mail-fetch-field "Reply-To")
190 (mail-fetch-field "To")
191 (mail-fetch-field "Apparently-To")
192 (mail-fetch-field "From")))))
194 (error "Message is not a digest--bad header"))
196 (setq fun-list rmail-digest-methods
)
198 (null (setq sep-list
(funcall (car fun-list
)))))
199 (setq fun-list
(cdr fun-list
)))
201 (error "Message is not a digest--no messages found"))
203 ;;; Split the digest into separate rmail messages
205 (let ((start (caar sep-list
))
206 (end (cdar sep-list
)))
207 (delete-region start end
)
209 (insert rmail-mail-separator
)
210 (search-forward "\n\n" (caar (cdr sep-list
)) 'move
)
212 (narrow-to-region end
(point))
213 (unless (mail-fetch-field "To")
215 (insert "To: " digest-name
"\n")))
216 (set-marker start nil
)
217 (set-marker end nil
))
218 (setq sep-list
(cdr sep-list
)))))
221 (message "Message successfully undigestified")
222 (let ((n rmail-current-message
))
223 (rmail-forget-messages)
224 (rmail-show-message n
)
225 (rmail-delete-forward)
226 (if (rmail-summary-exists)
227 (rmail-select-summary
228 (rmail-update-summary)))))
230 (narrow-to-region (point-min) (1+ (point-max)))
231 (delete-region (point-min) (point-max))
232 (rmail-show-message rmail-current-message
)))))))
235 (defun unforward-rmail-message ()
236 "Extract a forwarded message from the containing message.
237 This puts the forwarded message into a separate rmail message
238 following the containing message."
240 ;; If we are in a summary buffer, switch to the Rmail buffer.
242 (with-current-buffer rmail-buffer
243 (goto-char (point-min))
244 (narrow-to-region (point)
245 (save-excursion (search-forward "\n\n") (point)))
246 (let ((buffer-read-only nil
)
247 (old-fwd-from (mail-fetch-field "Forwarded-From" nil nil t
))
248 (old-fwd-date (mail-fetch-field "Forwarded-Date" nil nil t
))
249 (fwd-from (mail-fetch-field "From"))
250 (fwd-date (mail-fetch-field "Date"))
251 beg end prefix forward-msg
)
252 (narrow-to-region (rmail-msgbeg rmail-current-message
)
253 (rmail-msgend rmail-current-message
))
254 (goto-char (point-min))
255 (cond ((re-search-forward rmail-forward-separator-regex nil t
)
257 (skip-chars-forward "\n")
259 (setq end
(if (re-search-forward "^----.*[^- \t\n]" nil t
)
260 (match-beginning 0) (point-max)))
262 (replace-regexp-in-string
263 "^- -" "-" (buffer-substring beg end
))))
264 ((and (re-search-forward "^\\(> ?\\)[a-zA-Z-]+: .*\n" nil t
)
265 (setq beg
(match-beginning 0))
266 (setq prefix
(match-string-no-properties 1))
268 (looking-at (concat "\\(" prefix
".+\n\\)*"
270 (looking-at (concat "\\(" prefix
".+\n\\)*"
272 "\\(" prefix
".+\n\\)*"
273 "\\(> ?\\)?\n" prefix
)))
274 (re-search-forward "^[^>\n]" nil
'move
)
276 (skip-chars-backward " \t\n")
280 (replace-regexp-in-string
281 (if (string= prefix
">") "^>" "> ?")
282 "" (buffer-substring beg end
))))
284 (error "No forwarded message found")))
286 (goto-char (rmail-msgend rmail-current-message
))
287 (narrow-to-region (point) (point))
288 (insert rmail-mail-separator
)
289 (narrow-to-region (point) (point))
291 (insert "Forwarded-From: " (car old-fwd-from
) "\n")
292 (insert "Forwarded-Date: " (car old-fwd-date
) "\n")
293 (setq old-fwd-from
(cdr old-fwd-from
))
294 (setq old-fwd-date
(cdr old-fwd-date
)))
295 (insert "Forwarded-From: " fwd-from
"\n")
296 (insert "Forwarded-Date: " fwd-date
"\n")
299 (goto-char (point-min))
300 (re-search-forward "\n$" nil
'move
)
301 (narrow-to-region (point-min) (point))
302 (goto-char (point-min))
304 (unless (looking-at "^[a-zA-Z-]+: ")
307 (goto-char (point-min))))
308 (let ((n rmail-current-message
))
309 (rmail-forget-messages)
310 (rmail-show-message n
))
311 (if (rmail-summary-exists)
312 (rmail-select-summary
313 (rmail-update-summary)))))
318 ;; arch-tag: 3a28b9fb-c1f5-43ef-9278-285f3e4b874d
319 ;;; undigest.el ends here