Mercurial > emacs
annotate lisp/mh-e/mh-folder.el @ 102232:7de4f0f549a4
(Finternal_set_font_selection_order): Remove leading whitespace that
confuses documentation.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 24 Feb 2009 03:39:57 +0000 |
parents | 56b54a17e930 |
children | 73bff1db57b6 |
rev | line source |
---|---|
68465 | 1 ;;; mh-folder.el --- MH-Folder mode |
2 | |
100908 | 3 ;; Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2009 |
95843 | 4 ;; Free Software Foundation, Inc. |
68465 | 5 |
6 ;; Author: Bill Wohler <wohler@newt.com> | |
7 ;; Maintainer: Bill Wohler <wohler@newt.com> | |
8 ;; Keywords: mail | |
9 ;; See: mh-e.el | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
94663
90c9ebd43589
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
68465 | 14 ;; it under the terms of the GNU General Public License as published by |
94663
90c9ebd43589
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
90c9ebd43589
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
16 ;; (at your option) any later version. |
68465 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
94663
90c9ebd43589
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
68465 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; Mode for browsing folders | |
29 | |
30 ;;; Change Log: | |
31 | |
32 ;;; Code: | |
33 | |
34 (require 'mh-e) | |
35 (require 'mh-scan) | |
36 (mh-require-cl) | |
37 | |
69245
f3bbf5f32462
* mh-folder.el (mh-tool-bar-init): Autoload.
Bill Wohler <wohler@newt.com>
parents:
68529
diff
changeset
|
38 ;; Dynamically-created functions not found in mh-loaddefs.el. |
68465 | 39 (autoload 'mh-tool-bar-folder-buttons-init "mh-tool-bar") |
69245
f3bbf5f32462
* mh-folder.el (mh-tool-bar-init): Autoload.
Bill Wohler <wohler@newt.com>
parents:
68529
diff
changeset
|
40 (autoload 'mh-tool-bar-init "mh-tool-bar") |
68465 | 41 |
42 (require 'gnus-util) | |
43 (autoload 'message-fetch-field "message") | |
44 | |
45 | |
46 | |
47 ;;; MH-E Entry Points | |
48 | |
49 ;;;###autoload | |
50 (defun mh-rmail (&optional arg) | |
51 "Incorporate new mail with MH. | |
52 Scan an MH folder if ARG is non-nil. | |
53 | |
54 This function is an entry point to MH-E, the Emacs interface to | |
55 the MH mail system." | |
56 (interactive "P") | |
57 (mh-find-path) | |
58 (if arg | |
59 (call-interactively 'mh-visit-folder) | |
60 (unless (get-buffer mh-inbox) | |
61 (mh-visit-folder mh-inbox (symbol-name mh-unseen-seq))) | |
62 (mh-inc-folder))) | |
63 | |
64 ;;;###autoload | |
65 (defun mh-nmail (&optional arg) | |
66 "Check for new mail in inbox folder. | |
67 Scan an MH folder if ARG is non-nil. | |
68 | |
69 This function is an entry point to MH-E, the Emacs interface to | |
70 the MH mail system." | |
71 (interactive "P") | |
72 (mh-find-path) ; init mh-inbox | |
73 (if arg | |
74 (call-interactively 'mh-visit-folder) | |
75 (mh-visit-folder mh-inbox))) | |
76 | |
77 | |
78 ;;; Desktop Integration | |
79 | |
80 ;; desktop-buffer-mode-handlers appeared in Emacs 22. | |
81 (if (fboundp 'desktop-buffer-mode-handlers) | |
82 (add-to-list 'desktop-buffer-mode-handlers | |
83 '(mh-folder-mode . mh-restore-desktop-buffer))) | |
84 | |
85 (defun mh-restore-desktop-buffer (desktop-buffer-file-name | |
86 desktop-buffer-name | |
87 desktop-buffer-misc) | |
88 "Restore an MH folder buffer specified in a desktop file. | |
89 When desktop creates a buffer, DESKTOP-BUFFER-FILE-NAME holds the | |
90 file name to visit, DESKTOP-BUFFER-NAME holds the desired buffer | |
91 name, and DESKTOP-BUFFER-MISC holds a list of miscellaneous info | |
92 used by the `desktop-buffer-handlers' functions." | |
93 (mh-find-path) | |
94 (mh-visit-folder desktop-buffer-name) | |
95 (current-buffer)) | |
96 | |
97 | |
98 | |
99 ;;; Variables | |
100 | |
101 (defvar mh-folder-filename nil | |
102 "Full path of directory for this folder.") | |
103 | |
104 (defvar mh-partial-folder-mode-line-annotation "select" | |
105 "Annotation when displaying part of a folder. | |
106 The string is displayed after the folder's name. nil for no | |
107 annotation.") | |
108 | |
109 (defvar mh-last-destination nil | |
110 "Destination of last refile or write command.") | |
111 | |
112 (defvar mh-last-destination-folder nil | |
113 "Destination of last refile command.") | |
114 | |
115 (defvar mh-last-destination-write nil | |
116 "Destination of last write command.") | |
117 | |
118 (defvar mh-first-msg-num nil | |
119 "Number of first message in buffer.") | |
120 | |
121 (defvar mh-last-msg-num nil | |
122 "Number of last msg in buffer.") | |
123 | |
124 (defvar mh-msg-count nil | |
125 "Number of msgs in buffer.") | |
126 | |
127 | |
128 | |
129 ;;; Sequence Menu | |
130 | |
131 (easy-menu-define | |
132 mh-folder-sequence-menu mh-folder-mode-map "Menu for MH-E folder-sequence." | |
133 '("Sequence" | |
134 ["Add Message to Sequence..." mh-put-msg-in-seq (mh-get-msg-num nil)] | |
135 ["List Sequences for Message" mh-msg-is-in-seq (mh-get-msg-num nil)] | |
136 ["Delete Message from Sequence..." mh-delete-msg-from-seq | |
137 (mh-get-msg-num nil)] | |
138 ["List Sequences in Folder..." mh-list-sequences t] | |
139 ["Delete Sequence..." mh-delete-seq t] | |
140 ["Narrow to Sequence..." mh-narrow-to-seq t] | |
141 ["Widen from Sequence" mh-widen mh-folder-view-stack] | |
142 "--" | |
143 ["Narrow to Subject Sequence" mh-narrow-to-subject t] | |
144 ["Narrow to Tick Sequence" mh-narrow-to-tick | |
145 (and mh-tick-seq (mh-seq-msgs (mh-find-seq mh-tick-seq)))] | |
146 ["Delete Rest of Same Subject" mh-delete-subject t] | |
147 ["Toggle Tick Mark" mh-toggle-tick t] | |
148 "--" | |
149 ["Push State Out to MH" mh-update-sequences t])) | |
150 | |
151 ;;; Message Menu | |
152 | |
153 (easy-menu-define | |
154 mh-folder-message-menu mh-folder-mode-map "Menu for MH-E folder-message." | |
155 '("Message" | |
156 ["Show Message" mh-show (mh-get-msg-num nil)] | |
157 ["Show Message with Header" mh-header-display (mh-get-msg-num nil)] | |
82497
c490a6236b89
(mh-folder-message-menu, mh-folder-mode-map): Add
Jeffrey C Honig <jch@bsdi.com>
parents:
78479
diff
changeset
|
158 ["Show Message with Preferred Alternative" |
c490a6236b89
(mh-folder-message-menu, mh-folder-mode-map): Add
Jeffrey C Honig <jch@bsdi.com>
parents:
78479
diff
changeset
|
159 mh-show-preferred-alternative (mh-get-msg-num nil)] |
68465 | 160 ["Next Message" mh-next-undeleted-msg t] |
161 ["Previous Message" mh-previous-undeleted-msg t] | |
162 ["Go to First Message" mh-first-msg t] | |
163 ["Go to Last Message" mh-last-msg t] | |
164 ["Go to Message by Number..." mh-goto-msg t] | |
165 ["Modify Message" mh-modify t] | |
166 ["Delete Message" mh-delete-msg (mh-get-msg-num nil)] | |
167 ["Refile Message" mh-refile-msg (mh-get-msg-num nil)] | |
168 ["Undo Delete/Refile" mh-undo (mh-outstanding-commands-p)] | |
169 ["Execute Delete/Refile" mh-execute-commands | |
170 (mh-outstanding-commands-p)] | |
171 "--" | |
172 ["Compose a New Message" mh-send t] | |
173 ["Reply to Message..." mh-reply (mh-get-msg-num nil)] | |
174 ["Forward Message..." mh-forward (mh-get-msg-num nil)] | |
175 ["Redistribute Message..." mh-redistribute (mh-get-msg-num nil)] | |
176 ["Edit Message Again" mh-edit-again (mh-get-msg-num nil)] | |
177 ["Re-edit a Bounced Message" mh-extract-rejected-mail t] | |
178 "--" | |
179 ["Copy Message to Folder..." mh-copy-msg (mh-get-msg-num nil)] | |
180 ["Print Message" mh-print-msg (mh-get-msg-num nil)] | |
181 ["Write Message to File..." mh-write-msg-to-file | |
182 (mh-get-msg-num nil)] | |
183 ["Pipe Message to Command..." mh-pipe-msg (mh-get-msg-num nil)] | |
184 ["Unpack Uuencoded Message..." mh-store-msg (mh-get-msg-num nil)] | |
185 ["Burst Digest Message" mh-burst-digest (mh-get-msg-num nil)])) | |
186 | |
187 ;;; Folder Menu | |
188 | |
189 (easy-menu-define | |
190 mh-folder-folder-menu mh-folder-mode-map "Menu for MH-E folder." | |
191 '("Folder" | |
192 ["Incorporate New Mail" mh-inc-folder t] | |
193 ["Toggle Show/Folder" mh-toggle-showing t] | |
194 ["Execute Delete/Refile" mh-execute-commands | |
195 (mh-outstanding-commands-p)] | |
196 ["Rescan Folder" mh-rescan-folder t] | |
197 ["Thread Folder" mh-toggle-threads | |
198 (not (memq 'unthread mh-view-ops))] | |
199 ["Pack Folder" mh-pack-folder t] | |
200 ["Sort Folder" mh-sort-folder t] | |
201 "--" | |
202 ["List Folders" mh-list-folders t] | |
203 ["Visit a Folder..." mh-visit-folder t] | |
204 ["View New Messages" mh-index-new-messages t] | |
205 ["Search..." mh-search t] | |
206 "--" | |
207 ["Quit MH-E" mh-quit t])) | |
208 | |
209 | |
210 | |
211 ;;; MH-Folder Keys | |
212 | |
213 (suppress-keymap mh-folder-mode-map) | |
214 | |
215 ;; Use defalias to make sure the documented primary key bindings | |
216 ;; appear in menu lists. | |
217 (defalias 'mh-alt-show 'mh-show) | |
218 (defalias 'mh-alt-refile-msg 'mh-refile-msg) | |
219 (defalias 'mh-alt-send 'mh-send) | |
220 (defalias 'mh-alt-visit-folder 'mh-visit-folder) | |
221 | |
222 ;; Save the "b" binding for a future `back'. Maybe? | |
223 (gnus-define-keys mh-folder-mode-map | |
224 " " mh-page-msg | |
225 "!" mh-refile-or-write-again | |
226 "'" mh-toggle-tick | |
227 "," mh-header-display | |
228 "." mh-alt-show | |
82497
c490a6236b89
(mh-folder-message-menu, mh-folder-mode-map): Add
Jeffrey C Honig <jch@bsdi.com>
parents:
78479
diff
changeset
|
229 ":" mh-show-preferred-alternative |
68465 | 230 ";" mh-toggle-mh-decode-mime-flag |
231 ">" mh-write-msg-to-file | |
232 "?" mh-help | |
233 "E" mh-extract-rejected-mail | |
234 "M" mh-modify | |
235 "\177" mh-previous-page | |
236 "\C-d" mh-delete-msg-no-motion | |
237 "\t" mh-index-next-folder | |
238 [backtab] mh-index-previous-folder | |
239 "\M-\t" mh-index-previous-folder | |
240 "\e<" mh-first-msg | |
241 "\e>" mh-last-msg | |
242 "\ed" mh-redistribute | |
243 "\r" mh-show | |
244 "^" mh-alt-refile-msg | |
245 "c" mh-copy-msg | |
246 "d" mh-delete-msg | |
247 "e" mh-edit-again | |
248 "f" mh-forward | |
249 "g" mh-goto-msg | |
250 "i" mh-inc-folder | |
251 "k" mh-delete-subject-or-thread | |
252 "m" mh-alt-send | |
253 "n" mh-next-undeleted-msg | |
254 "\M-n" mh-next-unread-msg | |
255 "o" mh-refile-msg | |
256 "p" mh-previous-undeleted-msg | |
257 "\M-p" mh-previous-unread-msg | |
258 "q" mh-quit | |
259 "r" mh-reply | |
260 "s" mh-send | |
261 "t" mh-toggle-showing | |
262 "u" mh-undo | |
263 "v" mh-index-visit-folder | |
264 "x" mh-execute-commands | |
265 "|" mh-pipe-msg) | |
266 | |
267 (gnus-define-keys (mh-folder-map "F" mh-folder-mode-map) | |
268 "?" mh-prefix-help | |
269 "'" mh-index-ticked-messages | |
270 "S" mh-sort-folder | |
271 "c" mh-catchup | |
272 "f" mh-alt-visit-folder | |
273 "k" mh-kill-folder | |
274 "l" mh-list-folders | |
275 "n" mh-index-new-messages | |
276 "o" mh-alt-visit-folder | |
277 "p" mh-pack-folder | |
278 "q" mh-index-sequenced-messages | |
279 "r" mh-rescan-folder | |
280 "s" mh-search | |
281 "u" mh-undo-folder | |
282 "v" mh-visit-folder) | |
283 | |
284 (define-key mh-folder-mode-map "I" mh-inc-spool-map) | |
285 | |
286 (gnus-define-keys (mh-junk-map "J" mh-folder-mode-map) | |
287 "?" mh-prefix-help | |
288 "b" mh-junk-blacklist | |
289 "w" mh-junk-whitelist) | |
290 | |
291 (gnus-define-keys (mh-ps-print-map "P" mh-folder-mode-map) | |
292 "?" mh-prefix-help | |
293 "C" mh-ps-print-toggle-color | |
294 "F" mh-ps-print-toggle-faces | |
295 "f" mh-ps-print-msg-file | |
296 "l" mh-print-msg | |
297 "p" mh-ps-print-msg) | |
298 | |
299 (gnus-define-keys (mh-sequence-map "S" mh-folder-mode-map) | |
300 "'" mh-narrow-to-tick | |
301 "?" mh-prefix-help | |
302 "d" mh-delete-msg-from-seq | |
303 "k" mh-delete-seq | |
304 "l" mh-list-sequences | |
305 "n" mh-narrow-to-seq | |
306 "p" mh-put-msg-in-seq | |
307 "s" mh-msg-is-in-seq | |
308 "w" mh-widen) | |
309 | |
310 (gnus-define-keys (mh-thread-map "T" mh-folder-mode-map) | |
311 "?" mh-prefix-help | |
312 "u" mh-thread-ancestor | |
313 "p" mh-thread-previous-sibling | |
314 "n" mh-thread-next-sibling | |
315 "t" mh-toggle-threads | |
316 "d" mh-thread-delete | |
317 "o" mh-thread-refile) | |
318 | |
319 (gnus-define-keys (mh-limit-map "/" mh-folder-mode-map) | |
320 "'" mh-narrow-to-tick | |
321 "?" mh-prefix-help | |
322 "c" mh-narrow-to-cc | |
323 "g" mh-narrow-to-range | |
324 "m" mh-narrow-to-from | |
325 "s" mh-narrow-to-subject | |
326 "t" mh-narrow-to-to | |
327 "w" mh-widen) | |
328 | |
329 (gnus-define-keys (mh-extract-map "X" mh-folder-mode-map) | |
330 "?" mh-prefix-help | |
331 "s" mh-store-msg ;shar | |
332 "u" mh-store-msg) ;uuencode | |
333 | |
334 (gnus-define-keys (mh-digest-map "D" mh-folder-mode-map) | |
335 " " mh-page-digest | |
336 "?" mh-prefix-help | |
337 "\177" mh-page-digest-backwards | |
338 "b" mh-burst-digest) | |
339 | |
340 (gnus-define-keys (mh-mime-map "K" mh-folder-mode-map) | |
341 "?" mh-prefix-help | |
342 "a" mh-mime-save-parts | |
343 "e" mh-display-with-external-viewer | |
344 "i" mh-folder-inline-mime-part | |
345 "o" mh-folder-save-mime-part | |
346 "t" mh-toggle-mime-buttons | |
347 "v" mh-folder-toggle-mime-part | |
348 "\t" mh-next-button | |
349 [backtab] mh-prev-button | |
350 "\M-\t" mh-prev-button) | |
351 | |
352 (cond | |
86202
794e428cd497
* eshell/esh-util.el (eshell-under-xemacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82497
diff
changeset
|
353 ((featurep 'xemacs) |
68465 | 354 (define-key mh-folder-mode-map [button2] 'mh-show-mouse)) |
355 (t | |
356 (define-key mh-folder-mode-map [mouse-2] 'mh-show-mouse))) | |
357 | |
358 ;; "C-c /" prefix is used in mh-folder-mode by pgp.el and mailcrypt | |
359 | |
360 | |
361 | |
362 ;;; MH-Folder Help Messages | |
363 | |
364 ;; If you add a new prefix, add appropriate text to the nil key. | |
365 | |
366 ;; In general, messages are grouped logically. Taking the main commands for | |
367 ;; example, the first line is "ways to view messages," the second line is | |
368 ;; "things you can do with messages", and the third is "composing" messages. | |
369 | |
370 ;; When adding a new prefix, ensure that the help message contains "what" the | |
371 ;; prefix is for. For example, if the word "folder" were not present in the | |
372 ;; "F" entry, it would not be clear what these commands operated upon. | |
373 (defvar mh-folder-mode-help-messages | |
374 '((nil "[i]nc, [.]show, [,]show all, [n]ext, [p]revious,\n" | |
375 "[d]elete, [o]refile, e[x]ecute,\n" | |
376 "[s]end, [r]eply,\n" | |
377 "[;]toggle MIME decoding.\n" | |
378 "Prefix characters:\n [F]older, [S]equence, [J]unk, MIME [K]eys," | |
379 "\n [T]hread, [/]limit, e[X]tract, [D]igest, [I]nc spools.") | |
380 | |
381 (?F "[l]ist; [v]isit folder;\n" | |
382 "[n]ew messages; [']ticked messages; [s]earch;\n" | |
383 "[p]ack; [S]ort; [r]escan; [k]ill") | |
384 (?P "[p]rint message to [f]ile; old-style [l]pr printing;\n" | |
385 "Toggle printing of [C]olors, [F]aces") | |
386 (?S "[p]ut message in sequence, [n]arrow, [']narrow to ticked, [w]iden,\n" | |
387 "[s]equences, [l]ist,\n" | |
388 "[d]elete message from sequence, [k]ill sequence") | |
389 (?T "[t]oggle, [d]elete, [o]refile thread") | |
390 (?/ "Limit to [c]c, ran[g]e, fro[m], [s]ubject, [t]o; [w]iden") | |
391 (?X "un[s]har, [u]udecode message") | |
392 (?D "[b]urst digest") | |
101493
56b54a17e930
(mh-folder-mode-help-messages): Add e and t to K's help.
Bill Wohler <wohler@newt.com>
parents:
100908
diff
changeset
|
393 (?K "[v]iew, [i]nline, with [e]xternal viewer; \n" |
56b54a17e930
(mh-folder-mode-help-messages): Add e and t to K's help.
Bill Wohler <wohler@newt.com>
parents:
100908
diff
changeset
|
394 "[o]utput/save MIME part; save [a]ll parts; \n" |
56b54a17e930
(mh-folder-mode-help-messages): Add e and t to K's help.
Bill Wohler <wohler@newt.com>
parents:
100908
diff
changeset
|
395 "[t]oggle buttons; [TAB] next; [SHIFT-TAB] previous") |
68465 | 396 (?J "[b]lacklist, [w]hitelist message")) |
397 "Key binding cheat sheet. | |
398 See `mh-set-help'.") | |
399 | |
400 | |
401 | |
402 ;;; MH-Folder Font Lock | |
403 | |
404 (defvar mh-folder-font-lock-keywords | |
405 (list | |
406 ;; Folders when displaying index buffer | |
407 (list "^\\+.*" | |
408 '(0 'mh-search-folder)) | |
409 ;; Marked for deletion | |
410 (list (concat mh-scan-deleted-msg-regexp ".*") | |
411 '(0 'mh-folder-deleted)) | |
412 ;; Marked for refile | |
413 (list (concat mh-scan-refiled-msg-regexp ".*") | |
414 '(0 'mh-folder-refiled)) | |
415 ;; After subject | |
416 (list mh-scan-body-regexp | |
417 '(1 'mh-folder-body nil t)) | |
418 ;; Subject | |
419 '(mh-folder-font-lock-subject | |
420 (1 'mh-folder-followup append t) | |
421 (2 'mh-folder-subject append t)) | |
422 ;; Current message number | |
423 (list mh-scan-cur-msg-number-regexp | |
424 '(1 'mh-folder-cur-msg-number)) | |
425 ;; Message number | |
426 (list mh-scan-good-msg-regexp | |
427 '(1 'mh-folder-msg-number)) | |
428 ;; Date | |
429 (list mh-scan-date-regexp | |
430 '(1 'mh-folder-date)) | |
431 ;; Messages from me (To:) | |
432 (list mh-scan-rcpt-regexp | |
433 '(1 'mh-folder-to) | |
434 '(2 'mh-folder-address)) | |
435 ;; Messages to me | |
436 (list mh-scan-sent-to-me-sender-regexp | |
437 '(1 'mh-folder-sent-to-me-hint) | |
438 '(2 'mh-folder-sent-to-me-sender))) | |
439 "Keywords (regular expressions) used to fontify the MH-Folder buffer.") | |
440 | |
441 (defun mh-folder-font-lock-subject (limit) | |
442 "Return MH-E scan subject strings to font-lock between point and LIMIT." | |
443 (if (not (re-search-forward mh-scan-subject-regexp limit t)) | |
444 nil | |
445 (if (match-beginning 1) | |
446 (set-match-data (list (match-beginning 1) (match-end 3) | |
447 (match-beginning 1) (match-end 3) nil nil)) | |
448 (set-match-data (list (match-beginning 3) (match-end 3) | |
449 nil nil (match-beginning 3) (match-end 3)))) | |
450 t)) | |
451 | |
452 ;; Fontify unseen messages in bold. | |
453 | |
454 (defmacro mh-generate-sequence-font-lock (seq prefix face) | |
455 "Generate the appropriate code to fontify messages in SEQ. | |
456 PREFIX is used to generate unique names for the variables and | |
457 functions defined by the macro. So a different prefix should be | |
458 provided for every invocation. | |
459 FACE is the font-lock face used to display the matching scan lines." | |
460 (let ((cache (intern (format "mh-folder-%s-seq-cache" prefix))) | |
461 (func (intern (format "mh-folder-font-lock-%s" prefix)))) | |
462 `(progn | |
463 (defvar ,cache nil | |
464 "Internal cache variable used for font-lock in MH-E. | |
465 Should only be non-nil through font-lock stepping, and nil once | |
466 font-lock is done highlighting.") | |
467 (make-variable-buffer-local ',cache) | |
468 | |
469 (defun ,func (limit) | |
470 "Return unseen message lines to font-lock between point and LIMIT." | |
471 (if (not ,cache) (setq ,cache (mh-seq-msgs (mh-find-seq ,seq)))) | |
472 (let ((cur-msg (mh-get-msg-num nil))) | |
473 (cond ((not ,cache) | |
474 nil) | |
475 ((>= (point) limit) ;Presumably at end of buffer | |
476 (setq ,cache nil) | |
477 nil) | |
478 ((member cur-msg ,cache) | |
479 (let ((bpoint (progn (beginning-of-line)(point))) | |
480 (epoint (progn (forward-line 1)(point)))) | |
481 (if (<= limit (point)) (setq ,cache nil)) | |
482 (set-match-data (list bpoint epoint bpoint epoint)) | |
483 t)) | |
484 (t | |
485 ;; move forward one line at a time, checking each message | |
486 (while (and (= 0 (forward-line 1)) | |
487 (> limit (point)) | |
488 (not (member (mh-get-msg-num nil) ,cache)))) | |
489 ;; Examine how we must have exited the loop... | |
490 (let ((cur-msg (mh-get-msg-num nil))) | |
491 (cond ((or (<= limit (point)) | |
492 (not (member cur-msg ,cache))) | |
493 (setq ,cache nil) | |
494 nil) | |
495 ((member cur-msg ,cache) | |
496 (let ((bpoint (progn (beginning-of-line) (point))) | |
497 (epoint (progn (forward-line 1) (point)))) | |
498 (if (<= limit (point)) (setq ,cache nil)) | |
499 (set-match-data | |
500 (list bpoint epoint bpoint epoint)) | |
501 t)))))))) | |
502 | |
503 (setq mh-folder-font-lock-keywords | |
504 (append mh-folder-font-lock-keywords | |
505 (list (list ',func (list 1 '',face 'prepend t)))))))) | |
506 | |
507 (mh-generate-sequence-font-lock mh-unseen-seq unseen bold) | |
508 (mh-generate-sequence-font-lock mh-tick-seq tick mh-folder-tick) | |
509 | |
510 | |
511 | |
512 ;;; MH-Folder Mode | |
513 | |
514 (defmacro mh-remove-xemacs-horizontal-scrollbar () | |
515 "Get rid of the horizontal scrollbar that XEmacs insists on putting in." | |
86202
794e428cd497
* eshell/esh-util.el (eshell-under-xemacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82497
diff
changeset
|
516 (when (featurep 'xemacs) |
68465 | 517 `(if (and (featurep 'scrollbar) |
518 (fboundp 'set-specifier)) | |
519 (set-specifier horizontal-scrollbar-visible-p nil | |
520 (cons (current-buffer) nil))))) | |
521 | |
522 ;; Register mh-folder-mode as supporting which-function-mode... | |
68529
7daec5f4a289
* mh-alias.el (mh-alias-gecos-name): Use mh-replace-regexp-in-string
Bill Wohler <wohler@newt.com>
parents:
68520
diff
changeset
|
523 (mh-require 'which-func nil t) |
68465 | 524 (when (boundp 'which-func-modes) |
525 (add-to-list 'which-func-modes 'mh-folder-mode)) | |
526 | |
527 ;; Shush compiler. | |
70028
d81780942bb8
* mh-acros.el (struct, x, y): No need to wrap defvar with
Bill Wohler <wohler@newt.com>
parents:
69712
diff
changeset
|
528 (defvar desktop-save-buffer) |
d81780942bb8
* mh-acros.el (struct, x, y): No need to wrap defvar with
Bill Wohler <wohler@newt.com>
parents:
69712
diff
changeset
|
529 (defvar font-lock-auto-fontify) |
d81780942bb8
* mh-acros.el (struct, x, y): No need to wrap defvar with
Bill Wohler <wohler@newt.com>
parents:
69712
diff
changeset
|
530 (defvar font-lock-defaults) ; XEmacs |
68465 | 531 |
532 ;; Ensure new buffers won't get this mode if default-major-mode is nil. | |
533 (put 'mh-folder-mode 'mode-class 'special) | |
534 | |
535 ;; Autoload cookie needed by desktop.el | |
536 ;;;###autoload | |
537 (define-derived-mode mh-folder-mode fundamental-mode "MH-Folder" | |
538 "Major MH-E mode for \"editing\" an MH folder scan listing.\\<mh-folder-mode-map> | |
539 | |
540 You can show the message the cursor is pointing to, and step through | |
541 the messages. Messages can be marked for deletion or refiling into | |
542 another folder; these commands are executed all at once with a | |
543 separate command. | |
544 | |
545 Options that control this mode can be changed with | |
546 \\[customize-group]; specify the \"mh\" group. In particular, please | |
547 see the `mh-scan-format-file' option if you wish to modify scan's | |
548 format. | |
549 | |
550 When a folder is visited, the hook `mh-folder-mode-hook' is run. | |
551 | |
552 Ranges | |
553 ====== | |
554 Many commands that operate on individual messages, such as | |
555 `mh-forward' or `mh-refile-msg' take a RANGE argument. This argument | |
556 can be used in several ways. | |
557 | |
558 If you provide the prefix argument (\\[universal-argument]) to | |
559 these commands, then you will be prompted for the message range. | |
560 This can be any valid MH range which can include messages, | |
561 sequences, and the abbreviations (described in the mh(1) man | |
562 page): | |
563 | |
564 <num1>-<num2> | |
565 Indicates all messages in the range <num1> to <num2>, inclusive. | |
566 The range must be nonempty. | |
567 | |
568 <num>:N | |
569 <num>:+N | |
570 <num>:-N | |
571 Up to N messages beginning with (or ending with) message num. Num | |
572 may be any of the predefined symbols: first, prev, cur, next or | |
573 last. | |
574 | |
575 first:N | |
576 prev:N | |
577 next:N | |
578 last:N | |
579 The first, previous, next or last messages, if they exist. | |
580 | |
581 all | |
582 All of the messages. | |
583 | |
584 For example, a range that shows all of these things is `1 2 3 | |
585 5-10 last:5 unseen'. | |
586 | |
587 If the option `transient-mark-mode' is set to t and you set a | |
588 region in the MH-Folder buffer, then the MH-E command will | |
589 perform the operation on all messages in that region. | |
590 | |
591 \\{mh-folder-mode-map}" | |
592 (mh-do-in-gnu-emacs | |
70145
00cb3fe5fed5
* mh-tool-bar.el (image-load-path): Define to shush compiler.
Bill Wohler <wohler@newt.com>
parents:
70028
diff
changeset
|
593 (unless mh-folder-tool-bar-map |
00cb3fe5fed5
* mh-tool-bar.el (image-load-path): Define to shush compiler.
Bill Wohler <wohler@newt.com>
parents:
70028
diff
changeset
|
594 (mh-tool-bar-folder-buttons-init)) |
95843 | 595 (if (boundp 'tool-bar-map) |
596 (set (make-local-variable 'tool-bar-map) mh-folder-tool-bar-map))) | |
69245
f3bbf5f32462
* mh-folder.el (mh-tool-bar-init): Autoload.
Bill Wohler <wohler@newt.com>
parents:
68529
diff
changeset
|
597 (mh-do-in-xemacs |
f3bbf5f32462
* mh-folder.el (mh-tool-bar-init): Autoload.
Bill Wohler <wohler@newt.com>
parents:
68529
diff
changeset
|
598 (mh-tool-bar-init :folder)) |
68465 | 599 (make-local-variable 'font-lock-defaults) |
600 (setq font-lock-defaults '(mh-folder-font-lock-keywords t)) | |
601 (make-local-variable 'desktop-save-buffer) | |
602 (setq desktop-save-buffer t) | |
603 (mh-make-local-vars | |
604 'mh-colors-available-flag (mh-colors-available-p) | |
605 ; Do we have colors available | |
606 'mh-current-folder (buffer-name) ; Name of folder, a string | |
607 'mh-show-buffer (format "show-%s" (buffer-name)) ; Buffer that displays msgs | |
608 'mh-folder-filename ; e.g. "/usr/foobar/Mail/inbox/" | |
609 (file-name-as-directory (mh-expand-file-name (buffer-name))) | |
610 'mh-display-buttons-for-inline-parts-flag | |
611 mh-display-buttons-for-inline-parts-flag ; Allow for display of buttons to | |
612 ; be toggled. | |
613 'mh-arrow-marker (make-marker) ; Marker where arrow is displayed | |
614 'overlay-arrow-position nil ; Allow for simultaneous display in | |
615 'overlay-arrow-string ">" ; different MH-E buffers. | |
616 'mh-showing-mode nil ; Show message also? | |
617 'mh-delete-list nil ; List of msgs nums to delete | |
618 'mh-refile-list nil ; List of folder names in mh-seq-list | |
619 'mh-seq-list nil ; Alist of (seq . msgs) nums | |
620 'mh-seen-list nil ; List of displayed messages | |
621 'mh-next-direction 'forward ; Direction to move to next message | |
622 'mh-view-ops () ; Stack that keeps track of the order | |
623 ; in which narrowing/threading has been | |
624 ; carried out. | |
625 'mh-folder-view-stack () ; Stack of previous views of the | |
626 ; folder. | |
627 'mh-index-data nil ; If the folder was created by a call | |
628 ; to mh-search, this contains info | |
629 ; about the search results. | |
630 'mh-index-previous-search nil ; folder, indexer, search-regexp | |
631 'mh-index-msg-checksum-map nil ; msg -> checksum map | |
632 'mh-index-checksum-origin-map nil ; checksum -> ( orig-folder, orig-msg ) | |
633 'mh-index-sequence-search-flag nil ; folder resulted from sequence search | |
634 'mh-first-msg-num nil ; Number of first msg in buffer | |
635 'mh-last-msg-num nil ; Number of last msg in buffer | |
636 'mh-msg-count nil ; Number of msgs in buffer | |
637 'mh-mode-line-annotation nil ; Indicates message range | |
638 'mh-sequence-notation-history (make-hash-table) | |
639 ; Remember what is overwritten by | |
640 ; mh-note-seq. | |
641 'imenu-create-index-function 'mh-index-create-imenu-index | |
642 ; Setup imenu support | |
643 'mh-previous-window-config nil) ; Previous window configuration | |
644 (mh-remove-xemacs-horizontal-scrollbar) | |
645 (setq truncate-lines t) | |
646 (auto-save-mode -1) | |
647 (setq buffer-offer-save t) | |
68520
6a7173abcf59
* mh-acros.el (mh-defun-compat, mh-defmacro-compat): Add name argument
Bill Wohler <wohler@newt.com>
parents:
68474
diff
changeset
|
648 (mh-make-local-hook (mh-write-file-functions)) |
6a7173abcf59
* mh-acros.el (mh-defun-compat, mh-defmacro-compat): Add name argument
Bill Wohler <wohler@newt.com>
parents:
68474
diff
changeset
|
649 (add-hook (mh-write-file-functions) 'mh-execute-commands nil t) |
68465 | 650 (make-local-variable 'revert-buffer-function) |
651 (make-local-variable 'hl-line-mode) ; avoid pollution | |
652 (mh-funcall-if-exists hl-line-mode 1) | |
653 (setq revert-buffer-function 'mh-undo-folder) | |
68474
07c20c57ee3d
(mh-folder-mode): Use add-to-list to modify minor-mode-alias.
Bill Wohler <wohler@newt.com>
parents:
68470
diff
changeset
|
654 (add-to-list 'minor-mode-alist '(mh-showing-mode " Show")) |
68465 | 655 (easy-menu-add mh-folder-sequence-menu) |
656 (easy-menu-add mh-folder-message-menu) | |
657 (easy-menu-add mh-folder-folder-menu) | |
658 (mh-inc-spool-make) | |
659 (mh-set-help mh-folder-mode-help-messages) | |
86202
794e428cd497
* eshell/esh-util.el (eshell-under-xemacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82497
diff
changeset
|
660 (if (and (featurep 'xemacs) |
68465 | 661 font-lock-auto-fontify) |
662 (turn-on-font-lock))) ; Force font-lock in XEmacs. | |
663 | |
664 | |
665 | |
666 ;;; MH-Folder Commands | |
667 | |
668 ;; Alphabetical. | |
669 ;; See also mh-comp.el, mh-junk.el, mh-mime.el, mh-print.el, | |
670 ;; mh-search.el, and mh-seq.el. | |
671 | |
672 ;;;###mh-autoload | |
673 (defun mh-delete-msg (range) | |
674 "Delete RANGE\\<mh-folder-mode-map>. | |
675 | |
676 To mark a message for deletion, use this command. A \"D\" is | |
677 placed by the message in the scan window, and the next undeleted | |
678 message is displayed. If the previous command had been | |
679 \\[mh-previous-undeleted-msg], then the next message displayed is | |
680 the first undeleted message previous to the message just deleted. | |
681 Use \\[mh-next-undeleted-msg] to force subsequent | |
682 \\[mh-delete-msg] commands to move forward to the next undeleted | |
683 message after deleting the message under the cursor. | |
684 | |
685 The hook `mh-delete-msg-hook' is called after you mark a message | |
686 for deletion. For example, a past maintainer of MH-E used this | |
687 once when he kept statistics on his mail usage. | |
688 | |
689 Check the documentation of `mh-interactive-range' to see how | |
690 RANGE is read in interactive use." | |
691 (interactive (list (mh-interactive-range "Delete"))) | |
692 (mh-delete-msg-no-motion range) | |
693 (if (looking-at mh-scan-deleted-msg-regexp) | |
694 (mh-next-msg))) | |
695 | |
696 ;;;###mh-autoload | |
697 (defun mh-delete-msg-no-motion (range) | |
698 "Delete RANGE, don't move to next message. | |
699 | |
700 This command marks the RANGE for deletion but leaves the cursor | |
701 at the current message in case you wish to perform other | |
702 operations on the message. | |
703 | |
704 Check the documentation of `mh-interactive-range' to see how | |
705 RANGE is read in interactive use." | |
706 (interactive (list (mh-interactive-range "Delete"))) | |
707 (mh-iterate-on-range () range | |
708 (mh-delete-a-msg nil))) | |
709 | |
710 ;;;###mh-autoload | |
711 (defun mh-execute-commands () | |
712 "Process outstanding delete and refile requests\\<mh-folder-mode-map>. | |
713 | |
714 If you've marked messages to be deleted or refiled and you want | |
715 to go ahead and delete or refile the messages, use this command. | |
716 Many MH-E commands that may affect the numbering of the | |
717 messages (such as \\[mh-rescan-folder] or \\[mh-pack-folder]) | |
718 will ask if you want to process refiles or deletes first and then | |
719 either run this command for you or undo the pending refiles and | |
69712
3981e84d0b79
* mh-folder.el (mh-execute-commands, mh-rescan-folder):
Bill Wohler <wohler@newt.com>
parents:
69492
diff
changeset
|
720 deletes. |
68465 | 721 |
722 This function runs `mh-before-commands-processed-hook' before the | |
723 commands are processed and `mh-after-commands-processed-hook' | |
724 after the commands are processed." | |
725 (interactive) | |
726 (if mh-folder-view-stack (mh-widen t)) | |
727 (mh-process-commands mh-current-folder) | |
728 (mh-set-scan-mode) | |
729 (mh-goto-cur-msg) ; after mh-set-scan-mode for efficiency | |
730 (mh-make-folder-mode-line) | |
731 t) ; return t for write-file-functions | |
732 | |
733 ;;;###mh-autoload | |
734 (defun mh-first-msg () | |
735 "Display first message." | |
736 (interactive) | |
737 (goto-char (point-min)) | |
738 (while (and (not (eobp)) (not (looking-at mh-scan-valid-regexp))) | |
739 (forward-line 1))) | |
740 | |
741 ;;;###mh-autoload | |
742 (defun mh-goto-msg (number &optional no-error-if-no-message dont-show) | |
743 "Go to a message\\<mh-folder-mode-map>. | |
744 | |
745 You can enter the message NUMBER either before or after typing | |
746 \\[mh-goto-msg]. In the latter case, Emacs prompts you. | |
747 | |
748 In a program, optional non-nil second argument NO-ERROR-IF-NO-MESSAGE | |
749 means return nil instead of signaling an error if message does not | |
750 exist\; in this case, the cursor is positioned near where the message | |
751 would have been. Non-nil third argument DONT-SHOW means not to show | |
752 the message." | |
753 (interactive "NGo to message: ") | |
754 (setq number (prefix-numeric-value number)) | |
755 (let ((point (point)) | |
756 (return-value t)) | |
757 (goto-char (point-min)) | |
758 (unless (re-search-forward (format (mh-scan-msg-search-regexp) number) | |
759 nil t) | |
760 (goto-char point) | |
761 (unless no-error-if-no-message | |
762 (error "No message %d" number)) | |
763 (setq return-value nil)) | |
764 (beginning-of-line) | |
765 (or dont-show (not return-value) (mh-maybe-show number)) | |
766 return-value)) | |
767 | |
768 ;;;###mh-autoload | |
769 (defun mh-inc-folder (&optional file folder) | |
770 "Incorporate new mail into a folder. | |
771 | |
772 You can incorporate mail from any file into the current folder by | |
773 specifying a prefix argument; you'll be prompted for the name of | |
774 the FILE to use as well as the destination FOLDER | |
775 | |
776 The hook `mh-inc-folder-hook' is run after incorporating new | |
777 mail. | |
778 | |
779 Do not call this function from outside MH-E; use \\[mh-rmail] | |
780 instead." | |
781 (interactive (list (if current-prefix-arg | |
782 (expand-file-name | |
783 (read-file-name "inc mail from file: " | |
784 mh-user-path))) | |
785 (if current-prefix-arg | |
786 (mh-prompt-for-folder "inc mail into" mh-inbox t)))) | |
787 (if (not folder) | |
788 (setq folder mh-inbox)) | |
789 (let ((threading-needed-flag nil)) | |
790 (let ((config (current-window-configuration))) | |
791 (when (and mh-show-buffer (get-buffer mh-show-buffer)) | |
792 (delete-windows-on mh-show-buffer)) | |
793 (cond ((not (get-buffer folder)) | |
794 (mh-make-folder folder) | |
795 (setq threading-needed-flag mh-show-threads-flag) | |
796 (setq mh-previous-window-config config)) | |
797 ((not (eq (current-buffer) (get-buffer folder))) | |
798 (switch-to-buffer folder) | |
799 (setq mh-previous-window-config config)))) | |
800 (mh-get-new-mail file) | |
801 (when (and threading-needed-flag | |
802 (save-excursion | |
803 (goto-char (point-min)) | |
804 (or (null mh-large-folder) | |
805 (not (equal (forward-line (1+ mh-large-folder)) 0)) | |
806 (and (message "Not threading since the number of messages exceeds `mh-large-folder'") | |
807 nil)))) | |
808 (mh-toggle-threads)) | |
809 (beginning-of-line) | |
810 (if (and mh-showing-mode (looking-at mh-scan-valid-regexp)) (mh-show)) | |
811 (run-hooks 'mh-inc-folder-hook))) | |
812 | |
813 ;;;###mh-autoload | |
814 (defun mh-last-msg () | |
815 "Display last message." | |
816 (interactive) | |
817 (goto-char (point-max)) | |
818 (while (and (not (bobp)) (not (looking-at mh-scan-valid-regexp))) | |
819 (forward-line -1)) | |
820 (mh-recenter nil)) | |
821 | |
822 ;;;###mh-autoload | |
823 (defun mh-modify (&optional message) | |
824 "Edit message. | |
825 | |
826 There are times when you need to edit a message. For example, you | |
827 may need to fix a broken Content-Type header field. You can do | |
828 this with this command. It displays the raw message in an | |
829 editable buffer. When you are done editing, save and kill the | |
830 buffer as you would any other. | |
831 | |
832 From a program, edit MESSAGE; nil means edit current message." | |
833 (interactive) | |
834 (let* ((message (or message (mh-get-msg-num t))) | |
835 (msg-filename (mh-msg-filename message)) | |
836 edit-buffer) | |
837 (when (not (file-exists-p msg-filename)) | |
838 (error "Message %d does not exist" message)) | |
839 | |
840 ;; Invalidate the show buffer if it is showing the same message that is | |
841 ;; to be edited. | |
842 (when (and (buffer-live-p (get-buffer mh-show-buffer)) | |
843 (equal (save-excursion (set-buffer mh-show-buffer) | |
844 buffer-file-name) | |
845 msg-filename)) | |
846 (mh-invalidate-show-buffer)) | |
847 | |
848 ;; Edit message | |
849 (find-file msg-filename) | |
850 (setq edit-buffer (current-buffer)) | |
851 | |
852 ;; Set buffer properties | |
853 (mh-letter-mode) | |
854 (use-local-map text-mode-map) | |
855 | |
856 ;; Just show the edit buffer... | |
857 (delete-other-windows) | |
858 (switch-to-buffer edit-buffer))) | |
859 | |
860 ;;;###mh-autoload | |
861 (defun mh-next-button (&optional backward-flag) | |
862 "Go to the next button. | |
863 | |
864 If the end of the buffer is reached then the search wraps over to | |
865 the start of the buffer. | |
866 | |
867 If an optional prefix argument BACKWARD-FLAG is given, the cursor | |
868 will move to the previous button." | |
869 (interactive (list current-prefix-arg)) | |
870 (unless mh-showing-mode | |
871 (mh-show)) | |
872 (mh-in-show-buffer (mh-show-buffer) | |
873 (mh-goto-next-button backward-flag))) | |
874 | |
875 ;;;###mh-autoload | |
876 (defun mh-next-undeleted-msg (&optional count wait-after-complaining-flag) | |
877 "Display next message. | |
878 | |
879 This command can be given a prefix argument COUNT to specify how | |
880 many unread messages to skip. | |
881 | |
882 In a program, pause for a second after printing message if we are | |
883 at the last undeleted message and optional argument | |
884 WAIT-AFTER-COMPLAINING-FLAG is non-nil." | |
885 (interactive "p") | |
886 (setq mh-next-direction 'forward) | |
887 (forward-line 1) | |
888 (cond ((re-search-forward mh-scan-good-msg-regexp nil t count) | |
889 (beginning-of-line) | |
890 (mh-maybe-show)) | |
891 (t (forward-line -1) | |
892 (message "No more undeleted messages") | |
893 (if wait-after-complaining-flag (sit-for 1))))) | |
894 | |
895 ;;;###mh-autoload | |
896 (defun mh-next-unread-msg (&optional count) | |
897 "Display next unread message. | |
898 | |
899 This command can be given a prefix argument COUNT to specify how | |
900 many unread messages to skip." | |
901 (interactive "p") | |
902 (unless (> count 0) | |
903 (error "The function `mh-next-unread-msg' expects positive argument")) | |
904 (setq count (1- count)) | |
905 (let ((unread-sequence (reverse (cdr (assoc mh-unseen-seq mh-seq-list)))) | |
906 (cur-msg (mh-get-msg-num nil))) | |
907 (cond ((and (not cur-msg) (not (bobp)) | |
908 ;; If we are at the end of the buffer back up one line and go | |
909 ;; to unread message after that. | |
910 (progn | |
911 (forward-line -1) | |
912 (setq cur-msg (mh-get-msg-num nil))) | |
913 nil)) | |
914 ((or (null unread-sequence) (not cur-msg)) | |
915 ;; No unread message or there aren't any messages in buffer... | |
916 (message "No more unread messages")) | |
917 ((progn | |
918 ;; Skip messages | |
919 (while (and unread-sequence (>= cur-msg (car unread-sequence))) | |
920 (setq unread-sequence (cdr unread-sequence))) | |
921 (while (> count 0) | |
922 (setq unread-sequence (cdr unread-sequence)) | |
923 (setq count (1- count))) | |
924 (not (car unread-sequence))) | |
925 (message "No more unread messages")) | |
926 (t (loop for msg in unread-sequence | |
927 when (mh-goto-msg msg t) return nil | |
928 finally (message "No more unread messages")))))) | |
929 | |
930 ;;;###mh-autoload | |
931 (defun mh-page-msg (&optional lines) | |
932 "Display next page in message. | |
933 | |
934 You can give this command a prefix argument that specifies the | |
935 number of LINES to scroll. This command will also show the next | |
936 undeleted message if it is used at the bottom of a message." | |
937 (interactive "P") | |
938 (if mh-showing-mode | |
939 (if mh-page-to-next-msg-flag | |
940 (if (equal mh-next-direction 'backward) | |
941 (mh-previous-undeleted-msg) | |
942 (mh-next-undeleted-msg)) | |
943 (if (mh-in-show-buffer (mh-show-buffer) | |
944 (pos-visible-in-window-p (point-max))) | |
945 (progn | |
946 (message | |
947 "End of message (Type %s to read %s undeleted message)" | |
948 (single-key-description last-input-event) | |
949 (if (equal mh-next-direction 'backward) | |
950 "previous" | |
951 "next")) | |
952 (setq mh-page-to-next-msg-flag t)) | |
953 (scroll-other-window lines))) | |
954 (mh-show))) | |
955 | |
956 ;;;###mh-autoload | |
957 (defun mh-prev-button () | |
958 "Go to the previous button. | |
959 | |
960 If the beginning of the buffer is reached then the search wraps | |
961 over to the end of the buffer." | |
962 (interactive) | |
963 (mh-next-button t)) | |
964 | |
965 ;;;###mh-autoload | |
966 (defun mh-previous-page (&optional lines) | |
967 "Display next page in message. | |
968 | |
969 You can give this command a prefix argument that specifies the | |
970 number of LINES to scroll." | |
971 (interactive "P") | |
972 (mh-in-show-buffer (mh-show-buffer) | |
973 (scroll-down lines))) | |
974 | |
975 ;;;###mh-autoload | |
976 (defun mh-previous-undeleted-msg (&optional count wait-after-complaining-flag) | |
977 "Display previous message. | |
978 | |
979 This command can be given a prefix argument COUNT to specify how | |
980 many unread messages to skip. | |
981 | |
982 In a program, pause for a second after printing message if we are | |
983 at the last undeleted message and optional argument | |
984 WAIT-AFTER-COMPLAINING-FLAG is non-nil." | |
985 (interactive "p") | |
986 (setq mh-next-direction 'backward) | |
987 (beginning-of-line) | |
988 (cond ((re-search-backward mh-scan-good-msg-regexp nil t count) | |
989 (mh-maybe-show)) | |
990 (t (message "No previous undeleted message") | |
991 (if wait-after-complaining-flag (sit-for 1))))) | |
992 | |
993 ;;;###mh-autoload | |
994 (defun mh-previous-unread-msg (&optional count) | |
995 "Display previous unread message. | |
996 | |
997 This command can be given a prefix argument COUNT to specify how | |
998 many unread messages to skip." | |
999 (interactive "p") | |
1000 (unless (> count 0) | |
1001 (error "The function `mh-previous-unread-msg' expects positive argument")) | |
1002 (setq count (1- count)) | |
1003 (let ((unread-sequence (cdr (assoc mh-unseen-seq mh-seq-list))) | |
1004 (cur-msg (mh-get-msg-num nil))) | |
1005 (cond ((and (not cur-msg) (not (bobp)) | |
1006 ;; If we are at the end of the buffer back up one line and go | |
1007 ;; to unread message after that. | |
1008 (progn | |
1009 (forward-line -1) | |
1010 (setq cur-msg (mh-get-msg-num nil))) | |
1011 nil)) | |
1012 ((or (null unread-sequence) (not cur-msg)) | |
1013 ;; No unread message or there aren't any messages in buffer... | |
1014 (message "No more unread messages")) | |
1015 ((progn | |
1016 ;; Skip count messages... | |
1017 (while (and unread-sequence (>= (car unread-sequence) cur-msg)) | |
1018 (setq unread-sequence (cdr unread-sequence))) | |
1019 (while (> count 0) | |
1020 (setq unread-sequence (cdr unread-sequence)) | |
1021 (setq count (1- count))) | |
1022 (not (car unread-sequence))) | |
1023 (message "No more unread messages")) | |
1024 (t (loop for msg in unread-sequence | |
1025 when (mh-goto-msg msg t) return nil | |
1026 finally (message "No more unread messages")))))) | |
1027 | |
1028 ;;;###mh-autoload | |
1029 (defun mh-quit () | |
1030 "Quit the current MH-E folder. | |
1031 | |
1032 When you want to quit using MH-E and go back to editing, you can use | |
1033 this command. This buries the buffers of the current MH-E folder and | |
1034 restores the buffers that were present when you first ran | |
1035 \\[mh-rmail]. It also removes any MH-E working buffers whose name | |
1036 begins with \" *mh-\" or \"*MH-E \". You can later restore your MH-E | |
1037 session by selecting the \"+inbox\" buffer or by running \\[mh-rmail] | |
1038 again. | |
1039 | |
1040 The two hooks `mh-before-quit-hook' and `mh-quit-hook' are called by | |
1041 this function. The former one is called before the quit occurs, so you | |
1042 might use it to perform any MH-E operations; you could perform some | |
1043 query and abort the quit or call `mh-execute-commands', for example. | |
1044 The latter is not run in an MH-E context, so you might use it to | |
1045 modify the window setup." | |
1046 (interactive) | |
1047 (run-hooks 'mh-before-quit-hook) | |
1048 (let ((show-buffer (get-buffer mh-show-buffer))) | |
1049 (when show-buffer | |
1050 (kill-buffer show-buffer))) | |
1051 (mh-update-sequences) | |
1052 (mh-destroy-postponed-handles) | |
1053 (bury-buffer (current-buffer)) | |
1054 | |
1055 ;; Delete all MH-E temporary and working buffers. | |
1056 (dolist (buffer (buffer-list)) | |
1057 (when (or (string-match "^ \\*mh-" (buffer-name buffer)) | |
1058 (string-match "^\\*MH-E " (buffer-name buffer))) | |
1059 (kill-buffer buffer))) | |
1060 | |
1061 (if mh-previous-window-config | |
1062 (set-window-configuration mh-previous-window-config)) | |
1063 (run-hooks 'mh-quit-hook)) | |
1064 | |
1065 ;;;###mh-autoload | |
1066 (defun mh-refile-msg (range folder &optional dont-update-last-destination-flag) | |
1067 "Refile (output) RANGE into FOLDER. | |
1068 | |
1069 You are prompted for the folder name. Note that this command can also | |
1070 be used to create folders. If you specify a folder that does not | |
1071 exist, you will be prompted to create it. | |
1072 | |
1073 The hook `mh-refile-msg-hook' is called after a message is marked to | |
1074 be refiled. | |
1075 | |
1076 Check the documentation of `mh-interactive-range' to see how RANGE is | |
1077 read in interactive use. | |
1078 | |
1079 In a program, the variables `mh-last-destination' and | |
1080 `mh-last-destination-folder' are not updated if | |
1081 DONT-UPDATE-LAST-DESTINATION-FLAG is non-nil." | |
1082 (interactive (list (mh-interactive-range "Refile") | |
1083 (intern (mh-prompt-for-refile-folder)))) | |
1084 (unless dont-update-last-destination-flag | |
1085 (setq mh-last-destination (cons 'refile folder) | |
1086 mh-last-destination-folder mh-last-destination)) | |
1087 (mh-iterate-on-range () range | |
1088 (mh-refile-a-msg nil folder)) | |
1089 (when (looking-at mh-scan-refiled-msg-regexp) (mh-next-msg))) | |
1090 | |
1091 ;;;###mh-autoload | |
1092 (defun mh-refile-or-write-again (range &optional interactive-flag) | |
1093 "Repeat last output command. | |
1094 | |
1095 If you are refiling several messages into the same folder, you | |
1096 can use this command to repeat the last | |
1097 refile (\\[mh-refile-msg]) or write (\\[mh-write-msg-to-file]). | |
1098 You can use a range. | |
1099 | |
1100 Check the documentation of `mh-interactive-range' to see how RANGE is | |
1101 read in interactive use. | |
1102 | |
1103 In a program, a non-nil INTERACTIVE-FLAG means that the function was | |
1104 called interactively." | |
1105 (interactive (list (mh-interactive-range "Redo") t)) | |
1106 (if (null mh-last-destination) | |
1107 (error "No previous refile or write")) | |
1108 (cond ((eq (car mh-last-destination) 'refile) | |
1109 (mh-refile-msg range (cdr mh-last-destination)) | |
1110 (message "Destination folder: %s" (cdr mh-last-destination))) | |
1111 (t | |
1112 (mh-iterate-on-range msg range | |
1113 (apply 'mh-write-msg-to-file msg (cdr mh-last-destination))) | |
1114 (mh-next-msg interactive-flag)))) | |
1115 | |
1116 ;;;###mh-autoload | |
1117 (defun mh-rescan-folder (&optional range dont-exec-pending) | |
1118 "Rescan folder\\<mh-folder-mode-map>. | |
1119 | |
1120 This command is useful to grab all messages in your \"+inbox\" after | |
1121 processing your new mail for the first time. If you don't want to | |
1122 rescan the entire folder, this command will accept a RANGE. Check the | |
1123 documentation of `mh-interactive-range' to see how RANGE is read in | |
1124 interactive use. | |
1125 | |
1126 This command will ask if you want to process refiles or deletes first | |
1127 and then either run \\[mh-execute-commands] for you or undo the | |
69712
3981e84d0b79
* mh-folder.el (mh-execute-commands, mh-rescan-folder):
Bill Wohler <wohler@newt.com>
parents:
69492
diff
changeset
|
1128 pending refiles and deletes. |
68465 | 1129 |
1130 In a program, the processing of outstanding commands is not performed | |
1131 if DONT-EXEC-PENDING is non-nil." | |
1132 (interactive (list (if current-prefix-arg | |
1133 (mh-read-range "Rescan" mh-current-folder t nil t | |
1134 mh-interpret-number-as-range-flag) | |
1135 nil))) | |
1136 (setq mh-next-direction 'forward) | |
1137 (let ((threaded-flag (memq 'unthread mh-view-ops)) | |
1138 (msg-num (mh-get-msg-num nil))) | |
1139 (mh-scan-folder mh-current-folder (or range "all") dont-exec-pending) | |
1140 ;; If there isn't a cur sequence, mh-scan-folder goes to the first message. | |
1141 ;; Try to stay where we were. | |
1142 (if (null (car (mh-seq-to-msgs 'cur))) | |
1143 (mh-goto-msg msg-num t t)) | |
1144 (cond (threaded-flag (mh-toggle-threads)) | |
1145 (mh-index-data (mh-index-insert-folder-headers))))) | |
1146 | |
1147 (defun mh-show-mouse (event) | |
1148 "Move point to mouse EVENT and show message." | |
1149 (interactive "e") | |
1150 (mouse-set-point event) | |
1151 (mh-show)) | |
1152 | |
1153 ;;;###mh-autoload | |
1154 (defun mh-toggle-showing () | |
1155 "Toggle between MH-Folder and MH-Folder Show modes. | |
1156 | |
1157 This command switches between MH-Folder mode and MH-Folder Show | |
1158 mode. MH-Folder mode turns off the associated show buffer so that | |
1159 you can perform operations on the messages quickly without | |
1160 reading them. This is an excellent way to prune out your junk | |
1161 mail or to refile a group of messages to another folder for later | |
1162 examination." | |
1163 (interactive) | |
1164 (if mh-showing-mode | |
1165 (mh-set-scan-mode) | |
1166 (mh-show))) | |
1167 | |
1168 ;;;###mh-autoload | |
1169 (defun mh-undo (range) | |
1170 "Undo pending deletes or refiles in RANGE. | |
1171 | |
1172 If you've deleted a message or refiled it, but changed your mind, | |
1173 you can cancel the action before you've executed it. Use this | |
1174 command to undo a refile on or deletion of a single message. You | |
1175 can also undo refiles and deletes for messages that are found in | |
1176 a given RANGE. | |
1177 | |
1178 Check the documentation of `mh-interactive-range' to see how | |
1179 RANGE is read in interactive use." | |
1180 (interactive (list (mh-interactive-range "Undo"))) | |
1181 (cond ((numberp range) | |
1182 (let ((original-position (point))) | |
1183 (beginning-of-line) | |
1184 (while (not (or (looking-at mh-scan-deleted-msg-regexp) | |
1185 (looking-at mh-scan-refiled-msg-regexp) | |
1186 (and (eq mh-next-direction 'forward) (bobp)) | |
1187 (and (eq mh-next-direction 'backward) | |
1188 (save-excursion (forward-line) (eobp))))) | |
1189 (forward-line (if (eq mh-next-direction 'forward) -1 1))) | |
1190 (if (or (looking-at mh-scan-deleted-msg-regexp) | |
1191 (looking-at mh-scan-refiled-msg-regexp)) | |
1192 (progn | |
1193 (mh-undo-msg (mh-get-msg-num t)) | |
1194 (mh-maybe-show)) | |
1195 (goto-char original-position) | |
1196 (error "Nothing to undo")))) | |
1197 (t (mh-iterate-on-range () range | |
1198 (mh-undo-msg nil)))) | |
1199 (if (not (mh-outstanding-commands-p)) | |
1200 (mh-set-folder-modified-p nil))) | |
1201 | |
1202 ;;;###mh-autoload | |
1203 (defun mh-visit-folder (folder &optional range index-data) | |
1204 "Visit FOLDER. | |
1205 | |
1206 When you want to read the messages that you have refiled into folders, | |
1207 use this command to visit the folder. You are prompted for the folder | |
1208 name. | |
1209 | |
1210 The folder buffer will show just unseen messages if there are any; | |
1211 otherwise, it will show all the messages in the buffer as long there | |
1212 are fewer than `mh-large-folder' messages. If there are more, then you | |
1213 are prompted for a range of messages to scan. | |
1214 | |
1215 You can provide a prefix argument in order to specify a RANGE of | |
1216 messages to show when you visit the folder. In this case, regions are | |
1217 not used to specify the range and `mh-large-folder' is ignored. Check | |
1218 the documentation of `mh-interactive-range' to see how RANGE is read | |
1219 in interactive use. | |
1220 | |
1221 Note that this command can also be used to create folders. If you | |
1222 specify a folder that does not exist, you will be prompted to create | |
1223 it. | |
1224 | |
1225 Do not call this function from outside MH-E; use \\[mh-rmail] instead. | |
1226 | |
1227 If, in a program, RANGE is nil (the default), then all messages in | |
1228 FOLDER are displayed. If an index buffer is being created then | |
1229 INDEX-DATA is used to initialize the index buffer specific data | |
1230 structures." | |
1231 (interactive (let ((folder-name (mh-prompt-for-folder "Visit" mh-inbox t))) | |
1232 (list folder-name | |
1233 (mh-read-range "Scan" folder-name t nil | |
1234 current-prefix-arg | |
1235 mh-interpret-number-as-range-flag)))) | |
1236 (let ((config (current-window-configuration)) | |
1237 (current-buffer (current-buffer)) | |
1238 (threaded-view-flag mh-show-threads-flag)) | |
1239 (delete-other-windows) | |
1240 (save-excursion | |
1241 (when (get-buffer folder) | |
1242 (set-buffer folder) | |
1243 (setq threaded-view-flag (memq 'unthread mh-view-ops)))) | |
1244 (when index-data | |
1245 (mh-make-folder folder) | |
1246 (setq mh-index-data (car index-data) | |
1247 mh-index-msg-checksum-map (make-hash-table :test #'equal) | |
1248 mh-index-checksum-origin-map (make-hash-table :test #'equal)) | |
1249 (mh-index-update-maps folder (cadr index-data)) | |
1250 (mh-index-create-sequences)) | |
1251 (mh-scan-folder folder (or range "all")) | |
1252 (cond ((and threaded-view-flag | |
1253 (save-excursion | |
1254 (goto-char (point-min)) | |
1255 (or (null mh-large-folder) | |
1256 (not (equal (forward-line (1+ mh-large-folder)) 0)) | |
1257 (and (message "Not threading since the number of messages exceeds `mh-large-folder'") | |
1258 nil)))) | |
1259 (mh-toggle-threads)) | |
1260 (mh-index-data | |
1261 (mh-index-insert-folder-headers))) | |
1262 (unless (eq current-buffer (current-buffer)) | |
1263 (setq mh-previous-window-config config))) | |
1264 nil) | |
1265 | |
1266 ;;;###mh-autoload | |
1267 (defun mh-write-msg-to-file (message file no-header) | |
1268 "Append MESSAGE to end of FILE\\<mh-folder-mode-map>. | |
1269 | |
1270 You are prompted for the filename. If the file already exists, | |
1271 the message is appended to it. You can also write the message to | |
1272 the file without the header by specifying a prefix argument | |
1273 NO-HEADER. Subsequent writes to the same file can be made with | |
1274 the command \\[mh-refile-or-write-again]." | |
1275 (interactive | |
1276 (list (mh-get-msg-num t) | |
1277 (let ((default-dir (if (eq 'write (car mh-last-destination-write)) | |
1278 (file-name-directory | |
1279 (car (cdr mh-last-destination-write))) | |
1280 default-directory))) | |
1281 (read-file-name (format "Save message%s in file: " | |
1282 (if current-prefix-arg " body" "")) | |
1283 default-dir | |
1284 (if (eq 'write (car mh-last-destination-write)) | |
1285 (car (cdr mh-last-destination-write)) | |
1286 (expand-file-name "mail.out" default-dir)))) | |
1287 current-prefix-arg)) | |
1288 (let ((msg-file-to-output (mh-msg-filename message)) | |
1289 (output-file (mh-expand-file-name file))) | |
1290 (setq mh-last-destination (list 'write file (if no-header 'no-header)) | |
1291 mh-last-destination-write mh-last-destination) | |
1292 (save-excursion | |
1293 (set-buffer (get-buffer-create mh-temp-buffer)) | |
1294 (erase-buffer) | |
1295 (insert-file-contents msg-file-to-output) | |
1296 (goto-char (point-min)) | |
1297 (if no-header (search-forward "\n\n")) | |
1298 (append-to-file (point) (point-max) output-file)))) | |
1299 | |
1300 ;;;###mh-autoload | |
1301 (defun mh-update-sequences () | |
1302 "Flush MH-E's state out to MH. | |
1303 | |
1304 This function updates the sequence specified by your | |
1305 \"Unseen-Sequence:\" profile component, \"cur\", and the sequence | |
1306 listed by the `mh-tick-seq' option which is \"tick\" by default. | |
1307 The message at the cursor is used for \"cur\"." | |
1308 (interactive) | |
1309 ;; mh-update-sequences is the opposite of mh-read-folder-sequences, | |
1310 ;; which updates MH-E's state from MH. | |
1311 (let ((folder-set (mh-update-unseen)) | |
1312 (new-cur (mh-get-msg-num nil))) | |
1313 (if new-cur | |
1314 (let ((seq-entry (mh-find-seq 'cur))) | |
1315 (mh-remove-cur-notation) | |
1316 (setcdr seq-entry | |
1317 (list new-cur)) ;delete-seq-locally, add-msgs-to-seq | |
1318 (mh-define-sequence 'cur (list new-cur)) | |
1319 (beginning-of-line) | |
1320 (if (looking-at mh-scan-good-msg-regexp) | |
1321 (mh-notate-cur))) | |
1322 (or folder-set | |
1323 (save-excursion | |
1324 ;; psg - mh-current-folder is nil if mh-summary-height < 4 ! | |
1325 ;; So I added this sanity check. | |
1326 (if (stringp mh-current-folder) | |
1327 (mh-exec-cmd-quiet t "folder" mh-current-folder "-fast") | |
1328 (mh-exec-cmd-quiet t "folder" "-fast"))))))) | |
1329 | |
1330 | |
1331 | |
1332 ;;; Support Routines | |
1333 | |
1334 (defun mh-get-new-mail (maildrop-name) | |
1335 "Read new mail from MAILDROP-NAME into the current buffer. | |
1336 Return in the current buffer." | |
1337 (let ((point-before-inc (point)) | |
1338 (folder mh-current-folder) | |
1339 (new-mail-flag nil)) | |
1340 (with-mh-folder-updating (t) | |
1341 (if maildrop-name | |
1342 (message "inc %s -file %s..." folder maildrop-name) | |
1343 (message "inc %s..." folder)) | |
1344 (setq mh-next-direction 'forward) | |
1345 (goto-char (point-max)) | |
1346 (mh-remove-cur-notation) | |
1347 (let ((start-of-inc (point))) | |
1348 (if maildrop-name | |
1349 ;; I think MH 5 used "-ms-file" instead of "-file", | |
1350 ;; which would make inc'ing from maildrops fail. | |
1351 (mh-exec-cmd-output mh-inc-prog nil folder | |
1352 (mh-scan-format) | |
1353 "-file" (expand-file-name maildrop-name) | |
1354 "-width" (window-width) | |
1355 "-truncate") | |
1356 (mh-exec-cmd-output mh-inc-prog nil | |
1357 (mh-scan-format) | |
1358 "-width" (window-width))) | |
1359 (if maildrop-name | |
1360 (message "inc %s -file %s...done" folder maildrop-name) | |
1361 (message "inc %s...done" folder)) | |
1362 (goto-char start-of-inc) | |
1363 (cond ((save-excursion | |
1364 (re-search-forward "^inc: no mail" nil t)) | |
1365 (message "No new mail%s%s" (if maildrop-name " in " "") | |
1366 (if maildrop-name maildrop-name ""))) | |
1367 ((and (when mh-folder-view-stack | |
1368 (let ((saved-text (buffer-substring-no-properties | |
1369 start-of-inc (point-max)))) | |
1370 (delete-region start-of-inc (point-max)) | |
1371 (unwind-protect (mh-widen t) | |
1372 (mh-remove-cur-notation) | |
1373 (goto-char (point-max)) | |
1374 (setq start-of-inc (point)) | |
1375 (insert saved-text) | |
1376 (goto-char start-of-inc)))) | |
1377 nil)) | |
1378 ((re-search-forward "^inc:" nil t) ; Error messages | |
1379 (error "Error incorporating mail")) | |
1380 ((and | |
1381 (equal mh-scan-format-file t) | |
1382 mh-adaptive-cmd-note-flag | |
1383 ;; Have we reached an edge condition? | |
1384 (save-excursion | |
1385 (re-search-forward mh-scan-msg-overflow-regexp nil 0 1)) | |
1386 (setq start-of-inc (mh-generate-new-cmd-note folder)) | |
1387 nil)) | |
1388 (t | |
1389 (setq new-mail-flag t))) | |
1390 (keep-lines mh-scan-valid-regexp) ; Flush random scan lines | |
1391 (let* ((sequences (mh-read-folder-sequences folder t)) | |
1392 (new-cur (assoc 'cur sequences)) | |
1393 (new-unseen (assoc mh-unseen-seq sequences))) | |
1394 (unless (assoc 'cur mh-seq-list) | |
1395 (push (list 'cur) mh-seq-list)) | |
1396 (unless (assoc mh-unseen-seq mh-seq-list) | |
1397 (push (list mh-unseen-seq) mh-seq-list)) | |
1398 (setcdr (assoc 'cur mh-seq-list) (cdr new-cur)) | |
1399 (setcdr (assoc mh-unseen-seq mh-seq-list) (cdr new-unseen))) | |
1400 (when (equal (point-max) start-of-inc) | |
1401 (mh-notate-cur)) | |
1402 (if new-mail-flag | |
1403 (progn | |
1404 (mh-make-folder-mode-line) | |
1405 (when (mh-speed-flists-active-p) | |
1406 (mh-speed-flists t mh-current-folder)) | |
1407 (when (memq 'unthread mh-view-ops) | |
1408 (mh-thread-inc folder start-of-inc)) | |
1409 (mh-goto-cur-msg)) | |
1410 (goto-char point-before-inc)) | |
1411 (mh-notate-user-sequences (cons start-of-inc (point-max))))))) | |
1412 | |
1413 (defun mh-generate-new-cmd-note (folder) | |
1414 "Fix the `mh-cmd-note' value for this FOLDER. | |
1415 | |
1416 After doing an `mh-get-new-mail' operation in this FOLDER, at least | |
1417 one line that looks like a truncated message number was found. | |
1418 | |
1419 Remove the text added by the last `mh-inc' command. It should be the | |
1420 messages cur-last. Call `mh-set-cmd-note', adjusting the notation | |
1421 column with the width of the largest message number in FOLDER. | |
1422 | |
1423 Reformat the message number width on each line in the buffer and trim | |
1424 the line length to fit in the window. | |
1425 | |
1426 Rescan the FOLDER in the range cur-last in order to display the | |
1427 messages that were removed earlier. They should all fit in the scan | |
1428 line now with no message truncation." | |
1429 (save-excursion | |
1430 (let ((maxcol (1- (window-width))) | |
1431 (old-cmd-note mh-cmd-note) | |
1432 mh-cmd-note-fmt | |
1433 msgnum) | |
1434 ;; Nuke all of the lines just added by the last inc | |
1435 (delete-char (- (point-max) (point))) | |
1436 ;; Update the current buffer to reflect the new mh-cmd-note | |
1437 ;; value needed to display messages. | |
1438 (mh-set-cmd-note (mh-msg-num-width-to-column (mh-msg-num-width folder))) | |
1439 (setq mh-cmd-note-fmt (concat "%" (format "%d" mh-cmd-note) "d")) | |
1440 ;; Cleanup the messages that are in the buffer right now | |
1441 (goto-char (point-min)) | |
1442 (cond ((memq 'unthread mh-view-ops) | |
1443 (mh-thread-add-spaces (- mh-cmd-note old-cmd-note))) | |
1444 (t (while (re-search-forward (mh-scan-msg-number-regexp) nil 0 1) | |
1445 ;; reformat the number to fix in mh-cmd-note columns | |
1446 (setq msgnum (string-to-number | |
1447 (buffer-substring | |
1448 (match-beginning 1) (match-end 1)))) | |
1449 (replace-match (format mh-cmd-note-fmt msgnum)) | |
1450 ;; trim the line to fix in the window | |
1451 (end-of-line) | |
1452 (let ((eol (point))) | |
1453 (move-to-column maxcol) | |
1454 (if (<= (point) eol) | |
1455 (delete-char (- eol (point)))))))) | |
1456 ;; now re-read the lost messages | |
1457 (goto-char (point-max)) | |
1458 (prog1 (point) | |
1459 (mh-regenerate-headers "cur-last" t))))) | |
1460 | |
1461 ;;;###mh-autoload | |
1462 (defun mh-goto-cur-msg (&optional minimal-changes-flag) | |
1463 "Position the cursor at the current message. | |
1464 When optional argument MINIMAL-CHANGES-FLAG is non-nil, the | |
1465 function doesn't recenter the folder buffer." | |
1466 (let ((cur-msg (car (mh-seq-to-msgs 'cur)))) | |
1467 (cond ((and cur-msg | |
1468 (mh-goto-msg cur-msg t t)) | |
1469 (unless minimal-changes-flag | |
1470 (mh-notate-cur) | |
1471 (mh-recenter 0) | |
1472 (mh-maybe-show cur-msg))) | |
1473 (t | |
1474 (setq overlay-arrow-position nil) | |
1475 (message "No current message"))))) | |
1476 | |
1477 ;;;###mh-autoload | |
1478 (defun mh-recenter (arg) | |
1479 "Like recenter but with three improvements: | |
1480 | |
1481 - At the end of the buffer it tries to show fewer empty lines. | |
1482 | |
1483 - operates only if the current buffer is in the selected window. | |
1484 (Commands like `save-some-buffers' can make this false.) | |
1485 | |
1486 - nil ARG means recenter as if prefix argument had been given." | |
1487 (cond ((not (eq (get-buffer-window (current-buffer)) (selected-window))) | |
1488 nil) | |
1489 ((= (point-max) (save-excursion | |
1490 (forward-line (- (/ (window-height) 2) 2)) | |
1491 (point))) | |
1492 (let ((lines-from-end 2)) | |
1493 (save-excursion | |
1494 (while (> (point-max) (progn (forward-line) (point))) | |
1495 (incf lines-from-end))) | |
1496 (recenter (- lines-from-end)))) | |
1497 ;; '(4) is the same as C-u prefix argument. | |
1498 (t (recenter (or arg '(4)))))) | |
1499 | |
1500 (defun mh-update-unseen () | |
1501 "Synchronize the unseen sequence with MH. | |
78479
40ee7ed1bfea
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78231
diff
changeset
|
1502 Return non-nil if the MH folder was set. |
68465 | 1503 The hook `mh-unseen-updated-hook' is called after the unseen sequence |
1504 is updated." | |
1505 (if mh-seen-list | |
1506 (let* ((unseen-seq (mh-find-seq mh-unseen-seq)) | |
1507 (unseen-msgs (mh-seq-msgs unseen-seq))) | |
1508 (if unseen-msgs | |
1509 (progn | |
1510 (mh-undefine-sequence mh-unseen-seq mh-seen-list) | |
1511 (run-hooks 'mh-unseen-updated-hook) | |
1512 (while mh-seen-list | |
1513 (setq unseen-msgs (delq (car mh-seen-list) unseen-msgs)) | |
1514 (setq mh-seen-list (cdr mh-seen-list))) | |
1515 (setcdr unseen-seq unseen-msgs) | |
1516 t) ;since we set the folder | |
1517 (setq mh-seen-list nil))))) | |
1518 | |
1519 ;;;###mh-autoload | |
1520 (defun mh-outstanding-commands-p () | |
1521 "Return non-nil if there are outstanding deletes or refiles." | |
1522 (save-excursion | |
1523 (when (eq major-mode 'mh-show-mode) | |
1524 (set-buffer mh-show-folder-buffer)) | |
1525 (or mh-delete-list mh-refile-list))) | |
1526 | |
1527 ;;;###mh-autoload | |
1528 (defun mh-set-folder-modified-p (flag) | |
1529 "Mark current folder as modified or unmodified according to FLAG." | |
1530 (set-buffer-modified-p flag)) | |
1531 | |
1532 (defun mh-process-commands (folder) | |
1533 "Process outstanding commands for FOLDER. | |
1534 | |
1535 This function runs `mh-before-commands-processed-hook' before the | |
1536 commands are processed and `mh-after-commands-processed-hook' | |
1537 after the commands are processed." | |
1538 (message "Processing deletes and refiles for %s..." folder) | |
1539 (set-buffer folder) | |
1540 (with-mh-folder-updating (nil) | |
1541 ;; Run the before hook -- the refile and delete lists are still valid | |
1542 (run-hooks 'mh-before-commands-processed-hook) | |
1543 | |
1544 ;; Update the unseen sequence if it exists | |
1545 (mh-update-unseen) | |
1546 | |
1547 (let ((redraw-needed-flag mh-index-data) | |
1548 (folders-changed (list mh-current-folder)) | |
1549 (seq-map (and mh-refile-list mh-refile-preserves-sequences-flag | |
1550 (mh-create-sequence-map mh-seq-list))) | |
1551 (dest-map (and mh-refile-list mh-refile-preserves-sequences-flag | |
1552 (make-hash-table)))) | |
1553 ;; Remove invalid scan lines if we are in an index folder and then remove | |
1554 ;; the real messages | |
1555 (when mh-index-data | |
1556 (mh-index-delete-folder-headers) | |
1557 (setq folders-changed | |
1558 (append folders-changed (mh-index-execute-commands)))) | |
1559 | |
1560 ;; Then refile messages | |
1561 (mh-mapc #'(lambda (folder-msg-list) | |
1562 (let* ((dest-folder (symbol-name (car folder-msg-list))) | |
1563 (last (car (mh-translate-range dest-folder "last"))) | |
1564 (msgs (cdr folder-msg-list))) | |
1565 (push dest-folder folders-changed) | |
1566 (setq redraw-needed-flag t) | |
1567 (apply #'mh-exec-cmd | |
1568 "refile" "-src" folder dest-folder | |
1569 (mh-coalesce-msg-list msgs)) | |
1570 (mh-delete-scan-msgs msgs) | |
1571 ;; Preserve sequences in destination folder... | |
1572 (when mh-refile-preserves-sequences-flag | |
1573 (clrhash dest-map) | |
1574 (loop for i from (1+ (or last 0)) | |
1575 for msg in (sort (copy-sequence msgs) #'<) | |
1576 do (loop for seq-name in (gethash msg seq-map) | |
1577 do (push i (gethash seq-name dest-map)))) | |
1578 (maphash | |
1579 #'(lambda (seq msgs) | |
1580 ;; Can't be run in the background, since the | |
1581 ;; current folder is changed by mark this could | |
1582 ;; lead to a race condition with the next refile. | |
1583 (apply #'mh-exec-cmd "mark" | |
1584 "-sequence" (symbol-name seq) dest-folder | |
1585 "-add" (mapcar #'(lambda (x) (format "%s" x)) | |
1586 (mh-coalesce-msg-list msgs)))) | |
1587 dest-map)))) | |
1588 mh-refile-list) | |
1589 (setq mh-refile-list ()) | |
1590 | |
1591 ;; Now delete messages | |
1592 (cond (mh-delete-list | |
1593 (setq redraw-needed-flag t) | |
1594 (apply 'mh-exec-cmd "rmm" folder | |
1595 (mh-coalesce-msg-list mh-delete-list)) | |
1596 (mh-delete-scan-msgs mh-delete-list) | |
1597 (setq mh-delete-list nil))) | |
1598 | |
1599 ;; Don't need to remove sequences since delete and refile do so. | |
1600 ;; Mark cur message | |
1601 (if (> (buffer-size) 0) | |
1602 (mh-define-sequence 'cur (list (or (mh-get-msg-num nil) "last")))) | |
1603 | |
1604 ;; Redraw folder buffer if needed | |
1605 (when (and redraw-needed-flag) | |
1606 (when (mh-speed-flists-active-p) | |
1607 (apply #'mh-speed-flists t folders-changed)) | |
1608 (cond ((memq 'unthread mh-view-ops) (mh-thread-inc folder (point-max))) | |
1609 (mh-index-data (mh-index-insert-folder-headers)))) | |
1610 | |
1611 (and (buffer-file-name (get-buffer mh-show-buffer)) | |
1612 (not (file-exists-p (buffer-file-name (get-buffer mh-show-buffer)))) | |
1613 ;; If "inc" were to put a new msg in this file, | |
1614 ;; we would not notice, so mark it invalid now. | |
1615 (mh-invalidate-show-buffer)) | |
1616 | |
1617 (setq mh-seq-list (mh-read-folder-sequences mh-current-folder nil)) | |
1618 (mh-remove-all-notation) | |
1619 (mh-notate-user-sequences) | |
1620 | |
1621 ;; Run the after hook -- now folders-changed is valid, | |
1622 ;; but not the lists of specific messages. | |
1623 (let ((mh-folders-changed folders-changed)) | |
1624 (run-hooks 'mh-after-commands-processed-hook))) | |
1625 | |
1626 (message "Processing deletes and refiles for %s...done" folder))) | |
1627 | |
1628 (defun mh-delete-scan-msgs (msgs) | |
1629 "Delete the scan listing lines for MSGS." | |
1630 (save-excursion | |
1631 (while msgs | |
1632 (when (mh-goto-msg (car msgs) t t) | |
1633 (when (memq 'unthread mh-view-ops) | |
1634 (mh-thread-forget-message (car msgs))) | |
1635 (mh-delete-line 1)) | |
1636 (setq msgs (cdr msgs))))) | |
1637 | |
1638 (defun mh-set-scan-mode () | |
1639 "Display the scan listing buffer, but do not show a message." | |
1640 (if (get-buffer mh-show-buffer) | |
1641 (delete-windows-on mh-show-buffer)) | |
1642 (mh-showing-mode 0) | |
1643 (force-mode-line-update) | |
1644 (if mh-recenter-summary-flag | |
1645 (mh-recenter nil))) | |
1646 | |
1647 ;;;###mh-autoload | |
1648 (defun mh-make-folder-mode-line (&optional ignored) | |
1649 "Set the fields of the mode line for a folder buffer. | |
1650 The optional argument is now obsolete and IGNORED. It used to be | |
1651 used to pass in what is now stored in the buffer-local variable | |
1652 `mh-mode-line-annotation'." | |
1653 (save-excursion | |
1654 (save-window-excursion | |
1655 (mh-first-msg) | |
1656 (let ((new-first-msg-num (mh-get-msg-num nil))) | |
1657 (when (or (not (memq 'unthread mh-view-ops)) | |
1658 (null mh-first-msg-num) | |
1659 (null new-first-msg-num) | |
1660 (< new-first-msg-num mh-first-msg-num)) | |
1661 (setq mh-first-msg-num new-first-msg-num))) | |
1662 (mh-last-msg) | |
1663 (let ((new-last-msg-num (mh-get-msg-num nil))) | |
1664 (when (or (not (memq 'unthread mh-view-ops)) | |
1665 (null mh-last-msg-num) | |
1666 (null new-last-msg-num) | |
1667 (> new-last-msg-num mh-last-msg-num)) | |
1668 (setq mh-last-msg-num new-last-msg-num))) | |
1669 (setq mh-msg-count (if mh-first-msg-num | |
1670 (count-lines (point-min) (point-max)) | |
1671 0)) | |
1672 (setq mode-line-buffer-identification | |
1673 (list (format " {%%b%s} %s msg%s" | |
1674 (if mh-mode-line-annotation | |
1675 (format "/%s" mh-mode-line-annotation) | |
1676 "") | |
1677 (if (zerop mh-msg-count) | |
1678 "no" | |
1679 (format "%d" mh-msg-count)) | |
1680 (if (zerop mh-msg-count) | |
1681 "s" | |
1682 (cond ((> mh-msg-count 1) | |
1683 (format "s (%d-%d)" mh-first-msg-num | |
1684 mh-last-msg-num)) | |
1685 (mh-first-msg-num | |
1686 (format " (%d)" mh-first-msg-num)) | |
1687 ("")))))) | |
1688 (mh-logo-display)))) | |
1689 | |
1690 ;;;###mh-autoload | |
1691 (defun mh-scan-folder (folder range &optional dont-exec-pending) | |
1692 "Scan FOLDER over RANGE. | |
1693 | |
1694 After the scan is performed, switch to the buffer associated with | |
1695 FOLDER. | |
1696 | |
1697 Check the documentation of `mh-interactive-range' to see how RANGE is | |
1698 read in interactive use. | |
1699 | |
1700 The processing of outstanding commands is not performed if | |
1701 DONT-EXEC-PENDING is non-nil." | |
1702 (when (stringp range) | |
1703 (setq range (delete "" (split-string range "[ \t\n]")))) | |
1704 (cond ((null (get-buffer folder)) | |
1705 (mh-make-folder folder)) | |
1706 (t | |
1707 (unless dont-exec-pending | |
1708 (mh-process-or-undo-commands folder) | |
1709 (mh-reset-threads-and-narrowing)) | |
1710 (switch-to-buffer folder))) | |
1711 (mh-regenerate-headers range) | |
1712 (if (zerop (buffer-size)) | |
1713 (if (equal range "all") | |
1714 (message "Folder %s is empty" folder) | |
1715 (message "No messages in %s, range %s" folder range)) | |
1716 (mh-goto-cur-msg)) | |
1717 (when (mh-outstanding-commands-p) | |
1718 (mh-notate-deleted-and-refiled))) | |
1719 | |
1720 ;;;###mh-autoload | |
1721 (defun mh-process-or-undo-commands (folder) | |
1722 "If FOLDER has outstanding commands, then either process or discard them. | |
1723 Called by functions like `mh-sort-folder', so also invalidate | |
1724 show buffer." | |
1725 (set-buffer folder) | |
1726 (if (mh-outstanding-commands-p) | |
1727 (if (or mh-do-not-confirm-flag | |
1728 (y-or-n-p | |
1729 "Process outstanding deletes and refiles? ")) | |
1730 (mh-process-commands folder) | |
1731 (set-buffer folder) | |
1732 (mh-undo-folder))) | |
1733 (mh-update-unseen) | |
1734 (mh-invalidate-show-buffer)) | |
1735 | |
1736 ;;;###mh-autoload | |
1737 (defun mh-regenerate-headers (range &optional update) | |
1738 "Scan folder over RANGE. | |
1739 If UPDATE, append the scan lines, otherwise replace." | |
1740 (let ((folder mh-current-folder) | |
1741 (range (if (and range (atom range)) (list range) range)) | |
1742 scan-start) | |
1743 (message "Scanning %s..." folder) | |
1744 (mh-remove-all-notation) | |
1745 (with-mh-folder-updating (nil) | |
1746 (if update | |
1747 (goto-char (point-max)) | |
1748 (delete-region (point-min) (point-max)) | |
1749 (if mh-adaptive-cmd-note-flag | |
1750 (mh-set-cmd-note (mh-msg-num-width-to-column (mh-msg-num-width | |
1751 folder))))) | |
1752 (setq scan-start (point)) | |
1753 (apply #'mh-exec-cmd-output | |
1754 mh-scan-prog nil | |
1755 (mh-scan-format) | |
1756 "-noclear" "-noheader" | |
1757 "-width" (window-width) | |
1758 folder range) | |
1759 (goto-char scan-start) | |
1760 (cond ((looking-at "scan: no messages in") | |
1761 (keep-lines mh-scan-valid-regexp)) ; Flush random scan lines | |
97409
4882b599444d
(mh-reply): Rename variant mu-mh to gnu-mh and be explicit about GNU
Bill Wohler <wohler@newt.com>
parents:
95843
diff
changeset
|
1762 ((looking-at (if (mh-variant-p 'gnu-mh) |
68465 | 1763 "scan: message set .* does not exist" |
1764 "scan: bad message list ")) | |
1765 (keep-lines mh-scan-valid-regexp)) | |
1766 ((looking-at "scan: ")) ; Keep error messages | |
1767 (t | |
1768 (keep-lines mh-scan-valid-regexp))) ; Flush random scan lines | |
1769 (setq mh-seq-list (mh-read-folder-sequences folder nil)) | |
1770 (mh-notate-user-sequences) | |
1771 (or update | |
1772 (setq mh-mode-line-annotation | |
1773 (if (equal range '("all")) | |
1774 nil | |
1775 mh-partial-folder-mode-line-annotation))) | |
1776 (mh-make-folder-mode-line)) | |
1777 (message "Scanning %s...done" folder))) | |
1778 | |
1779 ;;;###mh-autoload | |
1780 (defun mh-reset-threads-and-narrowing () | |
1781 "Reset all variables pertaining to threads and narrowing. | |
1782 Also removes all content from the folder buffer." | |
1783 (setq mh-view-ops ()) | |
1784 (setq mh-folder-view-stack ()) | |
1785 (setq mh-thread-scan-line-map-stack ()) | |
1786 (let ((buffer-read-only nil)) (erase-buffer))) | |
1787 | |
1788 (defun mh-make-folder (name) | |
1789 "Create a new mail folder called NAME. | |
1790 Make it the current folder." | |
1791 (switch-to-buffer name) | |
1792 (setq buffer-read-only nil) | |
1793 (erase-buffer) | |
1794 (if mh-adaptive-cmd-note-flag | |
1795 (mh-set-cmd-note (mh-msg-num-width-to-column (mh-msg-num-width name)))) | |
1796 (setq buffer-read-only t) | |
1797 (mh-folder-mode) | |
1798 (mh-set-folder-modified-p nil) | |
1799 (setq buffer-file-name mh-folder-filename) | |
1800 (when (and (not mh-index-data) | |
1801 (file-exists-p (concat buffer-file-name mh-index-data-file))) | |
1802 (mh-index-read-data)) | |
1803 (mh-make-folder-mode-line)) | |
1804 | |
1805 ;;;###mh-autoload | |
1806 (defun mh-next-msg (&optional wait-after-complaining-flag) | |
1807 "Move backward or forward to the next undeleted message in the buffer. | |
1808 If optional argument WAIT-AFTER-COMPLAINING-FLAG is non-nil and | |
1809 we are at the last message, then wait for a second after telling | |
1810 the user that there aren't any more unread messages." | |
1811 (if (eq mh-next-direction 'forward) | |
1812 (mh-next-undeleted-msg 1 wait-after-complaining-flag) | |
1813 (mh-previous-undeleted-msg 1 wait-after-complaining-flag))) | |
1814 | |
1815 ;;;###mh-autoload | |
1816 (defun mh-prompt-for-refile-folder () | |
1817 "Prompt the user for a folder in which the message should be filed. | |
1818 The folder is returned as a string. | |
1819 | |
1820 The default folder name is generated by the option | |
1821 `mh-default-folder-for-message-function' if it is non-nil or | |
1822 `mh-folder-from-address'." | |
1823 (mh-prompt-for-folder | |
1824 "Destination" | |
1825 (let ((refile-file (ignore-errors (mh-msg-filename (mh-get-msg-num t))))) | |
1826 (if (null refile-file) "" | |
1827 (save-excursion | |
1828 (set-buffer (get-buffer-create mh-temp-buffer)) | |
1829 (erase-buffer) | |
1830 (insert-file-contents refile-file) | |
1831 (or (and mh-default-folder-for-message-function | |
1832 (let ((buffer-file-name refile-file)) | |
1833 (funcall mh-default-folder-for-message-function))) | |
1834 (mh-folder-from-address) | |
1835 (and (eq 'refile (car mh-last-destination-folder)) | |
1836 (symbol-name (cdr mh-last-destination-folder))) | |
1837 "")))) | |
1838 t)) | |
1839 | |
1840 ;;;###mh-autoload | |
1841 (defun mh-folder-from-address () | |
1842 "Derive folder name from sender. | |
1843 | |
1844 The name of the folder is derived as follows: | |
1845 | |
1846 a) The folder name associated with the first address found in | |
1847 the list `mh-default-folder-list' is used. Each element in | |
1848 this list contains a \"Check Recipient\" item. If this item is | |
1849 turned on, then the address is checked against the recipient | |
1850 instead of the sender. This is useful for mailing lists. | |
1851 | |
1852 b) An alias prefixed by `mh-default-folder-prefix' | |
1853 corresponding to the address is used. The prefix is used to | |
1854 prevent clutter in your mail directory. | |
1855 | |
1856 Return nil if a folder name was not derived, or if the variable | |
1857 `mh-default-folder-must-exist-flag' is t and the folder does not | |
1858 exist." | |
1859 ;; Loop for all entries in mh-default-folder-list | |
1860 (save-restriction | |
1861 (goto-char (point-min)) | |
1862 (re-search-forward "\n\n" nil 'limit) | |
1863 (narrow-to-region (point-min) (point)) | |
1864 (let ((to/cc (concat (or (message-fetch-field "to") "") ", " | |
1865 (or (message-fetch-field "cc") ""))) | |
1866 (from (or (message-fetch-field "from") "")) | |
1867 folder-name) | |
1868 (setq folder-name | |
1869 (loop for list in mh-default-folder-list | |
1870 when (string-match (nth 0 list) (if (nth 2 list) to/cc from)) | |
1871 return (nth 1 list) | |
1872 finally return nil)) | |
1873 | |
1874 ;; Make sure a result from `mh-default-folder-list' begins with "+" | |
1875 ;; since 'mh-expand-file-name below depends on it | |
1876 (when (and folder-name (not (eq (aref folder-name 0) ?+))) | |
1877 (setq folder-name (concat "+" folder-name))) | |
1878 | |
1879 ;; If not, is there an alias for the address? | |
1880 (when (not folder-name) | |
1881 (let* ((from-header (mh-extract-from-header-value)) | |
1882 (address (and from-header | |
1883 (nth 1 (mail-extract-address-components | |
1884 from-header)))) | |
1885 (alias (and address (mh-alias-address-to-alias address)))) | |
1886 (when alias | |
1887 (setq folder-name | |
1888 (and alias (concat "+" mh-default-folder-prefix alias)))))) | |
1889 | |
1890 ;; If mh-default-folder-must-exist-flag set, check that folder exists. | |
1891 (if (and folder-name | |
1892 (or (not mh-default-folder-must-exist-flag) | |
1893 (file-exists-p (mh-expand-file-name folder-name)))) | |
1894 folder-name)))) | |
1895 | |
1896 ;;;###mh-autoload | |
1897 (defun mh-delete-a-msg (message) | |
1898 "Delete MESSAGE. | |
1899 If MESSAGE is nil then the message at point is deleted. | |
1900 The hook `mh-delete-msg-hook' is called after you mark a message | |
1901 for deletion. For example, a past maintainer of MH-E used this | |
1902 once when he kept statistics on his mail usage." | |
1903 (save-excursion | |
1904 (if (numberp message) | |
1905 (mh-goto-msg message nil t) | |
1906 (beginning-of-line) | |
1907 (setq message (mh-get-msg-num t))) | |
1908 (if (looking-at mh-scan-refiled-msg-regexp) | |
1909 (error "Message %d is refiled; undo refile before deleting" message)) | |
1910 (if (looking-at mh-scan-deleted-msg-regexp) | |
1911 nil | |
1912 (mh-set-folder-modified-p t) | |
1913 (setq mh-delete-list (cons message mh-delete-list)) | |
1914 (mh-notate nil mh-note-deleted mh-cmd-note) | |
1915 (run-hooks 'mh-delete-msg-hook)))) | |
1916 | |
1917 ;;;###mh-autoload | |
1918 (defun mh-refile-a-msg (message folder) | |
1919 "Refile MESSAGE in FOLDER. | |
1920 If MESSAGE is nil then the message at point is refiled. | |
1921 Folder is a symbol, not a string. | |
1922 The hook `mh-refile-msg-hook' is called after a message is marked to | |
1923 be refiled." | |
1924 (save-excursion | |
1925 (if (numberp message) | |
1926 (mh-goto-msg message nil t) | |
1927 (beginning-of-line) | |
1928 (setq message (mh-get-msg-num t))) | |
1929 (cond ((looking-at mh-scan-deleted-msg-regexp) | |
1930 (error "Message %d is deleted; undo delete before moving" message)) | |
1931 ((looking-at mh-scan-refiled-msg-regexp) | |
1932 (if (y-or-n-p | |
1933 (format "Message %d already refiled; copy to %s as well? " | |
1934 message folder)) | |
1935 (mh-exec-cmd "refile" (mh-get-msg-num t) "-link" | |
1936 "-src" mh-current-folder | |
1937 (symbol-name folder)) | |
1938 (message "Message not copied"))) | |
1939 (t | |
1940 (mh-set-folder-modified-p t) | |
1941 (cond ((null (assoc folder mh-refile-list)) | |
1942 (push (list folder message) mh-refile-list)) | |
1943 ((not (member message (cdr (assoc folder mh-refile-list)))) | |
1944 (push message (cdr (assoc folder mh-refile-list))))) | |
1945 (mh-notate nil mh-note-refiled mh-cmd-note) | |
1946 (run-hooks 'mh-refile-msg-hook))))) | |
1947 | |
1948 (defun mh-undo-msg (msg) | |
1949 "Undo the deletion or refile of one MSG. | |
1950 If MSG is nil then act on the message at point" | |
1951 (save-excursion | |
1952 (if (numberp msg) | |
1953 (mh-goto-msg msg t t) | |
1954 (beginning-of-line) | |
1955 (setq msg (mh-get-msg-num t))) | |
1956 (cond ((memq msg mh-delete-list) | |
1957 (setq mh-delete-list (delq msg mh-delete-list))) | |
1958 (t | |
1959 (dolist (folder-msg-list mh-refile-list) | |
1960 (setf (cdr folder-msg-list) (remove msg (cdr folder-msg-list)))) | |
1961 (setq mh-refile-list (loop for x in mh-refile-list | |
1962 unless (null (cdr x)) collect x)))) | |
1963 (mh-notate nil ? mh-cmd-note))) | |
1964 | |
1965 ;;;###mh-autoload | |
1966 (defun mh-msg-filename (msg &optional folder) | |
1967 "Return the file name of MSG in FOLDER (default current folder)." | |
1968 (expand-file-name (int-to-string msg) | |
1969 (if folder | |
1970 (mh-expand-file-name folder) | |
1971 mh-folder-filename))) | |
1972 | |
1973 (provide 'mh-folder) | |
1974 | |
1975 ;; Local Variables: | |
1976 ;; indent-tabs-mode: nil | |
1977 ;; sentence-end-double-space: nil | |
1978 ;; End: | |
1979 | |
68470 | 1980 ;; arch-tag: aa97b758-d4f6-4c86-bc5a-1950921da1e7 |
68465 | 1981 ;;; mh-folder.el ends here |