Mercurial > emacs
annotate lisp/mail/unrmail.el @ 62081:c186a2b77f86
(cperl-init-faces): Use font-lock-negation-char-face.
author | Daniel Pfeiffer <occitan@esperanto.org> |
---|---|
date | Thu, 05 May 2005 19:04:39 +0000 |
parents | 85aa052b7bf2 |
children | 18a818a2ee7c 4c90ffeb71c5 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
1 ;;; unrmail.el --- convert Rmail files to mailbox files |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
2 |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
3 ;;; Copyright (C) 1992, 2002 Free Software Foundation, Inc. |
982 | 4 |
38695 | 5 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2233
diff
changeset
|
6 ;; Keywords: mail |
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2233
diff
changeset
|
7 |
982 | 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 | |
14169 | 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. | |
982 | 24 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
25 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
26 |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
27 ;;; Code: |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
28 |
982 | 29 (defvar command-line-args-left) ;Avoid 'free variable' warning |
30 | |
31 ;;;###autoload | |
32 (defun batch-unrmail () | |
6618 | 33 "Convert Rmail files to system inbox format. |
982 | 34 Specify the input Rmail file names as command line arguments. |
35 For each Rmail file, the corresponding output file name | |
36 is made by adding `.mail' at the end. | |
37 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." | |
38 ;; command-line-args-left is what is left of the command line (from startup.el) | |
39 (if (not noninteractive) | |
40 (error "`batch-unrmail' is to be used only with -batch")) | |
41 (let ((error nil)) | |
42 (while command-line-args-left | |
43 (or (unrmail (car command-line-args-left) | |
44 (concat (car command-line-args-left) ".mail")) | |
45 (setq error t)) | |
46 (setq command-line-args-left (cdr command-line-args-left))) | |
47 (message "Done") | |
48 (kill-emacs (if error 1 0)))) | |
49 | |
50 ;;;###autoload | |
51 (defun unrmail (file to-file) | |
6618 | 52 "Convert Rmail file FILE to system inbox format file TO-FILE." |
4266
5a7266ff9af1
(unrmail): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
53 (interactive "fUnrmail (rmail file): \nFUnrmail into (new mailbox file): ") |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
54 (with-temp-buffer |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
55 ;; 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
|
56 (let ((coding-system-for-read 'raw-text)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
57 (insert-file-contents file)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
58 ;; But make it multibyte. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
59 (set-buffer-multibyte t) |
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. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
111 (while (search-forward "\^_\^l" nil t) |
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 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
114 (if (search-forward "\^_" nil t) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
115 (1- (point)) (point-max)))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
116 (coding 'raw-text) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
117 label-line attrs keywords |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
118 mail-from reformatted) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
119 (with-current-buffer temp-buffer |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
120 (setq buffer-undo-list t) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
121 (erase-buffer) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
122 (setq buffer-file-coding-system coding) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
123 (insert-buffer-substring from-buffer beg end) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
124 (goto-char (point-min)) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
125 (forward-line 1) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
126 ;; Record whether the header is reformatted. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
127 (setq reformatted (= (following-char) ?1)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
128 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
129 ;; 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
|
130 ;; and the keywords from it. |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
131 (setq label-line |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
132 (buffer-substring (point) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
133 (save-excursion (forward-line 1) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
134 (point)))) |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
135 (search-forward ",,") |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
136 (unless (eolp) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
137 (setq keywords |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
138 (buffer-substring (point) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
139 (progn (end-of-line) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
140 (1- (point))))) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
141 (setq keywords |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
142 (replace-regexp-in-string ", " "," keywords))) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
143 |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
144 (setq attrs |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
145 (list |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
146 (if (string-match ", answered," label-line) ?A ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
147 (if (string-match ", deleted," label-line) ?D ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
148 (if (string-match ", edited," label-line) ?E ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
149 (if (string-match ", filed," label-line) ?F ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
150 (if (string-match ", resent," label-line) ?R ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
151 (if (string-match ", unseen," label-line) ?\ ?-) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
152 (if (string-match ", stored," label-line) ?S ?-))) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
153 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
154 ;; 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
|
155 ;; 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
|
156 (goto-char (point-min)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
157 (if reformatted |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
158 (progn |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
159 (forward-line 2) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
160 ;; Delete Summary-Line headers. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
161 (let ((case-fold-search t)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
162 (while (looking-at "Summary-Line:") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
163 (forward-line 1))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
164 (delete-region (point-min) (point)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
165 ;; Delete the old reformatted header. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
166 (re-search-forward "^[*][*][*] EOOH [*][*][*]\n") |
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 (let ((start (point))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
169 (search-forward "\n\n") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
170 (delete-region start (point)))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
171 ;; Not reformatted. Delete the special |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
172 ;; lines before the real header. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
173 (re-search-forward "^[*][*][*] EOOH [*][*][*]\n") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
174 (delete-region (point-min) (point))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
175 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
176 ;; Some operations on the message header itself. |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
177 (goto-char (point-min)) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
178 (save-restriction |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
179 (narrow-to-region |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
180 (point-min) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
181 (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
|
182 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
183 ;; Fetch or construct what we should use in the `From ' line. |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
184 (setq mail-from |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
185 (or (mail-fetch-field "Mail-From") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
186 (concat "From " |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
187 (mail-strip-quoted-names (or (mail-fetch-field "from") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
188 (mail-fetch-field "really-from") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
189 (mail-fetch-field "sender") |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
190 "unknown")) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
191 " " (current-time-string)))) |
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 ;; 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
|
194 (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
|
195 (if maybe-coding |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
196 (setq coding (intern maybe-coding)))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
197 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
198 ;; 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
|
199 (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
|
200 (beginning-of-line) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
201 (delete-region (point) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
202 (progn (forward-line 1) (point))))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
203 |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
204 (goto-char (point-min)) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
205 ;; Insert the `From ' line. |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
206 (insert mail-from "\n") |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
207 ;; Record the keywords and attributes in our special way. |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
208 (insert "X-BABYL-V6-ATTRIBUTES: " (apply 'string attrs) "\n") |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
209 (when keywords |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
210 (insert "X-BABYL-V6-KEYWORDS: " keywords "\n")) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
211 (goto-char (point-min)) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
212 ;; ``Quote'' "\nFrom " as "\n>From " |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
213 ;; (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
|
214 ;; 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
|
215 (let ((case-fold-search nil)) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
216 (while (search-forward "\nFrom " nil t) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
217 (forward-char -5) |
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
218 (insert ?>))) |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
219 ;; Write it to the output file. |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
220 (write-region (point-min) (point-max) to-file t |
55497
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
221 'nomsg)))) |
85aa052b7bf2
(unrmail): Mostly rewritten. Parses the file
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
222 (kill-buffer temp-buffer)) |
4266
5a7266ff9af1
(unrmail): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
223 (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
|
224 |
18383 | 225 (provide 'unrmail) |
226 | |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
982
diff
changeset
|
227 ;;; unrmail.el ends here |
47631
433ae412d00f
(unrmail): Do the work directly,
Richard M. Stallman <rms@gnu.org>
parents:
38695
diff
changeset
|
228 |
52401 | 229 ;;; arch-tag: 14c6290d-60b2-456f-8909-5c2387de6acb |