Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / lisp / mh-e / mh-folder.el
CommitLineData
dda00b2c
BW
1;;; mh-folder.el --- MH-Folder mode
2
acaf905b 3;; Copyright (C) 2002-2003, 2005-2012 Free Software Foundation, Inc.
dda00b2c
BW
4
5;; Author: Bill Wohler <wohler@newt.com>
6;; Maintainer: Bill Wohler <wohler@newt.com>
7;; Keywords: mail
8;; See: mh-e.el
9
10;; This file is part of GNU Emacs.
11
5e809f55 12;; GNU Emacs is free software: you can redistribute it and/or modify
dda00b2c 13;; it under the terms of the GNU General Public License as published by
5e809f55
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
dda00b2c
BW
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
5e809f55 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
dda00b2c
BW
24
25;;; Commentary:
26
27;; Mode for browsing folders
28
29;;; Change Log:
30
31;;; Code:
32
33(require 'mh-e)
34(require 'mh-scan)
35(mh-require-cl)
36
efc27af6 37;; Dynamically-created functions not found in mh-loaddefs.el.
dda00b2c 38(autoload 'mh-tool-bar-folder-buttons-init "mh-tool-bar")
efc27af6 39(autoload 'mh-tool-bar-init "mh-tool-bar")
dda00b2c
BW
40
41(require 'gnus-util)
42(autoload 'message-fetch-field "message")
43
44\f
45
46;;; MH-E Entry Points
47
48;;;###autoload
49(defun mh-rmail (&optional arg)
50 "Incorporate new mail with MH.
51Scan an MH folder if ARG is non-nil.
52
53This function is an entry point to MH-E, the Emacs interface to
54the MH mail system."
55 (interactive "P")
56 (mh-find-path)
57 (if arg
58 (call-interactively 'mh-visit-folder)
59 (unless (get-buffer mh-inbox)
60 (mh-visit-folder mh-inbox (symbol-name mh-unseen-seq)))
61 (mh-inc-folder)))
62
63;;;###autoload
64(defun mh-nmail (&optional arg)
65 "Check for new mail in inbox folder.
66Scan an MH folder if ARG is non-nil.
67
68This function is an entry point to MH-E, the Emacs interface to
69the MH mail system."
70 (interactive "P")
71 (mh-find-path) ; init mh-inbox
72 (if arg
73 (call-interactively 'mh-visit-folder)
74 (mh-visit-folder mh-inbox)))
75\f
76
77;;; Desktop Integration
78
79;; desktop-buffer-mode-handlers appeared in Emacs 22.
2a7a7c14 80(if (boundp 'desktop-buffer-mode-handlers)
dda00b2c
BW
81 (add-to-list 'desktop-buffer-mode-handlers
82 '(mh-folder-mode . mh-restore-desktop-buffer)))
83
84(defun mh-restore-desktop-buffer (desktop-buffer-file-name
85 desktop-buffer-name
86 desktop-buffer-misc)
87 "Restore an MH folder buffer specified in a desktop file.
88When desktop creates a buffer, DESKTOP-BUFFER-FILE-NAME holds the
89file name to visit, DESKTOP-BUFFER-NAME holds the desired buffer
90name, and DESKTOP-BUFFER-MISC holds a list of miscellaneous info
91used by the `desktop-buffer-handlers' functions."
92 (mh-find-path)
93 (mh-visit-folder desktop-buffer-name)
94 (current-buffer))
95
96\f
97
98;;; Variables
99
100(defvar mh-folder-filename nil
101 "Full path of directory for this folder.")
102
103(defvar mh-partial-folder-mode-line-annotation "select"
104 "Annotation when displaying part of a folder.
105The string is displayed after the folder's name. nil for no
106annotation.")
107
108(defvar mh-last-destination nil
109 "Destination of last refile or write command.")
110
111(defvar mh-last-destination-folder nil
112 "Destination of last refile command.")
113
114(defvar mh-last-destination-write nil
115 "Destination of last write command.")
116
117(defvar mh-first-msg-num nil
118 "Number of first message in buffer.")
119
120(defvar mh-last-msg-num nil
121 "Number of last msg in buffer.")
122
123(defvar mh-msg-count nil
124 "Number of msgs in buffer.")
125
126\f
127
128;;; Sequence Menu
129
130(easy-menu-define
131 mh-folder-sequence-menu mh-folder-mode-map "Menu for MH-E folder-sequence."
132 '("Sequence"
133 ["Add Message to Sequence..." mh-put-msg-in-seq (mh-get-msg-num nil)]
134 ["List Sequences for Message" mh-msg-is-in-seq (mh-get-msg-num nil)]
135 ["Delete Message from Sequence..." mh-delete-msg-from-seq
136 (mh-get-msg-num nil)]
137 ["List Sequences in Folder..." mh-list-sequences t]
138 ["Delete Sequence..." mh-delete-seq t]
139 ["Narrow to Sequence..." mh-narrow-to-seq t]
140 ["Widen from Sequence" mh-widen mh-folder-view-stack]
141 "--"
142 ["Narrow to Subject Sequence" mh-narrow-to-subject t]
143 ["Narrow to Tick Sequence" mh-narrow-to-tick
144 (and mh-tick-seq (mh-seq-msgs (mh-find-seq mh-tick-seq)))]
145 ["Delete Rest of Same Subject" mh-delete-subject t]
146 ["Toggle Tick Mark" mh-toggle-tick t]
147 "--"
148 ["Push State Out to MH" mh-update-sequences t]))
149
150;;; Message Menu
151
152(easy-menu-define
153 mh-folder-message-menu mh-folder-mode-map "Menu for MH-E folder-message."
154 '("Message"
155 ["Show Message" mh-show (mh-get-msg-num nil)]
156 ["Show Message with Header" mh-header-display (mh-get-msg-num nil)]
19c35c57
JH
157 ["Show Message with Preferred Alternative"
158 mh-show-preferred-alternative (mh-get-msg-num nil)]
dda00b2c
BW
159 ["Next Message" mh-next-undeleted-msg t]
160 ["Previous Message" mh-previous-undeleted-msg t]
161 ["Go to First Message" mh-first-msg t]
162 ["Go to Last Message" mh-last-msg t]
163 ["Go to Message by Number..." mh-goto-msg t]
164 ["Modify Message" mh-modify t]
165 ["Delete Message" mh-delete-msg (mh-get-msg-num nil)]
166 ["Refile Message" mh-refile-msg (mh-get-msg-num nil)]
167 ["Undo Delete/Refile" mh-undo (mh-outstanding-commands-p)]
168 ["Execute Delete/Refile" mh-execute-commands
169 (mh-outstanding-commands-p)]
170 "--"
171 ["Compose a New Message" mh-send t]
172 ["Reply to Message..." mh-reply (mh-get-msg-num nil)]
173 ["Forward Message..." mh-forward (mh-get-msg-num nil)]
174 ["Redistribute Message..." mh-redistribute (mh-get-msg-num nil)]
175 ["Edit Message Again" mh-edit-again (mh-get-msg-num nil)]
176 ["Re-edit a Bounced Message" mh-extract-rejected-mail t]
177 "--"
178 ["Copy Message to Folder..." mh-copy-msg (mh-get-msg-num nil)]
179 ["Print Message" mh-print-msg (mh-get-msg-num nil)]
180 ["Write Message to File..." mh-write-msg-to-file
181 (mh-get-msg-num nil)]
182 ["Pipe Message to Command..." mh-pipe-msg (mh-get-msg-num nil)]
183 ["Unpack Uuencoded Message..." mh-store-msg (mh-get-msg-num nil)]
184 ["Burst Digest Message" mh-burst-digest (mh-get-msg-num nil)]))
185
186;;; Folder Menu
187
188(easy-menu-define
189 mh-folder-folder-menu mh-folder-mode-map "Menu for MH-E folder."
190 '("Folder"
191 ["Incorporate New Mail" mh-inc-folder t]
192 ["Toggle Show/Folder" mh-toggle-showing t]
193 ["Execute Delete/Refile" mh-execute-commands
194 (mh-outstanding-commands-p)]
195 ["Rescan Folder" mh-rescan-folder t]
196 ["Thread Folder" mh-toggle-threads
197 (not (memq 'unthread mh-view-ops))]
198 ["Pack Folder" mh-pack-folder t]
199 ["Sort Folder" mh-sort-folder t]
200 "--"
201 ["List Folders" mh-list-folders t]
202 ["Visit a Folder..." mh-visit-folder t]
203 ["View New Messages" mh-index-new-messages t]
204 ["Search..." mh-search t]
205 "--"
206 ["Quit MH-E" mh-quit t]))
207
208\f
209
210;;; MH-Folder Keys
211
212(suppress-keymap mh-folder-mode-map)
213
214;; Use defalias to make sure the documented primary key bindings
215;; appear in menu lists.
216(defalias 'mh-alt-show 'mh-show)
217(defalias 'mh-alt-refile-msg 'mh-refile-msg)
218(defalias 'mh-alt-send 'mh-send)
219(defalias 'mh-alt-visit-folder 'mh-visit-folder)
220
221;; Save the "b" binding for a future `back'. Maybe?
222(gnus-define-keys mh-folder-mode-map
223 " " mh-page-msg
224 "!" mh-refile-or-write-again
225 "'" mh-toggle-tick
226 "," mh-header-display
227 "." mh-alt-show
19c35c57 228 ":" mh-show-preferred-alternative
dda00b2c
BW
229 ";" mh-toggle-mh-decode-mime-flag
230 ">" mh-write-msg-to-file
231 "?" mh-help
232 "E" mh-extract-rejected-mail
233 "M" mh-modify
234 "\177" mh-previous-page
235 "\C-d" mh-delete-msg-no-motion
236 "\t" mh-index-next-folder
237 [backtab] mh-index-previous-folder
238 "\M-\t" mh-index-previous-folder
239 "\e<" mh-first-msg
240 "\e>" mh-last-msg
241 "\ed" mh-redistribute
242 "\r" mh-show
243 "^" mh-alt-refile-msg
244 "c" mh-copy-msg
245 "d" mh-delete-msg
246 "e" mh-edit-again
247 "f" mh-forward
248 "g" mh-goto-msg
249 "i" mh-inc-folder
250 "k" mh-delete-subject-or-thread
251 "m" mh-alt-send
252 "n" mh-next-undeleted-msg
253 "\M-n" mh-next-unread-msg
254 "o" mh-refile-msg
255 "p" mh-previous-undeleted-msg
256 "\M-p" mh-previous-unread-msg
257 "q" mh-quit
258 "r" mh-reply
259 "s" mh-send
260 "t" mh-toggle-showing
261 "u" mh-undo
262 "v" mh-index-visit-folder
263 "x" mh-execute-commands
264 "|" mh-pipe-msg)
265
266(gnus-define-keys (mh-folder-map "F" mh-folder-mode-map)
267 "?" mh-prefix-help
268 "'" mh-index-ticked-messages
269 "S" mh-sort-folder
270 "c" mh-catchup
271 "f" mh-alt-visit-folder
272 "k" mh-kill-folder
273 "l" mh-list-folders
274 "n" mh-index-new-messages
275 "o" mh-alt-visit-folder
276 "p" mh-pack-folder
277 "q" mh-index-sequenced-messages
278 "r" mh-rescan-folder
279 "s" mh-search
280 "u" mh-undo-folder
281 "v" mh-visit-folder)
282
283(define-key mh-folder-mode-map "I" mh-inc-spool-map)
284
285(gnus-define-keys (mh-junk-map "J" mh-folder-mode-map)
286 "?" mh-prefix-help
287 "b" mh-junk-blacklist
288 "w" mh-junk-whitelist)
289
290(gnus-define-keys (mh-ps-print-map "P" mh-folder-mode-map)
291 "?" mh-prefix-help
292 "C" mh-ps-print-toggle-color
293 "F" mh-ps-print-toggle-faces
294 "f" mh-ps-print-msg-file
295 "l" mh-print-msg
296 "p" mh-ps-print-msg)
297
298(gnus-define-keys (mh-sequence-map "S" mh-folder-mode-map)
299 "'" mh-narrow-to-tick
300 "?" mh-prefix-help
301 "d" mh-delete-msg-from-seq
302 "k" mh-delete-seq
303 "l" mh-list-sequences
304 "n" mh-narrow-to-seq
305 "p" mh-put-msg-in-seq
306 "s" mh-msg-is-in-seq
307 "w" mh-widen)
308
309(gnus-define-keys (mh-thread-map "T" mh-folder-mode-map)
310 "?" mh-prefix-help
311 "u" mh-thread-ancestor
312 "p" mh-thread-previous-sibling
313 "n" mh-thread-next-sibling
314 "t" mh-toggle-threads
315 "d" mh-thread-delete
316 "o" mh-thread-refile)
317
318(gnus-define-keys (mh-limit-map "/" mh-folder-mode-map)
319 "'" mh-narrow-to-tick
320 "?" mh-prefix-help
321 "c" mh-narrow-to-cc
322 "g" mh-narrow-to-range
323 "m" mh-narrow-to-from
324 "s" mh-narrow-to-subject
325 "t" mh-narrow-to-to
326 "w" mh-widen)
327
328(gnus-define-keys (mh-extract-map "X" mh-folder-mode-map)
329 "?" mh-prefix-help
330 "s" mh-store-msg ;shar
331 "u" mh-store-msg) ;uuencode
332
333(gnus-define-keys (mh-digest-map "D" mh-folder-mode-map)
334 " " mh-page-digest
335 "?" mh-prefix-help
336 "\177" mh-page-digest-backwards
337 "b" mh-burst-digest)
338
339(gnus-define-keys (mh-mime-map "K" mh-folder-mode-map)
340 "?" mh-prefix-help
341 "a" mh-mime-save-parts
342 "e" mh-display-with-external-viewer
343 "i" mh-folder-inline-mime-part
344 "o" mh-folder-save-mime-part
345 "t" mh-toggle-mime-buttons
346 "v" mh-folder-toggle-mime-part
347 "\t" mh-next-button
348 [backtab] mh-prev-button
349 "\M-\t" mh-prev-button)
350
351(cond
a3269bc4 352 ((featurep 'xemacs)
dda00b2c
BW
353 (define-key mh-folder-mode-map [button2] 'mh-show-mouse))
354 (t
355 (define-key mh-folder-mode-map [mouse-2] 'mh-show-mouse)))
356
357;; "C-c /" prefix is used in mh-folder-mode by pgp.el and mailcrypt
358
359\f
360
361;;; MH-Folder Help Messages
362
363;; If you add a new prefix, add appropriate text to the nil key.
364
365;; In general, messages are grouped logically. Taking the main commands for
366;; example, the first line is "ways to view messages," the second line is
367;; "things you can do with messages", and the third is "composing" messages.
368
369;; When adding a new prefix, ensure that the help message contains "what" the
370;; prefix is for. For example, if the word "folder" were not present in the
371;; "F" entry, it would not be clear what these commands operated upon.
372(defvar mh-folder-mode-help-messages
373 '((nil "[i]nc, [.]show, [,]show all, [n]ext, [p]revious,\n"
374 "[d]elete, [o]refile, e[x]ecute,\n"
375 "[s]end, [r]eply,\n"
376 "[;]toggle MIME decoding.\n"
377 "Prefix characters:\n [F]older, [S]equence, [J]unk, MIME [K]eys,"
378 "\n [T]hread, [/]limit, e[X]tract, [D]igest, [I]nc spools.")
379
380 (?F "[l]ist; [v]isit folder;\n"
381 "[n]ew messages; [']ticked messages; [s]earch;\n"
382 "[p]ack; [S]ort; [r]escan; [k]ill")
383 (?P "[p]rint message to [f]ile; old-style [l]pr printing;\n"
384 "Toggle printing of [C]olors, [F]aces")
385 (?S "[p]ut message in sequence, [n]arrow, [']narrow to ticked, [w]iden,\n"
386 "[s]equences, [l]ist,\n"
387 "[d]elete message from sequence, [k]ill sequence")
388 (?T "[t]oggle, [d]elete, [o]refile thread")
389 (?/ "Limit to [c]c, ran[g]e, fro[m], [s]ubject, [t]o; [w]iden")
390 (?X "un[s]har, [u]udecode message")
391 (?D "[b]urst digest")
4ab2f402
BW
392 (?K "[v]iew, [i]nline, with [e]xternal viewer; \n"
393 "[o]utput/save MIME part; save [a]ll parts; \n"
394 "[t]oggle buttons; [TAB] next; [SHIFT-TAB] previous")
dda00b2c
BW
395 (?J "[b]lacklist, [w]hitelist message"))
396 "Key binding cheat sheet.
397See `mh-set-help'.")
398
399\f
400
401;;; MH-Folder Font Lock
402
403(defvar mh-folder-font-lock-keywords
404 (list
405 ;; Folders when displaying index buffer
406 (list "^\\+.*"
407 '(0 'mh-search-folder))
408 ;; Marked for deletion
409 (list (concat mh-scan-deleted-msg-regexp ".*")
410 '(0 'mh-folder-deleted))
411 ;; Marked for refile
412 (list (concat mh-scan-refiled-msg-regexp ".*")
413 '(0 'mh-folder-refiled))
414 ;; After subject
415 (list mh-scan-body-regexp
416 '(1 'mh-folder-body nil t))
417 ;; Subject
418 '(mh-folder-font-lock-subject
419 (1 'mh-folder-followup append t)
420 (2 'mh-folder-subject append t))
421 ;; Current message number
422 (list mh-scan-cur-msg-number-regexp
423 '(1 'mh-folder-cur-msg-number))
424 ;; Message number
425 (list mh-scan-good-msg-regexp
426 '(1 'mh-folder-msg-number))
427 ;; Date
428 (list mh-scan-date-regexp
429 '(1 'mh-folder-date))
430 ;; Messages from me (To:)
431 (list mh-scan-rcpt-regexp
432 '(1 'mh-folder-to)
433 '(2 'mh-folder-address))
434 ;; Messages to me
435 (list mh-scan-sent-to-me-sender-regexp
436 '(1 'mh-folder-sent-to-me-hint)
437 '(2 'mh-folder-sent-to-me-sender)))
438 "Keywords (regular expressions) used to fontify the MH-Folder buffer.")
439
440(defun mh-folder-font-lock-subject (limit)
441 "Return MH-E scan subject strings to font-lock between point and LIMIT."
442 (if (not (re-search-forward mh-scan-subject-regexp limit t))
443 nil
444 (if (match-beginning 1)
445 (set-match-data (list (match-beginning 1) (match-end 3)
446 (match-beginning 1) (match-end 3) nil nil))
447 (set-match-data (list (match-beginning 3) (match-end 3)
448 nil nil (match-beginning 3) (match-end 3))))
449 t))
450
451;; Fontify unseen messages in bold.
452
453(defmacro mh-generate-sequence-font-lock (seq prefix face)
454 "Generate the appropriate code to fontify messages in SEQ.
455PREFIX is used to generate unique names for the variables and
456functions defined by the macro. So a different prefix should be
457provided for every invocation.
458FACE is the font-lock face used to display the matching scan lines."
459 (let ((cache (intern (format "mh-folder-%s-seq-cache" prefix)))
460 (func (intern (format "mh-folder-font-lock-%s" prefix))))
461 `(progn
462 (defvar ,cache nil
463 "Internal cache variable used for font-lock in MH-E.
464Should only be non-nil through font-lock stepping, and nil once
465font-lock is done highlighting.")
466 (make-variable-buffer-local ',cache)
467
468 (defun ,func (limit)
469 "Return unseen message lines to font-lock between point and LIMIT."
470 (if (not ,cache) (setq ,cache (mh-seq-msgs (mh-find-seq ,seq))))
471 (let ((cur-msg (mh-get-msg-num nil)))
472 (cond ((not ,cache)
473 nil)
474 ((>= (point) limit) ;Presumably at end of buffer
475 (setq ,cache nil)
476 nil)
477 ((member cur-msg ,cache)
478 (let ((bpoint (progn (beginning-of-line)(point)))
479 (epoint (progn (forward-line 1)(point))))
480 (if (<= limit (point)) (setq ,cache nil))
481 (set-match-data (list bpoint epoint bpoint epoint))
482 t))
483 (t
484 ;; move forward one line at a time, checking each message
485 (while (and (= 0 (forward-line 1))
486 (> limit (point))
487 (not (member (mh-get-msg-num nil) ,cache))))
488 ;; Examine how we must have exited the loop...
489 (let ((cur-msg (mh-get-msg-num nil)))
490 (cond ((or (<= limit (point))
491 (not (member cur-msg ,cache)))
492 (setq ,cache nil)
493 nil)
494 ((member cur-msg ,cache)
495 (let ((bpoint (progn (beginning-of-line) (point)))
496 (epoint (progn (forward-line 1) (point))))
497 (if (<= limit (point)) (setq ,cache nil))
498 (set-match-data
499 (list bpoint epoint bpoint epoint))
500 t))))))))
501
502 (setq mh-folder-font-lock-keywords
503 (append mh-folder-font-lock-keywords
504 (list (list ',func (list 1 '',face 'prepend t))))))))
505
506(mh-generate-sequence-font-lock mh-unseen-seq unseen bold)
507(mh-generate-sequence-font-lock mh-tick-seq tick mh-folder-tick)
508
509\f
510
511;;; MH-Folder Mode
512
513(defmacro mh-remove-xemacs-horizontal-scrollbar ()
514 "Get rid of the horizontal scrollbar that XEmacs insists on putting in."
a3269bc4 515 (when (featurep 'xemacs)
dda00b2c
BW
516 `(if (and (featurep 'scrollbar)
517 (fboundp 'set-specifier))
518 (set-specifier horizontal-scrollbar-visible-p nil
519 (cons (current-buffer) nil)))))
520
dda00b2c 521;; Register mh-folder-mode as supporting which-function-mode...
d5dc8c56 522(mh-require 'which-func nil t)
dda00b2c
BW
523(when (boundp 'which-func-modes)
524 (add-to-list 'which-func-modes 'mh-folder-mode))
525
526;; Shush compiler.
42f8c37f
BW
527(defvar desktop-save-buffer)
528(defvar font-lock-auto-fontify)
54a5db74
BW
529(mh-do-in-xemacs
530 (defvar font-lock-defaults))
dda00b2c 531
14acf2f5 532;; Ensure new buffers won't get this mode if default major-mode is nil.
dda00b2c
BW
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
540You can show the message the cursor is pointing to, and step through
541the messages. Messages can be marked for deletion or refiling into
542another folder; these commands are executed all at once with a
543separate command.
544
545Options that control this mode can be changed with
546\\[customize-group]; specify the \"mh\" group. In particular, please
547see the `mh-scan-format-file' option if you wish to modify scan's
548format.
549
550When a folder is visited, the hook `mh-folder-mode-hook' is run.
551
552Ranges
553======
554Many commands that operate on individual messages, such as
555`mh-forward' or `mh-refile-msg' take a RANGE argument. This argument
556can be used in several ways.
557
558If you provide the prefix argument (\\[universal-argument]) to
559these commands, then you will be prompted for the message range.
560This can be any valid MH range which can include messages,
561sequences, and the abbreviations (described in the mh(1) man
562page):
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
575first:N
576prev:N
577next:N
578last:N
579 The first, previous, next or last messages, if they exist.
580
581all
582 All of the messages.
583
584For example, a range that shows all of these things is `1 2 3
5855-10 last:5 unseen'.
586
587If the option `transient-mark-mode' is set to t and you set a
588region in the MH-Folder buffer, then the MH-E command will
589perform the operation on all messages in that region.
590
591\\{mh-folder-mode-map}"
592 (mh-do-in-gnu-emacs
d2464a9f
BW
593 (unless mh-folder-tool-bar-map
594 (mh-tool-bar-folder-buttons-init))
219d0838
GM
595 (if (boundp 'tool-bar-map)
596 (set (make-local-variable 'tool-bar-map) mh-folder-tool-bar-map)))
efc27af6
BW
597 (mh-do-in-xemacs
598 (mh-tool-bar-init :folder))
dda00b2c
BW
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)
06e7028b
BW
648 (mh-make-local-hook (mh-write-file-functions))
649 (add-hook (mh-write-file-functions) 'mh-execute-commands nil t)
dda00b2c
BW
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)
4f3a7d02 654 (add-to-list 'minor-mode-alist '(mh-showing-mode " Show"))
dda00b2c
BW
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)
dda00b2c 659 (mh-set-help mh-folder-mode-help-messages)
a3269bc4 660 (if (and (featurep 'xemacs)
dda00b2c
BW
661 font-lock-auto-fontify)
662 (turn-on-font-lock))) ; Force font-lock in XEmacs.
663
664\f
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
676To mark a message for deletion, use this command. A \"D\" is
677placed by the message in the scan window, and the next undeleted
678message is displayed. If the previous command had been
679\\[mh-previous-undeleted-msg], then the next message displayed is
680the first undeleted message previous to the message just deleted.
681Use \\[mh-next-undeleted-msg] to force subsequent
682\\[mh-delete-msg] commands to move forward to the next undeleted
683message after deleting the message under the cursor.
684
685The hook `mh-delete-msg-hook' is called after you mark a message
686for deletion. For example, a past maintainer of MH-E used this
687once when he kept statistics on his mail usage.
688
689Check the documentation of `mh-interactive-range' to see how
690RANGE 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
700This command marks the RANGE for deletion but leaves the cursor
701at the current message in case you wish to perform other
702operations on the message.
703
704Check the documentation of `mh-interactive-range' to see how
705RANGE 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
714If you've marked messages to be deleted or refiled and you want
715to go ahead and delete or refile the messages, use this command.
716Many MH-E commands that may affect the numbering of the
717messages (such as \\[mh-rescan-folder] or \\[mh-pack-folder])
718will ask if you want to process refiles or deletes first and then
719either run this command for you or undo the pending refiles and
798b73dd 720deletes.
dda00b2c
BW
721
722This function runs `mh-before-commands-processed-hook' before the
723commands are processed and `mh-after-commands-processed-hook'
724after 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
745You can enter the message NUMBER either before or after typing
746\\[mh-goto-msg]. In the latter case, Emacs prompts you.
747
748In a program, optional non-nil second argument NO-ERROR-IF-NO-MESSAGE
749means return nil instead of signaling an error if message does not
750exist\; in this case, the cursor is positioned near where the message
751would have been. Non-nil third argument DONT-SHOW means not to show
752the 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
772You can incorporate mail from any file into the current folder by
773specifying a prefix argument; you'll be prompted for the name of
774the FILE to use as well as the destination FOLDER
775
776The hook `mh-inc-folder-hook' is run after incorporating new
777mail.
778
779Do not call this function from outside MH-E; use \\[mh-rmail]
780instead."
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)))
a4963f79 798 (switch-to-buffer folder)
dda00b2c
BW
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
826There are times when you need to edit a message. For example, you
827may need to fix a broken Content-Type header field. You can do
828this with this command. It displays the raw message in an
829editable buffer. When you are done editing, save and kill the
830buffer as you would any other.
831
832From 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))
b5553d47
SM
843 (equal (with-current-buffer mh-show-buffer
844 buffer-file-name)
dda00b2c
BW
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)
a4963f79 858 (switch-to-buffer edit-buffer)))
dda00b2c
BW
859
860;;;###mh-autoload
861(defun mh-next-button (&optional backward-flag)
862 "Go to the next button.
863
864If the end of the buffer is reached then the search wraps over to
865the start of the buffer.
866
867If an optional prefix argument BACKWARD-FLAG is given, the cursor
868will 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
879This command can be given a prefix argument COUNT to specify how
880many unread messages to skip.
881
882In a program, pause for a second after printing message if we are
883at the last undeleted message and optional argument
884WAIT-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
899This command can be given a prefix argument COUNT to specify how
900many 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
934You can give this command a prefix argument that specifies the
935number of LINES to scroll. This command will also show the next
936undeleted 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
960If the beginning of the buffer is reached then the search wraps
961over 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
969You can give this command a prefix argument that specifies the
970number 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
979This command can be given a prefix argument COUNT to specify how
980many unread messages to skip.
981
982In a program, pause for a second after printing message if we are
983at the last undeleted message and optional argument
984WAIT-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
997This command can be given a prefix argument COUNT to specify how
998many 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
1032When you want to quit using MH-E and go back to editing, you can use
1033this command. This buries the buffers of the current MH-E folder and
1034restores the buffers that were present when you first ran
1035\\[mh-rmail]. It also removes any MH-E working buffers whose name
1036begins with \" *mh-\" or \"*MH-E \". You can later restore your MH-E
1037session by selecting the \"+inbox\" buffer or by running \\[mh-rmail]
1038again.
1039
1040The two hooks `mh-before-quit-hook' and `mh-quit-hook' are called by
1041this function. The former one is called before the quit occurs, so you
1042might use it to perform any MH-E operations; you could perform some
1043query and abort the quit or call `mh-execute-commands', for example.
1044The latter is not run in an MH-E context, so you might use it to
1045modify 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
1069You are prompted for the folder name. Note that this command can also
1070be used to create folders. If you specify a folder that does not
1071exist, you will be prompted to create it.
1072
1073The hook `mh-refile-msg-hook' is called after a message is marked to
1074be refiled.
1075
1076Check the documentation of `mh-interactive-range' to see how RANGE is
1077read in interactive use.
1078
1079In a program, the variables `mh-last-destination' and
1080`mh-last-destination-folder' are not updated if
1081DONT-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
1095If you are refiling several messages into the same folder, you
1096can use this command to repeat the last
1097refile (\\[mh-refile-msg]) or write (\\[mh-write-msg-to-file]).
1098You can use a range.
1099
1100Check the documentation of `mh-interactive-range' to see how RANGE is
1101read in interactive use.
1102
1103In a program, a non-nil INTERACTIVE-FLAG means that the function was
1104called 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
1120This command is useful to grab all messages in your \"+inbox\" after
1121processing your new mail for the first time. If you don't want to
1122rescan the entire folder, this command will accept a RANGE. Check the
1123documentation of `mh-interactive-range' to see how RANGE is read in
1124interactive use.
1125
1126This command will ask if you want to process refiles or deletes first
1127and then either run \\[mh-execute-commands] for you or undo the
798b73dd 1128pending refiles and deletes.
dda00b2c
BW
1129
1130In a program, the processing of outstanding commands is not performed
1131if 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
1157This command switches between MH-Folder mode and MH-Folder Show
1158mode. MH-Folder mode turns off the associated show buffer so that
1159you can perform operations on the messages quickly without
1160reading them. This is an excellent way to prune out your junk
1161mail or to refile a group of messages to another folder for later
1162examination."
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
1172If you've deleted a message or refiled it, but changed your mind,
1173you can cancel the action before you've executed it. Use this
1174command to undo a refile on or deletion of a single message. You
1175can also undo refiles and deletes for messages that are found in
1176a given RANGE.
1177
1178Check the documentation of `mh-interactive-range' to see how
1179RANGE 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
1206When you want to read the messages that you have refiled into folders,
1207use this command to visit the folder. You are prompted for the folder
1208name.
1209
1210The folder buffer will show just unseen messages if there are any;
1211otherwise, it will show all the messages in the buffer as long there
1212are fewer than `mh-large-folder' messages. If there are more, then you
1213are prompted for a range of messages to scan.
1214
1215You can provide a prefix argument in order to specify a RANGE of
1216messages to show when you visit the folder. In this case, regions are
1217not used to specify the range and `mh-large-folder' is ignored. Check
1218the documentation of `mh-interactive-range' to see how RANGE is read
1219in interactive use.
1220
1221Note that this command can also be used to create folders. If you
1222specify a folder that does not exist, you will be prompted to create
1223it.
1224
1225Do not call this function from outside MH-E; use \\[mh-rmail] instead.
1226
1227If, in a program, RANGE is nil (the default), then all messages in
1228FOLDER are displayed. If an index buffer is being created then
1229INDEX-DATA is used to initialize the index buffer specific data
1230structures."
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)
b5553d47
SM
1240 (when (get-buffer folder)
1241 (with-current-buffer folder
dda00b2c
BW
1242 (setq threaded-view-flag (memq 'unthread mh-view-ops))))
1243 (when index-data
1244 (mh-make-folder folder)
1245 (setq mh-index-data (car index-data)
1246 mh-index-msg-checksum-map (make-hash-table :test #'equal)
1247 mh-index-checksum-origin-map (make-hash-table :test #'equal))
1248 (mh-index-update-maps folder (cadr index-data))
1249 (mh-index-create-sequences))
1250 (mh-scan-folder folder (or range "all"))
1251 (cond ((and threaded-view-flag
1252 (save-excursion
1253 (goto-char (point-min))
1254 (or (null mh-large-folder)
1255 (not (equal (forward-line (1+ mh-large-folder)) 0))
1256 (and (message "Not threading since the number of messages exceeds `mh-large-folder'")
1257 nil))))
1258 (mh-toggle-threads))
1259 (mh-index-data
1260 (mh-index-insert-folder-headers)))
1261 (unless (eq current-buffer (current-buffer))
1262 (setq mh-previous-window-config config)))
1263 nil)
1264
1265;;;###mh-autoload
1266(defun mh-write-msg-to-file (message file no-header)
1267 "Append MESSAGE to end of FILE\\<mh-folder-mode-map>.
1268
1269You are prompted for the filename. If the file already exists,
1270the message is appended to it. You can also write the message to
1271the file without the header by specifying a prefix argument
1272NO-HEADER. Subsequent writes to the same file can be made with
1273the command \\[mh-refile-or-write-again]."
1274 (interactive
1275 (list (mh-get-msg-num t)
1276 (let ((default-dir (if (eq 'write (car mh-last-destination-write))
1277 (file-name-directory
1278 (car (cdr mh-last-destination-write)))
1279 default-directory)))
1280 (read-file-name (format "Save message%s in file: "
1281 (if current-prefix-arg " body" ""))
1282 default-dir
1283 (if (eq 'write (car mh-last-destination-write))
1284 (car (cdr mh-last-destination-write))
1285 (expand-file-name "mail.out" default-dir))))
1286 current-prefix-arg))
1287 (let ((msg-file-to-output (mh-msg-filename message))
1288 (output-file (mh-expand-file-name file)))
1289 (setq mh-last-destination (list 'write file (if no-header 'no-header))
1290 mh-last-destination-write mh-last-destination)
b5553d47 1291 (with-current-buffer (get-buffer-create mh-temp-buffer)
dda00b2c
BW
1292 (erase-buffer)
1293 (insert-file-contents msg-file-to-output)
1294 (goto-char (point-min))
1295 (if no-header (search-forward "\n\n"))
1296 (append-to-file (point) (point-max) output-file))))
1297
1298;;;###mh-autoload
1299(defun mh-update-sequences ()
1300 "Flush MH-E's state out to MH.
1301
1302This function updates the sequence specified by your
1303\"Unseen-Sequence:\" profile component, \"cur\", and the sequence
1304listed by the `mh-tick-seq' option which is \"tick\" by default.
1305The message at the cursor is used for \"cur\"."
1306 (interactive)
1307 ;; mh-update-sequences is the opposite of mh-read-folder-sequences,
1308 ;; which updates MH-E's state from MH.
1309 (let ((folder-set (mh-update-unseen))
1310 (new-cur (mh-get-msg-num nil)))
1311 (if new-cur
1312 (let ((seq-entry (mh-find-seq 'cur)))
1313 (mh-remove-cur-notation)
1314 (setcdr seq-entry
1315 (list new-cur)) ;delete-seq-locally, add-msgs-to-seq
1316 (mh-define-sequence 'cur (list new-cur))
1317 (beginning-of-line)
1318 (if (looking-at mh-scan-good-msg-regexp)
1319 (mh-notate-cur)))
1320 (or folder-set
1321 (save-excursion
1322 ;; psg - mh-current-folder is nil if mh-summary-height < 4 !
1323 ;; So I added this sanity check.
1324 (if (stringp mh-current-folder)
1325 (mh-exec-cmd-quiet t "folder" mh-current-folder "-fast")
1326 (mh-exec-cmd-quiet t "folder" "-fast")))))))
1327
1328\f
1329
1330;;; Support Routines
1331
1332(defun mh-get-new-mail (maildrop-name)
1333 "Read new mail from MAILDROP-NAME into the current buffer.
1334Return in the current buffer."
1335 (let ((point-before-inc (point))
1336 (folder mh-current-folder)
1337 (new-mail-flag nil))
1338 (with-mh-folder-updating (t)
1339 (if maildrop-name
1340 (message "inc %s -file %s..." folder maildrop-name)
1341 (message "inc %s..." folder))
1342 (setq mh-next-direction 'forward)
1343 (goto-char (point-max))
1344 (mh-remove-cur-notation)
1345 (let ((start-of-inc (point)))
1346 (if maildrop-name
1347 ;; I think MH 5 used "-ms-file" instead of "-file",
1348 ;; which would make inc'ing from maildrops fail.
1349 (mh-exec-cmd-output mh-inc-prog nil folder
1350 (mh-scan-format)
1351 "-file" (expand-file-name maildrop-name)
1352 "-width" (window-width)
1353 "-truncate")
1354 (mh-exec-cmd-output mh-inc-prog nil
1355 (mh-scan-format)
1356 "-width" (window-width)))
1357 (if maildrop-name
1358 (message "inc %s -file %s...done" folder maildrop-name)
1359 (message "inc %s...done" folder))
1360 (goto-char start-of-inc)
1361 (cond ((save-excursion
1362 (re-search-forward "^inc: no mail" nil t))
1363 (message "No new mail%s%s" (if maildrop-name " in " "")
1364 (if maildrop-name maildrop-name "")))
1365 ((and (when mh-folder-view-stack
1366 (let ((saved-text (buffer-substring-no-properties
1367 start-of-inc (point-max))))
1368 (delete-region start-of-inc (point-max))
1369 (unwind-protect (mh-widen t)
1370 (mh-remove-cur-notation)
1371 (goto-char (point-max))
1372 (setq start-of-inc (point))
1373 (insert saved-text)
1374 (goto-char start-of-inc))))
1375 nil))
1376 ((re-search-forward "^inc:" nil t) ; Error messages
1377 (error "Error incorporating mail"))
1378 ((and
1379 (equal mh-scan-format-file t)
1380 mh-adaptive-cmd-note-flag
1381 ;; Have we reached an edge condition?
1382 (save-excursion
1383 (re-search-forward mh-scan-msg-overflow-regexp nil 0 1))
1384 (setq start-of-inc (mh-generate-new-cmd-note folder))
1385 nil))
1386 (t
1387 (setq new-mail-flag t)))
1388 (keep-lines mh-scan-valid-regexp) ; Flush random scan lines
1389 (let* ((sequences (mh-read-folder-sequences folder t))
1390 (new-cur (assoc 'cur sequences))
1391 (new-unseen (assoc mh-unseen-seq sequences)))
1392 (unless (assoc 'cur mh-seq-list)
1393 (push (list 'cur) mh-seq-list))
1394 (unless (assoc mh-unseen-seq mh-seq-list)
1395 (push (list mh-unseen-seq) mh-seq-list))
1396 (setcdr (assoc 'cur mh-seq-list) (cdr new-cur))
1397 (setcdr (assoc mh-unseen-seq mh-seq-list) (cdr new-unseen)))
1398 (when (equal (point-max) start-of-inc)
1399 (mh-notate-cur))
1400 (if new-mail-flag
1401 (progn
1402 (mh-make-folder-mode-line)
1403 (when (mh-speed-flists-active-p)
1404 (mh-speed-flists t mh-current-folder))
1405 (when (memq 'unthread mh-view-ops)
1406 (mh-thread-inc folder start-of-inc))
1407 (mh-goto-cur-msg))
1408 (goto-char point-before-inc))
1409 (mh-notate-user-sequences (cons start-of-inc (point-max)))))))
1410
1411(defun mh-generate-new-cmd-note (folder)
1412 "Fix the `mh-cmd-note' value for this FOLDER.
1413
1414After doing an `mh-get-new-mail' operation in this FOLDER, at least
1415one line that looks like a truncated message number was found.
1416
1417Remove the text added by the last `mh-inc' command. It should be the
1418messages cur-last. Call `mh-set-cmd-note', adjusting the notation
1419column with the width of the largest message number in FOLDER.
1420
1421Reformat the message number width on each line in the buffer and trim
1422the line length to fit in the window.
1423
1424Rescan the FOLDER in the range cur-last in order to display the
1425messages that were removed earlier. They should all fit in the scan
1426line now with no message truncation."
1427 (save-excursion
1428 (let ((maxcol (1- (window-width)))
1429 (old-cmd-note mh-cmd-note)
1430 mh-cmd-note-fmt
1431 msgnum)
1432 ;; Nuke all of the lines just added by the last inc
1433 (delete-char (- (point-max) (point)))
1434 ;; Update the current buffer to reflect the new mh-cmd-note
1435 ;; value needed to display messages.
1436 (mh-set-cmd-note (mh-msg-num-width-to-column (mh-msg-num-width folder)))
1437 (setq mh-cmd-note-fmt (concat "%" (format "%d" mh-cmd-note) "d"))
1438 ;; Cleanup the messages that are in the buffer right now
1439 (goto-char (point-min))
1440 (cond ((memq 'unthread mh-view-ops)
1441 (mh-thread-add-spaces (- mh-cmd-note old-cmd-note)))
1442 (t (while (re-search-forward (mh-scan-msg-number-regexp) nil 0 1)
1443 ;; reformat the number to fix in mh-cmd-note columns
1444 (setq msgnum (string-to-number
1445 (buffer-substring
1446 (match-beginning 1) (match-end 1))))
1447 (replace-match (format mh-cmd-note-fmt msgnum))
1448 ;; trim the line to fix in the window
1449 (end-of-line)
1450 (let ((eol (point)))
1451 (move-to-column maxcol)
1452 (if (<= (point) eol)
1453 (delete-char (- eol (point))))))))
1454 ;; now re-read the lost messages
1455 (goto-char (point-max))
1456 (prog1 (point)
1457 (mh-regenerate-headers "cur-last" t)))))
1458
1459;;;###mh-autoload
1460(defun mh-goto-cur-msg (&optional minimal-changes-flag)
1461 "Position the cursor at the current message.
1462When optional argument MINIMAL-CHANGES-FLAG is non-nil, the
1463function doesn't recenter the folder buffer."
1464 (let ((cur-msg (car (mh-seq-to-msgs 'cur))))
1465 (cond ((and cur-msg
1466 (mh-goto-msg cur-msg t t))
1467 (unless minimal-changes-flag
1468 (mh-notate-cur)
1469 (mh-recenter 0)
1470 (mh-maybe-show cur-msg)))
1471 (t
1472 (setq overlay-arrow-position nil)
1473 (message "No current message")))))
1474
1475;;;###mh-autoload
1476(defun mh-recenter (arg)
1477 "Like recenter but with three improvements:
1478
1479- At the end of the buffer it tries to show fewer empty lines.
1480
1481- operates only if the current buffer is in the selected window.
1482 (Commands like `save-some-buffers' can make this false.)
1483
1484- nil ARG means recenter as if prefix argument had been given."
1485 (cond ((not (eq (get-buffer-window (current-buffer)) (selected-window)))
1486 nil)
1487 ((= (point-max) (save-excursion
1488 (forward-line (- (/ (window-height) 2) 2))
1489 (point)))
1490 (let ((lines-from-end 2))
1491 (save-excursion
1492 (while (> (point-max) (progn (forward-line) (point)))
1493 (incf lines-from-end)))
1494 (recenter (- lines-from-end))))
1495 ;; '(4) is the same as C-u prefix argument.
1496 (t (recenter (or arg '(4))))))
1497
1498(defun mh-update-unseen ()
1499 "Synchronize the unseen sequence with MH.
df26688b 1500Return non-nil if the MH folder was set.
dda00b2c
BW
1501The hook `mh-unseen-updated-hook' is called after the unseen sequence
1502is updated."
1503 (if mh-seen-list
1504 (let* ((unseen-seq (mh-find-seq mh-unseen-seq))
1505 (unseen-msgs (mh-seq-msgs unseen-seq)))
1506 (if unseen-msgs
1507 (progn
1508 (mh-undefine-sequence mh-unseen-seq mh-seen-list)
1509 (run-hooks 'mh-unseen-updated-hook)
1510 (while mh-seen-list
1511 (setq unseen-msgs (delq (car mh-seen-list) unseen-msgs))
1512 (setq mh-seen-list (cdr mh-seen-list)))
1513 (setcdr unseen-seq unseen-msgs)
1514 t) ;since we set the folder
1515 (setq mh-seen-list nil)))))
1516
1517;;;###mh-autoload
1518(defun mh-outstanding-commands-p ()
1519 "Return non-nil if there are outstanding deletes or refiles."
1520 (save-excursion
1521 (when (eq major-mode 'mh-show-mode)
1522 (set-buffer mh-show-folder-buffer))
1523 (or mh-delete-list mh-refile-list)))
1524
1525;;;###mh-autoload
1526(defun mh-set-folder-modified-p (flag)
1527 "Mark current folder as modified or unmodified according to FLAG."
1528 (set-buffer-modified-p flag))
1529
1530(defun mh-process-commands (folder)
1531 "Process outstanding commands for FOLDER.
1532
1533This function runs `mh-before-commands-processed-hook' before the
1534commands are processed and `mh-after-commands-processed-hook'
1535after the commands are processed."
1536 (message "Processing deletes and refiles for %s..." folder)
1537 (set-buffer folder)
1538 (with-mh-folder-updating (nil)
1539 ;; Run the before hook -- the refile and delete lists are still valid
1540 (run-hooks 'mh-before-commands-processed-hook)
1541
1542 ;; Update the unseen sequence if it exists
1543 (mh-update-unseen)
1544
1545 (let ((redraw-needed-flag mh-index-data)
1546 (folders-changed (list mh-current-folder))
1547 (seq-map (and mh-refile-list mh-refile-preserves-sequences-flag
1548 (mh-create-sequence-map mh-seq-list)))
1549 (dest-map (and mh-refile-list mh-refile-preserves-sequences-flag
1550 (make-hash-table))))
1551 ;; Remove invalid scan lines if we are in an index folder and then remove
1552 ;; the real messages
1553 (when mh-index-data
1554 (mh-index-delete-folder-headers)
1555 (setq folders-changed
1556 (append folders-changed (mh-index-execute-commands))))
1557
1558 ;; Then refile messages
1559 (mh-mapc #'(lambda (folder-msg-list)
1560 (let* ((dest-folder (symbol-name (car folder-msg-list)))
1561 (last (car (mh-translate-range dest-folder "last")))
1562 (msgs (cdr folder-msg-list)))
1563 (push dest-folder folders-changed)
1564 (setq redraw-needed-flag t)
1565 (apply #'mh-exec-cmd
1566 "refile" "-src" folder dest-folder
1567 (mh-coalesce-msg-list msgs))
1568 (mh-delete-scan-msgs msgs)
1569 ;; Preserve sequences in destination folder...
1570 (when mh-refile-preserves-sequences-flag
1571 (clrhash dest-map)
1572 (loop for i from (1+ (or last 0))
1573 for msg in (sort (copy-sequence msgs) #'<)
1574 do (loop for seq-name in (gethash msg seq-map)
1575 do (push i (gethash seq-name dest-map))))
1576 (maphash
1577 #'(lambda (seq msgs)
1578 ;; Can't be run in the background, since the
1579 ;; current folder is changed by mark this could
1580 ;; lead to a race condition with the next refile.
1581 (apply #'mh-exec-cmd "mark"
1582 "-sequence" (symbol-name seq) dest-folder
1583 "-add" (mapcar #'(lambda (x) (format "%s" x))
1584 (mh-coalesce-msg-list msgs))))
1585 dest-map))))
1586 mh-refile-list)
1587 (setq mh-refile-list ())
1588
1589 ;; Now delete messages
1590 (cond (mh-delete-list
1591 (setq redraw-needed-flag t)
1592 (apply 'mh-exec-cmd "rmm" folder
1593 (mh-coalesce-msg-list mh-delete-list))
1594 (mh-delete-scan-msgs mh-delete-list)
1595 (setq mh-delete-list nil)))
1596
1597 ;; Don't need to remove sequences since delete and refile do so.
1598 ;; Mark cur message
1599 (if (> (buffer-size) 0)
1600 (mh-define-sequence 'cur (list (or (mh-get-msg-num nil) "last"))))
1601
1602 ;; Redraw folder buffer if needed
1603 (when (and redraw-needed-flag)
1604 (when (mh-speed-flists-active-p)
1605 (apply #'mh-speed-flists t folders-changed))
1606 (cond ((memq 'unthread mh-view-ops) (mh-thread-inc folder (point-max)))
1607 (mh-index-data (mh-index-insert-folder-headers))))
1608
1609 (and (buffer-file-name (get-buffer mh-show-buffer))
1610 (not (file-exists-p (buffer-file-name (get-buffer mh-show-buffer))))
1611 ;; If "inc" were to put a new msg in this file,
1612 ;; we would not notice, so mark it invalid now.
1613 (mh-invalidate-show-buffer))
1614
1615 (setq mh-seq-list (mh-read-folder-sequences mh-current-folder nil))
1616 (mh-remove-all-notation)
1617 (mh-notate-user-sequences)
1618
1619 ;; Run the after hook -- now folders-changed is valid,
1620 ;; but not the lists of specific messages.
1621 (let ((mh-folders-changed folders-changed))
1622 (run-hooks 'mh-after-commands-processed-hook)))
1623
1624 (message "Processing deletes and refiles for %s...done" folder)))
1625
1626(defun mh-delete-scan-msgs (msgs)
1627 "Delete the scan listing lines for MSGS."
1628 (save-excursion
1629 (while msgs
1630 (when (mh-goto-msg (car msgs) t t)
1631 (when (memq 'unthread mh-view-ops)
1632 (mh-thread-forget-message (car msgs)))
1633 (mh-delete-line 1))
1634 (setq msgs (cdr msgs)))))
1635
1636(defun mh-set-scan-mode ()
1637 "Display the scan listing buffer, but do not show a message."
1638 (if (get-buffer mh-show-buffer)
1639 (delete-windows-on mh-show-buffer))
1640 (mh-showing-mode 0)
1641 (force-mode-line-update)
1642 (if mh-recenter-summary-flag
1643 (mh-recenter nil)))
1644
1645;;;###mh-autoload
1646(defun mh-make-folder-mode-line (&optional ignored)
1647 "Set the fields of the mode line for a folder buffer.
1648The optional argument is now obsolete and IGNORED. It used to be
1649used to pass in what is now stored in the buffer-local variable
1650`mh-mode-line-annotation'."
1651 (save-excursion
1652 (save-window-excursion
1653 (mh-first-msg)
1654 (let ((new-first-msg-num (mh-get-msg-num nil)))
1655 (when (or (not (memq 'unthread mh-view-ops))
1656 (null mh-first-msg-num)
1657 (null new-first-msg-num)
1658 (< new-first-msg-num mh-first-msg-num))
1659 (setq mh-first-msg-num new-first-msg-num)))
1660 (mh-last-msg)
1661 (let ((new-last-msg-num (mh-get-msg-num nil)))
1662 (when (or (not (memq 'unthread mh-view-ops))
1663 (null mh-last-msg-num)
1664 (null new-last-msg-num)
1665 (> new-last-msg-num mh-last-msg-num))
1666 (setq mh-last-msg-num new-last-msg-num)))
1667 (setq mh-msg-count (if mh-first-msg-num
1668 (count-lines (point-min) (point-max))
1669 0))
1670 (setq mode-line-buffer-identification
1671 (list (format " {%%b%s} %s msg%s"
1672 (if mh-mode-line-annotation
1673 (format "/%s" mh-mode-line-annotation)
1674 "")
1675 (if (zerop mh-msg-count)
1676 "no"
1677 (format "%d" mh-msg-count))
1678 (if (zerop mh-msg-count)
1679 "s"
1680 (cond ((> mh-msg-count 1)
1681 (format "s (%d-%d)" mh-first-msg-num
1682 mh-last-msg-num))
1683 (mh-first-msg-num
1684 (format " (%d)" mh-first-msg-num))
1685 (""))))))
1686 (mh-logo-display))))
1687
1688;;;###mh-autoload
1689(defun mh-scan-folder (folder range &optional dont-exec-pending)
1690 "Scan FOLDER over RANGE.
1691
1692After the scan is performed, switch to the buffer associated with
1693FOLDER.
1694
1695Check the documentation of `mh-interactive-range' to see how RANGE is
1696read in interactive use.
1697
1698The processing of outstanding commands is not performed if
1699DONT-EXEC-PENDING is non-nil."
1700 (when (stringp range)
1701 (setq range (delete "" (split-string range "[ \t\n]"))))
1702 (cond ((null (get-buffer folder))
1703 (mh-make-folder folder))
1704 (t
1705 (unless dont-exec-pending
1706 (mh-process-or-undo-commands folder)
1707 (mh-reset-threads-and-narrowing))
a4963f79 1708 (switch-to-buffer folder)))
dda00b2c
BW
1709 (mh-regenerate-headers range)
1710 (if (zerop (buffer-size))
1711 (if (equal range "all")
1712 (message "Folder %s is empty" folder)
1713 (message "No messages in %s, range %s" folder range))
1714 (mh-goto-cur-msg))
1715 (when (mh-outstanding-commands-p)
1716 (mh-notate-deleted-and-refiled)))
1717
1718;;;###mh-autoload
1719(defun mh-process-or-undo-commands (folder)
1720 "If FOLDER has outstanding commands, then either process or discard them.
1721Called by functions like `mh-sort-folder', so also invalidate
1722show buffer."
1723 (set-buffer folder)
1724 (if (mh-outstanding-commands-p)
1725 (if (or mh-do-not-confirm-flag
1726 (y-or-n-p
1727 "Process outstanding deletes and refiles? "))
1728 (mh-process-commands folder)
1729 (set-buffer folder)
1730 (mh-undo-folder)))
1731 (mh-update-unseen)
1732 (mh-invalidate-show-buffer))
1733
1734;;;###mh-autoload
1735(defun mh-regenerate-headers (range &optional update)
1736 "Scan folder over RANGE.
1737If UPDATE, append the scan lines, otherwise replace."
1738 (let ((folder mh-current-folder)
1739 (range (if (and range (atom range)) (list range) range))
1740 scan-start)
1741 (message "Scanning %s..." folder)
1742 (mh-remove-all-notation)
1743 (with-mh-folder-updating (nil)
1744 (if update
1745 (goto-char (point-max))
1746 (delete-region (point-min) (point-max))
1747 (if mh-adaptive-cmd-note-flag
1748 (mh-set-cmd-note (mh-msg-num-width-to-column (mh-msg-num-width
1749 folder)))))
1750 (setq scan-start (point))
1751 (apply #'mh-exec-cmd-output
1752 mh-scan-prog nil
1753 (mh-scan-format)
1754 "-noclear" "-noheader"
1755 "-width" (window-width)
1756 folder range)
1757 (goto-char scan-start)
1758 (cond ((looking-at "scan: no messages in")
1759 (keep-lines mh-scan-valid-regexp)) ; Flush random scan lines
ad481791 1760 ((looking-at (if (mh-variant-p 'gnu-mh)
dda00b2c
BW
1761 "scan: message set .* does not exist"
1762 "scan: bad message list "))
1763 (keep-lines mh-scan-valid-regexp))
1764 ((looking-at "scan: ")) ; Keep error messages
1765 (t
1766 (keep-lines mh-scan-valid-regexp))) ; Flush random scan lines
1767 (setq mh-seq-list (mh-read-folder-sequences folder nil))
1768 (mh-notate-user-sequences)
1769 (or update
1770 (setq mh-mode-line-annotation
1771 (if (equal range '("all"))
1772 nil
1773 mh-partial-folder-mode-line-annotation)))
1774 (mh-make-folder-mode-line))
1775 (message "Scanning %s...done" folder)))
1776
1777;;;###mh-autoload
1778(defun mh-reset-threads-and-narrowing ()
1779 "Reset all variables pertaining to threads and narrowing.
1780Also removes all content from the folder buffer."
1781 (setq mh-view-ops ())
1782 (setq mh-folder-view-stack ())
1783 (setq mh-thread-scan-line-map-stack ())
1784 (let ((buffer-read-only nil)) (erase-buffer)))
1785
1786(defun mh-make-folder (name)
1787 "Create a new mail folder called NAME.
1788Make it the current folder."
a4963f79 1789 (switch-to-buffer name)
dda00b2c
BW
1790 (setq buffer-read-only nil)
1791 (erase-buffer)
1792 (if mh-adaptive-cmd-note-flag
1793 (mh-set-cmd-note (mh-msg-num-width-to-column (mh-msg-num-width name))))
1794 (setq buffer-read-only t)
1795 (mh-folder-mode)
1796 (mh-set-folder-modified-p nil)
1797 (setq buffer-file-name mh-folder-filename)
1798 (when (and (not mh-index-data)
1799 (file-exists-p (concat buffer-file-name mh-index-data-file)))
1800 (mh-index-read-data))
1801 (mh-make-folder-mode-line))
1802
1803;;;###mh-autoload
1804(defun mh-next-msg (&optional wait-after-complaining-flag)
1805 "Move backward or forward to the next undeleted message in the buffer.
1806If optional argument WAIT-AFTER-COMPLAINING-FLAG is non-nil and
1807we are at the last message, then wait for a second after telling
1808the user that there aren't any more unread messages."
1809 (if (eq mh-next-direction 'forward)
1810 (mh-next-undeleted-msg 1 wait-after-complaining-flag)
1811 (mh-previous-undeleted-msg 1 wait-after-complaining-flag)))
1812
1813;;;###mh-autoload
1814(defun mh-prompt-for-refile-folder ()
1815 "Prompt the user for a folder in which the message should be filed.
1816The folder is returned as a string.
1817
1818The default folder name is generated by the option
1819`mh-default-folder-for-message-function' if it is non-nil or
1820`mh-folder-from-address'."
1821 (mh-prompt-for-folder
1822 "Destination"
1823 (let ((refile-file (ignore-errors (mh-msg-filename (mh-get-msg-num t)))))
1824 (if (null refile-file) ""
b5553d47 1825 (with-current-buffer (get-buffer-create mh-temp-buffer)
dda00b2c
BW
1826 (erase-buffer)
1827 (insert-file-contents refile-file)
1828 (or (and mh-default-folder-for-message-function
1829 (let ((buffer-file-name refile-file))
1830 (funcall mh-default-folder-for-message-function)))
1831 (mh-folder-from-address)
1832 (and (eq 'refile (car mh-last-destination-folder))
1833 (symbol-name (cdr mh-last-destination-folder)))
1834 ""))))
1835 t))
1836
1837;;;###mh-autoload
1838(defun mh-folder-from-address ()
1839 "Derive folder name from sender.
1840
1841The name of the folder is derived as follows:
1842
1843 a) The folder name associated with the first address found in
1844 the list `mh-default-folder-list' is used. Each element in
1845 this list contains a \"Check Recipient\" item. If this item is
1846 turned on, then the address is checked against the recipient
1847 instead of the sender. This is useful for mailing lists.
1848
1849 b) An alias prefixed by `mh-default-folder-prefix'
1850 corresponding to the address is used. The prefix is used to
1851 prevent clutter in your mail directory.
1852
1853Return nil if a folder name was not derived, or if the variable
1854`mh-default-folder-must-exist-flag' is t and the folder does not
1855exist."
1856 ;; Loop for all entries in mh-default-folder-list
1857 (save-restriction
1858 (goto-char (point-min))
1859 (re-search-forward "\n\n" nil 'limit)
1860 (narrow-to-region (point-min) (point))
1861 (let ((to/cc (concat (or (message-fetch-field "to") "") ", "
1862 (or (message-fetch-field "cc") "")))
1863 (from (or (message-fetch-field "from") ""))
1864 folder-name)
1865 (setq folder-name
1866 (loop for list in mh-default-folder-list
1867 when (string-match (nth 0 list) (if (nth 2 list) to/cc from))
1868 return (nth 1 list)
1869 finally return nil))
1870
1871 ;; Make sure a result from `mh-default-folder-list' begins with "+"
1872 ;; since 'mh-expand-file-name below depends on it
1873 (when (and folder-name (not (eq (aref folder-name 0) ?+)))
1874 (setq folder-name (concat "+" folder-name)))
1875
1876 ;; If not, is there an alias for the address?
1877 (when (not folder-name)
1878 (let* ((from-header (mh-extract-from-header-value))
1879 (address (and from-header
1880 (nth 1 (mail-extract-address-components
1881 from-header))))
1882 (alias (and address (mh-alias-address-to-alias address))))
1883 (when alias
1884 (setq folder-name
1885 (and alias (concat "+" mh-default-folder-prefix alias))))))
1886
1887 ;; If mh-default-folder-must-exist-flag set, check that folder exists.
1888 (if (and folder-name
1889 (or (not mh-default-folder-must-exist-flag)
1890 (file-exists-p (mh-expand-file-name folder-name))))
1891 folder-name))))
1892
1893;;;###mh-autoload
1894(defun mh-delete-a-msg (message)
1895 "Delete MESSAGE.
1896If MESSAGE is nil then the message at point is deleted.
1897The hook `mh-delete-msg-hook' is called after you mark a message
1898for deletion. For example, a past maintainer of MH-E used this
1899once when he kept statistics on his mail usage."
1900 (save-excursion
1901 (if (numberp message)
1902 (mh-goto-msg message nil t)
1903 (beginning-of-line)
1904 (setq message (mh-get-msg-num t)))
1905 (if (looking-at mh-scan-refiled-msg-regexp)
1906 (error "Message %d is refiled; undo refile before deleting" message))
1907 (if (looking-at mh-scan-deleted-msg-regexp)
1908 nil
1909 (mh-set-folder-modified-p t)
1910 (setq mh-delete-list (cons message mh-delete-list))
1911 (mh-notate nil mh-note-deleted mh-cmd-note)
1912 (run-hooks 'mh-delete-msg-hook))))
1913
1914;;;###mh-autoload
1915(defun mh-refile-a-msg (message folder)
1916 "Refile MESSAGE in FOLDER.
1917If MESSAGE is nil then the message at point is refiled.
1918Folder is a symbol, not a string.
1919The hook `mh-refile-msg-hook' is called after a message is marked to
1920be refiled."
1921 (save-excursion
1922 (if (numberp message)
1923 (mh-goto-msg message nil t)
1924 (beginning-of-line)
1925 (setq message (mh-get-msg-num t)))
1926 (cond ((looking-at mh-scan-deleted-msg-regexp)
1927 (error "Message %d is deleted; undo delete before moving" message))
1928 ((looking-at mh-scan-refiled-msg-regexp)
1929 (if (y-or-n-p
1930 (format "Message %d already refiled; copy to %s as well? "
1931 message folder))
1932 (mh-exec-cmd "refile" (mh-get-msg-num t) "-link"
1933 "-src" mh-current-folder
1934 (symbol-name folder))
1935 (message "Message not copied")))
1936 (t
1937 (mh-set-folder-modified-p t)
1938 (cond ((null (assoc folder mh-refile-list))
1939 (push (list folder message) mh-refile-list))
1940 ((not (member message (cdr (assoc folder mh-refile-list))))
1941 (push message (cdr (assoc folder mh-refile-list)))))
1942 (mh-notate nil mh-note-refiled mh-cmd-note)
1943 (run-hooks 'mh-refile-msg-hook)))))
1944
1945(defun mh-undo-msg (msg)
1946 "Undo the deletion or refile of one MSG.
1947If MSG is nil then act on the message at point"
1948 (save-excursion
1949 (if (numberp msg)
1950 (mh-goto-msg msg t t)
1951 (beginning-of-line)
1952 (setq msg (mh-get-msg-num t)))
1953 (cond ((memq msg mh-delete-list)
1954 (setq mh-delete-list (delq msg mh-delete-list)))
1955 (t
1956 (dolist (folder-msg-list mh-refile-list)
1957 (setf (cdr folder-msg-list) (remove msg (cdr folder-msg-list))))
1958 (setq mh-refile-list (loop for x in mh-refile-list
1959 unless (null (cdr x)) collect x))))
1960 (mh-notate nil ? mh-cmd-note)))
1961
1962;;;###mh-autoload
1963(defun mh-msg-filename (msg &optional folder)
1964 "Return the file name of MSG in FOLDER (default current folder)."
1965 (expand-file-name (int-to-string msg)
1966 (if folder
1967 (mh-expand-file-name folder)
1968 mh-folder-filename)))
1969
1970(provide 'mh-folder)
1971
1972;; Local Variables:
1973;; indent-tabs-mode: nil
1974;; sentence-end-double-space: nil
1975;; End:
1976
1977;;; mh-folder.el ends here