annotate lisp/mh-e/mh-funcs.el @ 7:c153ca296910

Added tag r19-15b4 for changeset 27bc7f280385
author cvs
date Mon, 13 Aug 2007 08:47:16 +0200
parents 376386a54a3c
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; mh-funcs --- mh-e functions not everyone will use right away
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Time-stamp: <95/08/19 16:44:06 gildea>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Copyright (C) 1993, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; This file is part of mh-e, part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; along with GNU Emacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Internal support for mh-e package.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;; Putting these functions in a separate file lets mh-e start up faster,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; since less Lisp code needs to be loaded all at once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; Change Log:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; $Id: mh-funcs.el,v 1.1.1.1 1996/12/18 03:34:38 steve Exp $
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (provide 'mh-funcs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (require 'mh-e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;; customization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (defvar mh-sortm-args nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 "Extra arguments to have \\[mh-sort-folder] pass to the \"sortm\" command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 The arguments are passed to sortm if \\[mh-sort-folder] is given a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 prefix argument. Normally default arguments to sortm are specified in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 MH profile.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 For example, '(\"-nolimit\" \"-textfield\" \"subject\") is a useful setting.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (defvar mh-note-copied "C"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 "String whose first character is used to notate copied messages.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (defvar mh-note-printed "P"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 "String whose first character is used to notate printed messages.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;;; functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (defun mh-burst-digest ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 "Burst apart the current message, which should be a digest.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 The message is replaced by its table of contents and the messages from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 digest are inserted into the folder after that message."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (let ((digest (mh-get-msg-num t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (mh-process-or-undo-commands mh-current-folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (mh-set-folder-modified-p t) ; lock folder while bursting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (message "Bursting digest...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (mh-exec-cmd "burst" mh-current-folder digest "-inplace")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (with-mh-folder-updating (t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (delete-region (point) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (mh-regenerate-headers (format "%d-last" digest) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (mh-goto-cur-msg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (message "Bursting digest...done")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (defun mh-copy-msg (msg-or-seq folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 "Copy the specified MESSAGE(s) to another FOLDER without deleting them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Default is the displayed message. If optional prefix argument is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 provided, then prompt for the message sequence."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (interactive (list (if current-prefix-arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (mh-read-seq-default "Copy" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (mh-get-msg-num t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (mh-prompt-for-folder "Copy to" "" t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (mh-exec-cmd "refile" msg-or-seq "-link" "-src" mh-current-folder folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (if (numberp msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (mh-notate msg-or-seq mh-note-copied mh-cmd-note)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (mh-notate-seq msg-or-seq mh-note-copied mh-cmd-note)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (defun mh-kill-folder ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 "Remove the current folder."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (if (or mh-do-not-confirm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (yes-or-no-p (format "Remove folder %s? " mh-current-folder)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (let ((folder mh-current-folder))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (if (null mh-folder-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (mh-set-folder-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (mh-set-folder-modified-p t) ; lock folder to kill it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (mh-exec-cmd-daemon "rmf" folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (setq mh-folder-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (delq (assoc folder mh-folder-list) mh-folder-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (run-hooks 'mh-folder-list-change-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (message "Folder %s removed" folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (mh-set-folder-modified-p nil) ; so kill-buffer doesn't complain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (if (get-buffer mh-show-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (kill-buffer mh-show-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (kill-buffer folder))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (message "Folder not removed")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (defun mh-list-folders ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 "List mail folders."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (with-output-to-temp-buffer mh-temp-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (switch-to-buffer mh-temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (message "Listing folders...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (mh-exec-cmd-output "folders" t (if mh-recursive-folders
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 "-recurse"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 "-norecurse"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (message "Listing folders...done"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (defun mh-pack-folder (range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 "Renumber the messages of a folder to be 1..n.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 First, offer to execute any outstanding commands for the current folder.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 If optional prefix argument provided, prompt for the RANGE of messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 to display after packing. Otherwise, show the entire folder."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (interactive (list (if current-prefix-arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (mh-read-msg-range
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 "Range to scan after packing [all]? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 "all")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (mh-pack-folder-1 range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (mh-goto-cur-msg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (message "Packing folder...done"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (defun mh-pack-folder-1 (range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ;; Close and pack the current folder.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (mh-process-or-undo-commands mh-current-folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (message "Packing folder...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (mh-set-folder-modified-p t) ; lock folder while packing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (mh-exec-cmd-quiet t "folder" mh-current-folder "-pack"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 "-norecurse" "-fast"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (mh-regenerate-headers range))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (defun mh-pipe-msg (command include-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 "Pipe the current message through the given shell COMMAND.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 If INCLUDE-HEADERS (prefix argument) is provided, send the entire message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Otherwise just send the message's body without the headers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (list (read-string "Shell command on message: ") current-prefix-arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (let ((msg-file-to-pipe (mh-msg-filename (mh-get-msg-num t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (message-directory default-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (set-buffer (get-buffer-create mh-temp-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (insert-file-contents msg-file-to-pipe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (if (not include-headers) (search-forward "\n\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (let ((default-directory message-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (shell-command-on-region (point) (point-max) command nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (defun mh-page-digest ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 "Advance displayed message to next digested message."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (mh-in-show-buffer (mh-show-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ;; Go to top of screen (in case user moved point).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (move-to-window-line 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (let ((case-fold-search nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 ;; Search for blank line and then for From:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (or (and (search-forward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (re-search-forward "^From:" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (error "No more messages in digest")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ;; Go back to previous blank line, then forward to the first non-blank.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (search-backward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (forward-line 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (mh-recenter 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (defun mh-page-digest-backwards ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 "Back up displayed message to previous digested message."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (mh-in-show-buffer (mh-show-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ;; Go to top of screen (in case user moved point).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (move-to-window-line 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (let ((case-fold-search nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (or (and (search-backward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (re-search-backward "^From:" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (error "No previous message in digest")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 ;; Go back to previous blank line, then forward to the first non-blank.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (if (search-backward "\n\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (forward-line 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (mh-recenter 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (defun mh-print-msg (msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 "Print MESSAGE(s) (default: displayed message) on printer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 If optional prefix argument provided, then prompt for the message sequence.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 The variable mh-lpr-command-format is used to generate the print command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 The messages are formatted by mhl. See the variable mhl-formfile."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (interactive (list (if current-prefix-arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (reverse (mh-seq-to-msgs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (mh-read-seq-default "Print" t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (mh-get-msg-num t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (if (numberp msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (message "Printing message...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (message "Printing sequence..."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (let ((print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (if (numberp msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (format "%s -nobell -clear %s %s | %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (expand-file-name "mhl" mh-lib)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (mh-msg-filename msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (if (stringp mhl-formfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (format "-form %s" mhl-formfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (format mh-lpr-command-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (if (numberp msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (format "%s/%d" mh-current-folder
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (format "Sequence from %s" mh-current-folder))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (format "(scan -clear %s ; %s -nobell -clear %s %s) | %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (mapconcat (function (lambda (msg) msg)) msg-or-seq " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (expand-file-name "mhl" mh-lib)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (if (stringp mhl-formfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (format "-form %s" mhl-formfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (mh-msg-filenames msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (format mh-lpr-command-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (if (numberp msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (format "%s/%d" mh-current-folder
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (format "Sequence from %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 mh-current-folder)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (if mh-print-background
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (mh-exec-cmd-daemon shell-file-name "-c" print-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (call-process shell-file-name nil nil nil "-c" print-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (if (numberp msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (mh-notate msg-or-seq mh-note-printed mh-cmd-note)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (mh-notate-seq msg-or-seq mh-note-printed mh-cmd-note))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (mh-add-msgs-to-seq msg-or-seq 'printed t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (if (numberp msg-or-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (message "Printing message...done")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (message "Printing sequence...done"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (defun mh-msg-filenames (msgs &optional folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ;; Return a list of file names for MSGS in FOLDER (default current folder).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (mapconcat (function (lambda (msg) (mh-msg-filename msg folder))) msgs " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (defun mh-sort-folder (&optional extra-args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 "Sort the messages in the current folder by date.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 Calls the MH program sortm to do the work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 The arguments in the list mh-sortm-args are passed to sortm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 if this function is passed an argument."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (mh-process-or-undo-commands mh-current-folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (setq mh-next-direction 'forward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (mh-set-folder-modified-p t) ; lock folder while sorting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (message "Sorting folder...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (mh-exec-cmd "sortm" mh-current-folder (if extra-args mh-sortm-args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (message "Sorting folder...done")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (mh-scan-folder mh-current-folder "all"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (defun mh-undo-folder (&rest ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 "Undo all pending deletes and refiles in current folder."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (cond ((or mh-do-not-confirm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (yes-or-no-p "Undo all commands in folder? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (setq mh-delete-list nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 mh-refile-list nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 mh-seq-list nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 mh-next-direction 'forward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (with-mh-folder-updating (nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (mh-unmark-all-headers t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (message "Commands not undone.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (sit-for 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (defun mh-store-msg (directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 "Store the file(s) contained in the current message into DIRECTORY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 The message can contain a shar file or uuencoded file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 Default directory is the last directory used, or initially the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 mh-store-default-directory or the current directory."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (interactive (list (let ((udir (or mh-store-default-directory default-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (read-file-name "Store message in directory: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 udir udir nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (let ((msg-file-to-store (mh-msg-filename (mh-get-msg-num t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (set-buffer (get-buffer-create mh-temp-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (insert-file-contents msg-file-to-store)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (mh-store-buffer directory))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (defun mh-store-buffer (directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 "Store the file(s) contained in the current buffer into DIRECTORY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 The buffer can contain a shar file or uuencoded file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 Default directory is the last directory used, or initially the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 `mh-store-default-directory' or the current directory."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (interactive (list (let ((udir (or mh-store-default-directory default-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (read-file-name "Store buffer in directory: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 udir udir nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (let ((store-directory (expand-file-name directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (sh-start (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (if (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 "^#![ \t]*/bin/sh\\|^#\\|^: " nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 ;; The "cut here" pattern was removed from above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 ;; because it seemed to hurt more than help.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 ;; But keep this to make it easier to put it back.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (if (looking-at "^[^a-z0-9\"]*cut here\\b")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (if (looking-at "^[#:]....+\n\\( ?\n\\)?end$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 nil ;most likely end of a uuencode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (point))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (log-buffer (get-buffer-create "*Store Output*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (command "sh")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (uudecode-filename "(unknown filename)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (if (not sh-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (if (re-search-forward "^begin [0-7]+ " nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (setq uudecode-filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (buffer-substring (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (progn (end-of-line) (point)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (set-buffer log-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (if (not (file-directory-p store-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (insert "mkdir " directory "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (call-process "mkdir" nil log-buffer t store-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (insert "cd " directory "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (setq mh-store-default-directory directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (if (not sh-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (setq command "uudecode")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (insert uudecode-filename " being uudecoded...\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (set-window-start (display-buffer log-buffer) 0) ;watch progress
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (let (value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (let ((default-directory (file-name-as-directory store-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 (setq value (call-process-region sh-start (point-max) command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 nil log-buffer t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (set-buffer log-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (mh-handle-process-error command value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (insert "\n(mh-store finished)\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353