Mercurial > emacs
annotate lisp/mail/unrmail.el @ 107899:e4d7764c4cbe
Fix crashes in GC in "emacs -nw".
xdisp.c (display_line): Don't write beyond the last glyph row in
the desired matrix. Fixes crashes in "emacs -nw", see
http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
and http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 19 Apr 2010 15:12:13 +0300 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
rev | line source |
---|---|
101536
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1 ;;; unrmail.el --- convert Rmail Babyl files to mailbox files |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
2 |
101536
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
3 ;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
106815 | 4 ;; 2009, 2010 Free Software Foundation, Inc. |
982 | 5 |
38695 | 6 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2233
diff
changeset
|
7 ;; Keywords: mail |
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2233
diff
changeset
|
8 |
982 | 9 ;; This file is part of GNU Emacs. |
10 | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
982 | 12 ;; it under the terms of the GNU General Public License as published by |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
982 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
982 | 23 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
24 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
25 |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
26 ;;; Code: |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
27 |
982 | 28 ;;;###autoload |
29 (defun batch-unrmail () | |
101536
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
30 "Convert old-style Rmail Babyl files to system inbox format. |
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
31 Specify the input Rmail Babyl file names as command line arguments. |
982 | 32 For each Rmail file, the corresponding output file name |
33 is made by adding `.mail' at the end. | |
34 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." | |
35 (if (not noninteractive) | |
36 (error "`batch-unrmail' is to be used only with -batch")) | |
37 (let ((error nil)) | |
38 (while command-line-args-left | |
39 (or (unrmail (car command-line-args-left) | |
40 (concat (car command-line-args-left) ".mail")) | |
41 (setq error t)) | |
42 (setq command-line-args-left (cdr command-line-args-left))) | |
43 (message "Done") | |
44 (kill-emacs (if error 1 0)))) | |
45 | |
102090
d5ecb9cfd7cb
(unrmail): Use mail-mbox-from.
Glenn Morris <rgm@gnu.org>
parents:
101988
diff
changeset
|
46 (declare-function mail-mbox-from "mail-utils" ()) |
101884
a67721ab1564
(rmime-magic-string): Define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
101839
diff
changeset
|
47 (defvar rmime-magic-string) ; in rmime.el, if you have it |
86440
4aedd218aad1
* mail/mspools.el (rmail-get-new-mail):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78232
diff
changeset
|
48 |
982 | 49 ;;;###autoload |
50 (defun unrmail (file to-file) | |
101536
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
51 "Convert old-style Rmail Babyl file FILE to system inbox format file TO-FILE." |
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
52 (interactive "fUnrmail (babyl file): \nFUnrmail into (new mailbox file): ") |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
53 (with-temp-buffer |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
54 ;; Read in the old Rmail file with no decoding. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
55 (let ((coding-system-for-read 'raw-text)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
56 (insert-file-contents file)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
57 ;; But make it multibyte. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
58 (set-buffer-multibyte t) |
101711
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
59 (setq buffer-file-coding-system 'raw-text-unix) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
60 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
61 (if (not (looking-at "BABYL OPTIONS")) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
62 (error "This file is not in Babyl format")) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
63 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
64 ;; Decode the file contents just as Rmail did. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
65 (let ((modifiedp (buffer-modified-p)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
66 (coding-system rmail-file-coding-system) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
67 from to) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
68 (goto-char (point-min)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
69 (search-forward "\n\^_" nil t) ; Skip BABYL header. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
70 (setq from (point)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
71 (goto-char (point-max)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
72 (search-backward "\n\^_" from 'mv) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
73 (setq to (point)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
74 (unless (and coding-system |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
75 (coding-system-p coding-system)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
76 (setq coding-system |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
77 ;; Emacs 21.1 and later writes RMAIL files in emacs-mule, but |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
78 ;; earlier versions did that with the current buffer's encoding. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
79 ;; So we want to favor detection of emacs-mule (whose normal |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
80 ;; priority is quite low), but still allow detection of other |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
81 ;; encodings if emacs-mule won't fit. The call to |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
82 ;; detect-coding-with-priority below achieves that. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
83 (car (detect-coding-with-priority |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
84 from to |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
85 '((coding-category-emacs-mule . emacs-mule)))))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
86 (unless (memq coding-system |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
87 '(undecided undecided-unix)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
88 (set-buffer-modified-p t) ; avoid locking when decoding |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
89 (let ((buffer-undo-list t)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
90 (decode-coding-region from to coding-system)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
91 (setq coding-system last-coding-system-used)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
92 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
93 (setq buffer-file-coding-system nil) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
94 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
95 ;; We currently don't use this value, but maybe we should. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
96 (setq save-buffer-coding-system |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
97 (or coding-system 'undecided))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
98 |
14296
e3e1d7c2e7e5
(unrmail): Default the directory of TO-FILE based on FILE.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
99 ;; Default the directory of TO-FILE based on where FILE is. |
e3e1d7c2e7e5
(unrmail): Default the directory of TO-FILE based on FILE.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
100 (setq to-file (expand-file-name to-file default-directory)) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
101 (condition-case () |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
102 (delete-file to-file) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
103 (file-error nil)) |
4266
5a7266ff9af1
(unrmail): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
104 (message "Writing messages to %s..." to-file) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
105 (goto-char (point-min)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
106 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
107 (let ((temp-buffer (get-buffer-create " unrmail")) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
108 (from-buffer (current-buffer))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
109 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
110 ;; Process the messages one by one. |
101839
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
111 (while (re-search-forward "^\^_\^l" nil t) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
112 (let ((beg (point)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
113 (end (save-excursion |
101839
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
114 (if (re-search-forward "^\^_\\(\^l\\|\\'\\)" nil t) |
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
115 (match-beginning 0) |
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
116 (point-max)))) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
117 (coding 'raw-text) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
118 label-line attrs keywords |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
119 mail-from reformatted) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
120 (with-current-buffer temp-buffer |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
121 (setq buffer-undo-list t) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
122 (erase-buffer) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
123 (setq buffer-file-coding-system coding) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
124 (insert-buffer-substring from-buffer beg end) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
125 (goto-char (point-min)) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
126 (forward-line 1) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
127 ;; Record whether the header is reformatted. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
128 (setq reformatted (= (following-char) ?1)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
129 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
130 ;; Collect the label line, then get the attributes |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
131 ;; and the keywords from it. |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
132 (setq label-line |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
133 (buffer-substring (point) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
134 (save-excursion (forward-line 1) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
135 (point)))) |
101988
0f2fdeca8ec1
(unrmail): When getting message keywords, don't include a leading
Glenn Morris <rgm@gnu.org>
parents:
101884
diff
changeset
|
136 (re-search-forward ",, ?") |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
137 (unless (eolp) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
138 (setq keywords |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
139 (buffer-substring (point) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
140 (progn (end-of-line) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
141 (1- (point))))) |
101988
0f2fdeca8ec1
(unrmail): When getting message keywords, don't include a leading
Glenn Morris <rgm@gnu.org>
parents:
101884
diff
changeset
|
142 ;; Mbox rmail needs the spaces. Bug#2303. |
0f2fdeca8ec1
(unrmail): When getting message keywords, don't include a leading
Glenn Morris <rgm@gnu.org>
parents:
101884
diff
changeset
|
143 ;;; (setq keywords |
0f2fdeca8ec1
(unrmail): When getting message keywords, don't include a leading
Glenn Morris <rgm@gnu.org>
parents:
101884
diff
changeset
|
144 ;;; (replace-regexp-in-string ", " "," keywords)) |
0f2fdeca8ec1
(unrmail): When getting message keywords, don't include a leading
Glenn Morris <rgm@gnu.org>
parents:
101884
diff
changeset
|
145 ) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
146 |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
147 (setq attrs |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
148 (list |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
149 (if (string-match ", answered," label-line) ?A ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
150 (if (string-match ", deleted," label-line) ?D ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
151 (if (string-match ", edited," label-line) ?E ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
152 (if (string-match ", filed," label-line) ?F ?-) |
101685
c39779cefaea
(unrmail): Fix conversion of BABYL attributes into Rmail-mbox attributes.
Eli Zaretskii <eliz@gnu.org>
parents:
101589
diff
changeset
|
153 (if (string-match ", retried," label-line) ?R ?-) |
c39779cefaea
(unrmail): Fix conversion of BABYL attributes into Rmail-mbox attributes.
Eli Zaretskii <eliz@gnu.org>
parents:
101589
diff
changeset
|
154 (if (string-match ", forwarded," label-line) ?S ?-) |
c39779cefaea
(unrmail): Fix conversion of BABYL attributes into Rmail-mbox attributes.
Eli Zaretskii <eliz@gnu.org>
parents:
101589
diff
changeset
|
155 (if (string-match ", unseen," label-line) ?U ?-) |
c39779cefaea
(unrmail): Fix conversion of BABYL attributes into Rmail-mbox attributes.
Eli Zaretskii <eliz@gnu.org>
parents:
101589
diff
changeset
|
156 (if (string-match ", resent," label-line) ?r ?-))) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
157 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
158 ;; Delete the special Babyl lines at the start, |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
159 ;; and the ***EOOH*** line, and the reformatted header if any. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
160 (goto-char (point-min)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
161 (if reformatted |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
162 (progn |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
163 (forward-line 2) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
164 ;; Delete Summary-Line headers. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
165 (let ((case-fold-search t)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
166 (while (looking-at "Summary-Line:") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
167 (forward-line 1))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
168 (delete-region (point-min) (point)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
169 ;; Delete the old reformatted header. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
170 (re-search-forward "^[*][*][*] EOOH [*][*][*]\n") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
171 (forward-line -1) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
172 (let ((start (point))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
173 (search-forward "\n\n") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
174 (delete-region start (point)))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
175 ;; Not reformatted. Delete the special |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
176 ;; lines before the real header. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
177 (re-search-forward "^[*][*][*] EOOH [*][*][*]\n") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
178 (delete-region (point-min) (point))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
179 |
101839
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
180 ;; Handle rmime formatting. |
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
181 (when (require 'rmime nil t) |
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
182 (let ((start (point))) |
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
183 (while (search-forward rmime-magic-string nil t)) |
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
184 (delete-region start (point)))) |
1eedc742bd61
Sync final change from rmail-mox-branch, rev 1.13.2.4, 2006-01-16.
Glenn Morris <rgm@gnu.org>
parents:
101830
diff
changeset
|
185 |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
186 ;; Some operations on the message header itself. |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
187 (goto-char (point-min)) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
188 (save-restriction |
101536
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
189 (narrow-to-region |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
190 (point-min) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
191 (save-excursion (search-forward "\n\n" nil 'move) (point))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
192 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
193 ;; Fetch or construct what we should use in the `From ' line. |
102927
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
194 (setq mail-from (or (let ((from (mail-fetch-field "Mail-From"))) |
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
195 ;; mail-mbox-from (below) returns a |
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
196 ;; string that ends in a newline, but |
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
197 ;; but mail-fetch-field does not, so |
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
198 ;; we append a newline here. |
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
199 (if from |
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
200 (format "%s\n" from))) |
102090
d5ecb9cfd7cb
(unrmail): Use mail-mbox-from.
Glenn Morris <rgm@gnu.org>
parents:
101988
diff
changeset
|
201 (mail-mbox-from))) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
202 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
203 ;; If the message specifies a coding system, use it. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
204 (let ((maybe-coding (mail-fetch-field "X-Coding-System"))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
205 (if maybe-coding |
101711
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
206 (setq coding |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
207 ;; Force Unix EOLs. |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
208 (coding-system-change-eol-conversion |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
209 (intern maybe-coding) 0)) |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
210 ;; If there's no X-Coding-System header, assume the |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
211 ;; message was never decoded. |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
212 (setq coding 'raw-text-unix))) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
213 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
214 ;; Delete the Mail-From: header field if any. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
215 (when (re-search-forward "^Mail-from:" nil t) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
216 (beginning-of-line) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
217 (delete-region (point) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
218 (progn (forward-line 1) (point))))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
219 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
220 (goto-char (point-min)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
221 ;; Insert the `From ' line. |
102927
510e9d4f2aa4
(unrmail): If "Mail-From" header is found, append a newline to it.
Eli Zaretskii <eliz@gnu.org>
parents:
102090
diff
changeset
|
222 (insert mail-from) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
223 ;; Record the keywords and attributes in our special way. |
101589
01abffb7f38c
(unrmail): Record labels in X-RMAIL-* fields, which are recognized by
Chong Yidong <cyd@stupidchicken.com>
parents:
101536
diff
changeset
|
224 (insert "X-RMAIL-ATTRIBUTES: " (apply 'string attrs) "\n") |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
225 (when keywords |
101589
01abffb7f38c
(unrmail): Record labels in X-RMAIL-* fields, which are recognized by
Chong Yidong <cyd@stupidchicken.com>
parents:
101536
diff
changeset
|
226 (insert "X-RMAIL-KEYWORDS: " keywords "\n")) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
227 (goto-char (point-min)) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
228 ;; ``Quote'' "\nFrom " as "\n>From " |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
229 ;; (note that this isn't really quoting, as there is no requirement |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
230 ;; that "\n[>]+From " be quoted in the same transparent way.) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
231 (let ((case-fold-search nil)) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
232 (while (search-forward "\nFrom " nil t) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
233 (forward-char -5) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
234 (insert ?>))) |
103773
5cc45bab5282
* mail/unrmail.el (unrmail): Make sure the message ends with two
Chong Yidong <cyd@stupidchicken.com>
parents:
102927
diff
changeset
|
235 ;; Make sure the message ends with two newlines |
5cc45bab5282
* mail/unrmail.el (unrmail): Make sure the message ends with two
Chong Yidong <cyd@stupidchicken.com>
parents:
102927
diff
changeset
|
236 (goto-char (point-max)) |
5cc45bab5282
* mail/unrmail.el (unrmail): Make sure the message ends with two
Chong Yidong <cyd@stupidchicken.com>
parents:
102927
diff
changeset
|
237 (unless (looking-back "\n\n") |
5cc45bab5282
* mail/unrmail.el (unrmail): Make sure the message ends with two
Chong Yidong <cyd@stupidchicken.com>
parents:
102927
diff
changeset
|
238 (insert "\n")) |
101711
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
239 ;; Write it to the output file, suitably encoded. |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
240 (let ((coding-system-for-write coding)) |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
241 (write-region (point-min) (point-max) to-file t |
4ea3bd98b124
(unrmail): Set coding-system of the old Rmail file to `raw-text-unix'.
Eli Zaretskii <eliz@gnu.org>
parents:
101685
diff
changeset
|
242 'nomsg))))) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
243 (kill-buffer temp-buffer)) |
4266
5a7266ff9af1
(unrmail): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
244 (message "Writing messages to %s...done" to-file))) |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
245 |
18383 | 246 (provide 'unrmail) |
247 | |
101536
a8fcffcd20d5
(command-line-args-left): Remove unneeded declaration.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
248 ;; arch-tag: 14c6290d-60b2-456f-8909-5c2387de6acb |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
249 ;;; unrmail.el ends here |