1 ;;; mh-search --- MH-Search mode
3 ;; Copyright (C) 1993, 1995, 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Indexed search by Satyaki Das <satyaki@theforce.stanford.edu>
6 ;; Maintainer: Bill Wohler <wohler@newt.com>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Mode used to compose search criteria.
29 ;; (1) The following search engines are supported:
37 ;; (2) To use this package, you first have to build an index. Please
38 ;; read the documentation for `mh-search' to get started. That
39 ;; documentation will direct you to the specific instructions for
40 ;; your particular searcher.
52 (defvar mh-searcher nil
53 "Cached value of chosen search program.")
55 (defvar mh-search-function nil
56 "Function which executes the search program.")
58 (defvar mh-search-next-result-function nil
59 "Function to parse the next line of output.
60 Expected to return a list of three strings: name of the folder,
61 message number, and optionally the match.")
63 (defvar mh-search-regexp-builder nil
64 "Function used to construct search regexp.")
66 (defvar mh-index-folder
"+mhe-index"
67 "Folder that contains the folders resulting from the index searches.")
69 (defvar mh-flists-results-folder
"sequence"
70 "Subfolder for `mh-index-folder' where flists output is placed.")
72 (defvar mh-flists-sequence
)
74 (defvar mh-flists-called-flag nil
)
78 ;;; MH-Folder Commands
81 (defun mh-search (folder search-regexp
82 &optional redo-search-flag window-config
)
85 This command helps you find messages in your entire corpus of
86 mail. You can search for messages to or from a particular person
87 or about a particular subject. In fact, you can also search for
88 messages containing selected strings in any arbitrary header
89 field or any string found within the messages.
91 Out of the box, MH-E uses \"pick\" to find messages. With a
92 little extra effort, you can set an indexing program which
93 rewards you with extremely quick results. The drawback is that
94 sometimes the index does not contain the words you're looking
95 for. You can still use \"pick\" in these situations.
97 You are prompted for the FOLDER to search. This can be \"all\" to
98 search all folders. Note that the search works recursively on the
101 Next, an MH-Search buffer appears where you can enter search
102 criteria SEARCH-REGEXP.
111 Edit this template by entering your search criteria in an
112 appropriate header field that is already there, or create a new
113 field yourself. If the string you're looking for could be
114 anywhere in a message, then place the string underneath the row
117 As an example, let's say that we want to find messages from
118 Ginnean about horseback riding in the Kosciusko National
119 Park (Australia) during January, 1994. Normally we would start
120 with a broad search and narrow it down if necessary to produce a
121 manageable amount of data, but we'll cut to the chase and create
122 a fairly restrictive set of criteria as follows:\\<mh-search-mode-map>
133 As with MH-Letter mode, MH-Search provides commands like
134 \\[mh-to-field] to help you fill in the blanks.\\<mh-folder-mode-map>
136 If you find that you do the same thing over and over when editing
137 the search template, you may wish to bind some shortcuts to keys.
138 This can be done with the variable `mh-search-mode-hook', which is
139 called when \\[mh-search] is run on a new pattern.\\<mh-search-mode-map>
141 To perform the search, type \\[mh-index-do-search].
143 Sometimes you're searching for text that is either not indexed,
144 or hasn't been indexed yet. In this case you can override the
145 default method with the pick method by running the command
146 \\[mh-pick-do-search].
148 The messages that are found are put in a temporary sub-folder of
149 \"+mhe-index\" and are displayed in an MH-Folder buffer. This
150 buffer is special because it displays messages from multiple
151 folders; each set of messages from a given folder has a heading
152 with the folder name.\\<mh-folder-mode-map>
154 The appearance of the heading can be modified by customizing the
155 face `mh-search-folder'. You can jump back and forth between the
156 headings using the commands \\[mh-index-next-folder] and
157 \\[mh-index-previous-folder].
159 In addition, the command \\[mh-index-visit-folder] can be used to
160 visit the folder of the message at point. Initially, only the
161 messages that matched the search criteria are displayed in the
162 folder. While the temporary buffer has its own set of message
163 numbers, the actual messages numbers are shown in the visited
164 folder. Thus, the command \\[mh-index-visit-folder] is useful to
165 find the actual message number of an interesting message, or to
166 view surrounding messages with the command \\[mh-rescan-folder].
168 Because this folder is temporary, you'll probably get in the
169 habit of killing it when you're done with \\[mh-kill-folder].
171 You can regenerate the results by running this command with a
172 prefix argument REDO-SEARCH-FLAG.
174 Note: This command uses an \"X-MHE-Checksum:\" header field to
175 cache the MD5 checksum of a message. This means that if an
176 incoming message already contains an \"X-MHE-Checksum:\" field,
177 that message might not be found by this command. The following
178 \"procmail\" recipe avoids this problem by renaming the existing
182 | formail -R \"X-MHE-Checksum\" \"X-Old-MHE-Checksum\"
184 Configuring Indexed Searches
186 The command \\[mh-search] runs the command defined by the option
187 `mh-search-program'. The default value is \"Auto-detect\" which
188 means that MH-E will automatically choose one of \"swish++\",
189 \"swish-e\", \"mairix\", \"namazu\", \"pick\" and \"grep\" in
190 that order. If, for example, you have both \"swish++\" and
191 \"mairix\" installed and you want to use \"mairix\", then you can
192 set this option to \"mairix\".
194 The documentation for the following commands describe how to set
195 up the various indexing programs to use with MH-E.
197 - `mh-swish++-execute-search'
198 - `mh-swish-execute-search'
199 - `mh-mairix-execute-search'
200 - `mh-namazu-execute-search'
201 - `mh-pick-execute-search'
202 - `mh-grep-execute-search'
204 In a program, if FOLDER is \"+\" or nil, then mail in all folders
205 are searched. Optional argument WINDOW-CONFIG stores the window
206 configuration that will be restored after the user quits the
207 folder containing the index search results."
211 ;; Yes, we do want to call mh-search-choose every time in case the
212 ;; user has switched the searcher manually.
213 (unless (mh-search-choose (and current-prefix-arg
214 mh-index-previous-search
215 (cadr mh-index-previous-search
)))
216 (error "No search program found"))
217 (or (and current-prefix-arg mh-index-sequence-search-flag
)
218 (and current-prefix-arg
(car mh-index-previous-search
))
219 (mh-prompt-for-folder "Search" "+" nil
"all" t
)))
220 (or (and current-prefix-arg
(caddr mh-index-previous-search
))
221 mh-search-regexp-builder
222 (read-string (format "%s regexp: "
223 (upcase-initials (symbol-name mh-searcher
)))))
225 (if (and (not (and current-prefix-arg
226 (caddr mh-index-previous-search
)))
227 mh-search-regexp-builder
)
228 (current-window-configuration)
231 ;; Redoing a sequence search?
232 (when (and redo-search-flag mh-index-data mh-index-sequence-search-flag
233 (not mh-flists-called-flag
))
234 (let ((mh-flists-called-flag t
))
235 (apply #'mh-index-sequenced-messages mh-index-previous-search
))
236 (return-from mh-search
))
237 ;; We have fancy query parsing.
238 (when (symbolp search-regexp
)
239 (mh-search-folder folder window-config
)
240 (return-from mh-search
))
241 ;; Begin search proper.
243 (let ((result-count 0)
244 (old-window-config (or window-config mh-previous-window-config
))
245 (previous-search mh-index-previous-search
)
246 (index-folder (format "%s/%s" mh-index-folder
247 (mh-index-generate-pretty-name search-regexp
))))
248 ;; Create a new folder for the search results or recreate the old one...
249 (if (and redo-search-flag mh-index-previous-search
)
250 (let ((buffer-name (buffer-name (current-buffer))))
251 (mh-process-or-undo-commands buffer-name
)
252 (save-excursion (mh-exec-cmd-quiet nil
"rmf" buffer-name
))
253 (mh-exec-cmd-quiet nil
"folder" "-create" "-fast" buffer-name
)
254 (setq index-folder buffer-name
))
255 (setq index-folder
(mh-index-new-folder index-folder search-regexp
)))
257 (let ((folder-path (format "%s%s" mh-user-path
(substring folder
1)))
258 (folder-results-map (make-hash-table :test
#'equal
))
259 (origin-map (make-hash-table :test
#'equal
)))
260 ;; Run search program...
261 (message "Executing %s... " mh-searcher
)
262 (funcall mh-search-function folder-path search-regexp
)
264 ;; Parse searcher output.
265 (message "Processing %s output... " mh-searcher
)
266 (goto-char (point-min))
267 (loop for next-result
= (funcall mh-search-next-result-function
)
269 do
(unless (eq next-result
'error
)
270 (unless (gethash (car next-result
) folder-results-map
)
271 (setf (gethash (car next-result
) folder-results-map
)
272 (make-hash-table :test
#'equal
)))
273 (setf (gethash (cadr next-result
)
274 (gethash (car next-result
) folder-results-map
))
277 ;; Copy the search results over.
278 (maphash #'(lambda (folder msgs
)
279 (let ((cur (car (mh-translate-range folder
"cur")))
280 (msgs (sort (loop for msg being the hash-keys of msgs
283 (mh-exec-cmd "refile" msgs
"-src" folder
284 "-link" index-folder
)
285 ;; Restore cur to old value, that refile changed
287 (mh-exec-cmd-quiet nil
"mark" folder
"-add" "-zero"
289 "cur" (format "%s" cur
)))
290 (loop for msg in msgs
291 do
(incf result-count
)
292 (setf (gethash result-count origin-map
)
293 (cons folder msg
)))))
296 ;; Vist the results folder.
297 (mh-visit-folder index-folder
() (list folder-results-map origin-map
))
299 (goto-char (point-min))
301 (mh-update-sequences)
304 ;; Update the speedbar, if needed.
305 (when (mh-speed-flists-active-p)
306 (mh-speed-flists t mh-current-folder
))
309 (when (or (and redo-search-flag previous-search
) window-config
)
310 (setq mh-previous-window-config old-window-config
))
311 (setq mh-index-previous-search
(list folder mh-searcher search-regexp
))
313 ;; Write out data to disk.
314 (unless mh-flists-called-flag
(mh-index-write-data))
316 (message "%s found %s matches in %s folders"
317 (upcase-initials (symbol-name mh-searcher
))
318 (loop for msg-hash being the hash-values of mh-index-data
319 sum
(hash-table-count msg-hash
))
320 (loop for msg-hash being the hash-values of mh-index-data
321 count
(> (hash-table-count msg-hash
) 0)))))))
325 (defvar pick-folder
))
327 (defun mh-search-folder (folder window-config
)
328 "Search FOLDER for messages matching a pattern.
330 In a program, argument WINDOW-CONFIG is the current window
331 configuration and is used when the search folder is dismissed."
332 (interactive (list (mh-prompt-for-folder "Search" mh-current-folder nil nil t
)
333 (current-window-configuration)))
334 (let ((pick-folder (if (equal folder
"+") mh-current-folder folder
)))
335 (switch-to-buffer-other-window "search-pattern")
336 (if (or (zerop (buffer-size))
337 (not (y-or-n-p "Reuse pattern? ")))
338 (mh-make-pick-template)
340 (mh-make-local-vars 'mh-current-folder folder
341 'mh-previous-window-config window-config
)
342 (message "%s" (substitute-command-keys
343 (concat "Type \\[mh-index-do-search] to search messages, "
344 "\\[mh-pick-do-search] to use pick, "
345 "\\[mh-help] for help")))))
347 (defun mh-make-pick-template ()
348 "Initialize the current buffer with a template for a pick pattern."
349 (let ((inhibit-read-only t
)) (erase-buffer))
357 (goto-char (point-min))
359 (add-text-properties (point) (1+ (point)) '(front-sticky t
))
360 (add-text-properties (- (mh-line-end-position) 2)
361 (1- (mh-line-end-position))
363 (add-text-properties (point) (1- (mh-line-end-position)) '(read-only t
))
365 (add-text-properties (point) (1+ (point)) '(front-sticky t
))
366 (add-text-properties (point) (1- (mh-line-end-position)) '(read-only t
))
367 (goto-char (point-max)))
372 (defun mh-index-new-messages (folders)
373 "Display unseen messages.
375 If you use a program such as \"procmail\" to use \"rcvstore\" to file
376 your incoming mail automatically, you can display new, unseen,
377 messages using this command. All messages in the \"unseen\"
378 sequence from the folders in `mh-new-messages-folders' are
381 With a prefix argument, enter a space-separated list of FOLDERS,
382 or nothing to search all folders."
384 (list (if current-prefix-arg
385 (split-string (read-string "Search folder(s) (default all): "))
386 mh-new-messages-folders
)))
387 (mh-index-sequenced-messages folders mh-unseen-seq
))
390 (defun mh-index-ticked-messages (folders)
391 "Display ticked messages.
393 All messages in `mh-tick-seq' from the folders in
394 `mh-ticked-messages-folders' are listed.
396 With a prefix argument, enter a space-separated list of FOLDERS,
397 or nothing to search all folders."
399 (list (if current-prefix-arg
400 (split-string (read-string "Search folder(s) (default all): "))
401 mh-ticked-messages-folders
)))
402 (mh-index-sequenced-messages folders mh-tick-seq
))
406 (defvar mh-mairix-folder
)
407 (defvar mh-flists-search-folders
))
410 (defun mh-index-sequenced-messages (folders sequence
)
411 "Display messages in any sequence.
413 All messages from the FOLDERS in `mh-new-messages-folders' in the
414 SEQUENCE you provide are listed. With a prefix argument, enter a
415 space-separated list of folders at the prompt, or nothing to
418 (list (if current-prefix-arg
419 (split-string (read-string "Search folder(s) (default all): "))
420 mh-new-messages-folders
)
421 (mh-read-seq-default "Search" nil
)))
422 (unless sequence
(setq sequence mh-unseen-seq
))
423 (let* ((mh-flists-search-folders folders
)
424 (mh-flists-sequence sequence
)
425 (mh-flists-called-flag t
)
426 (mh-searcher 'flists
)
427 (mh-search-function 'mh-flists-execute
)
428 (mh-search-next-result-function 'mh-mairix-next-result
)
429 (mh-mairix-folder mh-user-path
)
430 (mh-search-regexp-builder nil
)
431 (new-folder (format "%s/%s/%s" mh-index-folder
432 mh-flists-results-folder sequence
))
433 (window-config (if (equal new-folder mh-current-folder
)
434 mh-previous-window-config
435 (current-window-configuration)))
438 (cond ((buffer-live-p (get-buffer new-folder
))
439 ;; The destination folder is being visited. Trick `mh-search'
440 ;; into thinking that the folder resulted from a previous search.
441 (set-buffer new-folder
)
442 (setq mh-index-previous-search
(list folders mh-searcher sequence
))
444 ((mh-folder-exists-p new-folder
)
445 ;; Folder exists but we don't have it open. That means they are
446 ;; stale results from a old flists search. Clear it out.
447 (mh-exec-cmd-quiet nil
"rmf" new-folder
)))
448 (setq message
(mh-search "+" mh-flists-results-folder
449 redo-flag window-config
)
450 mh-index-sequence-search-flag t
451 mh-index-previous-search
(list folders mh-searcher sequence
))
452 (mh-index-write-data)
453 (when (stringp message
) (message "%s" message
))))
455 (defvar mh-flists-search-folders
)
457 (defun mh-flists-execute (&rest ignored
)
459 Search for messages belonging to `mh-flists-sequence' in the
460 folders specified by `mh-flists-search-folders'. If
461 `mh-recursive-folders-flag' is t, then the folders are searched
462 recursively. All arguments are IGNORED."
463 (set-buffer (get-buffer-create mh-temp-index-buffer
))
465 (unless (executable-find "sh")
466 (error "Didn't find sh"))
468 (let ((seq (symbol-name mh-flists-sequence
)))
469 (insert "for folder in `" (expand-file-name "flists" mh-progs
) " "
470 (cond ((eq mh-flists-search-folders t
)
471 (mh-quote-for-shell mh-inbox
))
472 ((eq mh-flists-search-folders nil
) "")
473 ((listp mh-flists-search-folders
)
474 (loop for folder in mh-flists-search-folders
476 (concat " " (mh-quote-for-shell folder
)))))
477 (if mh-recursive-folders-flag
" -recurse" "")
478 " -sequence " seq
" -noshowzero -fast` ; do\n"
479 (expand-file-name "mhpath" mh-progs
) " \"+$folder\" " seq
"\n"
482 (point-min) (point-max) "sh" nil
(get-buffer mh-temp-index-buffer
))))
487 (defun mh-index-next-folder (&optional backward-flag
)
488 "Jump to the next folder marker.
490 With non-nil optional argument BACKWARD-FLAG, jump to the previous
493 (if (null mh-index-data
)
494 (message "Only applicable in an MH-E index search buffer")
495 (let ((point (point)))
496 (forward-line (if backward-flag
0 1))
497 (cond ((if backward-flag
498 (re-search-backward "^+" (point-min) t
)
499 (re-search-forward "^+" (point-max) t
))
501 ((and (if backward-flag
502 (goto-char (point-max))
503 (goto-char (point-min)))
506 (re-search-backward "^+" (point-min) t
)
507 (re-search-forward "^+" (point-max) t
))
509 (t (goto-char point
))))))
512 (defun mh-index-previous-folder ()
513 "Jump to the previous folder marker."
515 (mh-index-next-folder t
))
518 (defun mh-index-visit-folder ()
519 "Visit original folder from where the message at point was found."
521 (unless mh-index-data
522 (error "Not in an index folder"))
525 (cond ((and (bolp) (eolp))
526 (ignore-errors (forward-line -
1))
527 (setq msg
(mh-get-msg-num t
)))
528 ((equal (char-after (mh-line-beginning-position)) ?
+)
529 (setq folder
(buffer-substring-no-properties
530 (mh-line-beginning-position)
531 (mh-line-end-position))))
532 (t (setq msg
(mh-get-msg-num t
)))))
534 (setq folder
(car (gethash (gethash msg mh-index-msg-checksum-map
)
535 mh-index-checksum-origin-map
))))
536 (when (or (not (get-buffer folder
))
537 (y-or-n-p (format "Reuse buffer displaying %s? " folder
)))
539 folder
(loop for x being the hash-keys of
(gethash folder mh-index-data
)
540 when
(mh-msg-exists-p x folder
) collect x
)))))
547 mh-pick-menu mh-search-mode-map
"Menu for MH-E Search"
549 ["Perform Search" mh-index-do-search t
]
550 ["Search with pick" mh-pick-do-search t
]))
556 ;; If this changes, modify mh-search-mode-help-messages accordingly, below.
557 (gnus-define-keys mh-search-mode-map
559 "\C-c\C-c" mh-index-do-search
560 "\C-c\C-p" mh-pick-do-search
561 "\C-c\C-f\C-b" mh-to-field
562 "\C-c\C-f\C-c" mh-to-field
563 "\C-c\C-f\C-m" mh-to-field
564 "\C-c\C-f\C-s" mh-to-field
565 "\C-c\C-f\C-t" mh-to-field
566 "\C-c\C-fb" mh-to-field
567 "\C-c\C-fc" mh-to-field
568 "\C-c\C-fm" mh-to-field
569 "\C-c\C-fs" mh-to-field
570 "\C-c\C-ft" mh-to-field
)
574 ;;; MH-Search Help Messages
576 ;; Group messages logically, more or less.
577 (defvar mh-search-mode-help-messages
579 "Perform search: \\[mh-index-do-search]\n"
580 "Search with pick: \\[mh-pick-do-search]\n\n"
581 "Move to a field by typing C-c C-f C-<field>\n"
582 "where <field> is the first letter of the desired field\n"
583 "(except for From: which uses \"m\")."))
584 "Key binding cheat sheet.
586 This is an associative array which is used to show the most common
587 commands. The key is a prefix char. The value is one or more strings
588 which are concatenated together and displayed in the minibuffer if ?
589 is pressed after the prefix character. The special key nil is used to
590 display the non-prefixed commands.
592 The substitutions described in `substitute-command-keys' are performed
599 (put 'mh-search-mode
'mode-class
'special
)
601 (define-derived-mode mh-search-mode fundamental-mode
"MH-Search"
602 "Mode for creating search templates in MH-E.\\<mh-search-mode-map>
604 Edit this template by entering your search criteria in an
605 appropriate header field that is already there, or create a new
606 field yourself. If the string you're looking for could be
607 anywhere in a message, then place the string underneath the row
610 To perform the search, type \\[mh-index-do-search].
612 Sometimes you're searching for text that is either not indexed,
613 or hasn't been indexed yet. In this case you can override the
614 default method with the pick method by running the command
615 \\[mh-pick-do-search].
617 The hook `mh-search-mode-hook' is called upon entry to this mode.
619 \\{mh-search-mode-map}"
621 (easy-menu-add mh-pick-menu
)
622 (mh-set-help mh-search-mode-help-messages
))
626 ;;; MH-Search Commands
628 (defun mh-index-do-search (&optional searcher
)
629 "Find messages using `mh-search-program'.
630 If optional argument SEARCHER is present, use it instead of
631 `mh-search-program'."
633 (unless (mh-search-choose searcher
) (error "No search program found"))
634 (let* ((regexp-list (mh-pick-parse-search-buffer))
635 (pattern (funcall mh-search-regexp-builder regexp-list
)))
637 (mh-search mh-current-folder pattern nil mh-previous-window-config
)
638 (error "No search terms"))))
640 (defun mh-pick-do-search ()
641 "Find messages using \"pick\".
643 Uses the pick method described in `mh-pick-execute-search'."
645 (mh-index-do-search 'pick
))
647 (defun mh-pick-parse-search-buffer ()
648 "Parse the search buffer contents.
649 The function returns an alist. The car of each element is either
650 the header name to search in or nil to search the whole message.
651 The cdr of the element is the pattern to search."
653 (let ((pattern-list ())
656 (goto-char (point-min))
658 (if (search-forward "--------" (mh-line-end-position) t
)
659 (setq in-body-flag t
)
662 (setq start
(if in-body-flag
664 (search-forward ":" (mh-line-end-position) t
)
666 (push (cons (and (not in-body-flag
)
668 (buffer-substring-no-properties
670 (mh-index-parse-search-regexp
671 (buffer-substring-no-properties
672 start
(mh-line-end-position))))
677 (defun mh-index-parse-search-regexp (input-string)
678 "Construct parse tree for INPUT-STRING.
679 All occurrences of &, |, ! and ~ in INPUT-STRING are replaced by
680 AND, OR and NOT as appropriate. Then the resulting string is
684 (insert input-string
)
686 (mh-replace-string "\t" " ")
688 (mh-replace-string " AND " " and ")
689 (mh-replace-string "&" " and ")
690 (mh-replace-string " -and " " and ")
692 (mh-replace-string " OR " " or ")
693 (mh-replace-string "|" " or ")
694 (mh-replace-string " -or " " or ")
696 (mh-replace-string " NOT " " not ")
697 (mh-replace-string "!" " not ")
698 (mh-replace-string "~" " not ")
699 (mh-replace-string " -not " " not ")
700 ;; synonyms of left brace
701 (mh-replace-string "(" " ( ")
702 (mh-replace-string " -lbrace " " ( ")
703 ;; synonyms of right brace
704 (mh-replace-string ")" " ) ")
705 (mh-replace-string " -rbrace " " ) ")
706 ;; get the normalized input
707 (setq input
(format "( %s )" (buffer-substring (point-min) (point-max)))))
709 (let ((tokens (mh-index-add-implicit-ops (split-string input
)))
713 (dolist (token tokens
)
714 (cond ((equal token
"(") (push 'paren op-stack
))
715 ((equal token
"not") (push 'not op-stack
))
716 ((equal token
"or") (push 'or op-stack
))
717 ((equal token
"and") (push 'and op-stack
))
719 (multiple-value-setq (op-stack operand-stack
)
720 (values-list (mh-index-evaluate op-stack operand-stack
)))
721 (when (eq (car op-stack
) 'not
)
722 (setq op-stack
(cdr op-stack
))
723 (push `(not ,(pop operand-stack
)) operand-stack
))
724 (when (eq (car op-stack
) 'and
)
725 (setq op-stack
(cdr op-stack
))
726 (setq oper1
(pop operand-stack
))
727 (push `(and ,(pop operand-stack
) ,oper1
) operand-stack
)))
728 ((eq (car op-stack
) 'not
)
729 (setq op-stack
(cdr op-stack
))
730 (push `(not ,token
) operand-stack
)
731 (when (eq (car op-stack
) 'and
)
732 (setq op-stack
(cdr op-stack
))
733 (setq oper1
(pop operand-stack
))
734 (push `(and ,(pop operand-stack
) ,oper1
) operand-stack
)))
735 ((eq (car op-stack
) 'and
)
736 (setq op-stack
(cdr op-stack
))
737 (push `(and ,(pop operand-stack
) ,token
) operand-stack
))
738 (t (push token operand-stack
))))
739 (prog1 (pop operand-stack
)
740 (when (or op-stack operand-stack
)
741 (error "Invalid regexp: %s" input
))))))
743 (defun mh-index-add-implicit-ops (tokens)
744 "Add implicit operators in the list TOKENS."
749 (setq current
(pop tokens
))
750 (cond ((or (equal current
")") (equal current
"and") (equal current
"or"))
751 (setq literal-seen nil
)
752 (push current result
))
755 (setq literal-seen nil
)
758 (push current result
)
759 (unless (or (equal current
"(") (equal current
"not"))
760 (setq literal-seen t
)))))
763 (defun mh-index-evaluate (op-stack operand-stack
)
764 "Read expression till starting paren based on OP-STACK and OPERAND-STACK."
765 (block mh-index-evaluate
768 (setq op
(pop op-stack
))
769 (cond ((eq op
'paren
)
770 (return-from mh-index-evaluate
(list op-stack operand-stack
)))
772 (push `(not ,(pop operand-stack
)) operand-stack
))
773 ((or (eq op
'and
) (eq op
'or
))
774 (setq oper1
(pop operand-stack
))
775 (push `(,op
,(pop operand-stack
) ,oper1
) operand-stack
))))
776 (error "Ran out of tokens"))))
780 ;;; Indexing Functions
782 ;; Support different search programs
783 (defvar mh-search-choices
785 mh-swish
++-binary mh-swish
++-execute-search mh-swish
++-next-result
786 mh-swish
++-regexp-builder
)
788 mh-swish-binary mh-swish-execute-search mh-swish-next-result nil
)
790 mh-mairix-binary mh-mairix-execute-search mh-mairix-next-result
791 mh-mairix-regexp-builder
)
793 mh-namazu-binary mh-namazu-execute-search mh-namazu-next-result nil
)
795 mh-pick-binary mh-pick-execute-search mh-pick-next-result
796 mh-pick-regexp-builder
)
798 mh-grep-binary mh-grep-execute-search mh-grep-next-result nil
))
799 "List of possible searcher choices.")
801 (defun mh-search-choose (&optional searcher
)
802 "Choose a searching function.
803 The side-effects of this function are that the variables
804 `mh-searcher', `mh-search-function', and
805 `mh-search-next-result-function' are set according to the first
806 searcher in `mh-search-choices' present on the system. If
807 optional argument SEARCHER is present, use it instead of
808 `mh-search-program'."
810 (let ((program-alist (cond (searcher
811 (list (assoc searcher mh-search-choices
)))
814 (assoc mh-search-program mh-search-choices
)))
815 (t mh-search-choices
))))
817 (let* ((current (pop program-alist
))
818 (executable (symbol-value (cadr current
))))
820 (setq mh-searcher
(car current
))
821 (setq mh-search-function
(nth 2 current
))
822 (setq mh-search-next-result-function
(nth 3 current
))
823 (setq mh-search-regexp-builder
(nth 4 current
))
824 (return mh-searcher
))))
829 (defvar mh-swish
++-binary
(or (executable-find "search++")
830 (executable-find "search")))
831 (defvar mh-swish
++-directory
".swish++")
832 (defvar mh-swish-folder nil
)
834 (defun mh-swish++-execute-search
(folder-path search-regexp
)
837 In the examples below, replace \"/home/user/Mail\" with the path to
840 First create the directory \"/home/user/Mail/.swish++\". Then create
841 the file \"/home/user/Mail/.swish++/swish++.conf\" with the following
844 IncludeMeta Bcc Cc Comments Content-Description From Keywords
845 IncludeMeta Newsgroups Resent-To Subject To
846 IncludeMeta Message-Id References In-Reply-To
848 IndexFile /home/user/Mail/.swish++/swish++.index
850 Use the following command line to generate the swish index. Run
851 this daily from cron:
853 find /home/user/Mail -path /home/user/Mail/mhe-index -prune \\
854 -o -path /home/user/Mail/.swish++ -prune \\
855 -o -name \"[0-9]*\" -print \\
856 | index -c /home/user/Mail/.swish++/swish++.conf -
858 This command does not index the folders that hold the results of your
859 searches in \"+mhe-index\" since they tend to be ephemeral and the
860 original messages are indexed anyway.
862 On some systems (Debian GNU/Linux, for example), use \"index++\"
863 instead of \"index\".
865 In a program, FOLDER-PATH is the directory in which SEARCH-REGEXP is
867 (set-buffer (get-buffer-create mh-temp-index-buffer
))
869 (unless mh-swish
++-binary
870 (error "Set `mh-swish++-binary' appropriately"))
871 (call-process mh-swish
++-binary nil
'(t nil
) nil
873 (format "-i%s%s/swish++.index"
874 mh-user-path mh-swish
++-directory
)
876 (goto-char (point-min))
877 (setq mh-swish-folder
878 (let ((last-char (substring folder-path
(1- (length folder-path
)))))
879 (if (equal last-char
"/")
881 (format "%s/" folder-path
)))))
883 (defalias 'mh-swish
++-next-result
'mh-swish-next-result
)
885 (defun mh-swish++-regexp-builder
(regexp-list)
886 "Generate query for swish++.
887 REGEXP-LIST is an alist of fields and values."
889 (dolist (elem regexp-list
)
891 (setq regexp
(concat regexp
" and "
892 (if (car elem
) "(" "")
893 (if (car elem
) (symbol-name (car elem
)) "")
894 (if (car elem
) " = " "")
895 (mh-swish++-print-regexp
(cdr elem
))
896 (if (car elem
) ")" "")))))
897 (substring regexp
4)))
899 (defun mh-swish++-print-regexp
(expr)
900 "Return infix expression corresponding to EXPR."
901 (cond ((atom expr
) (format "%s" expr
))
902 ((eq (car expr
) 'not
)
903 (format "(not %s)" (mh-swish++-print-regexp
(cadr expr
))))
904 (t (format "(%s %s %s)" (mh-swish++-print-regexp
(cadr expr
))
905 (symbol-name (car expr
))
906 (mh-swish++-print-regexp
(caddr expr
))))))
910 (defvar mh-swish-binary
(executable-find "swish-e"))
911 (defvar mh-swish-directory
".swish")
913 (defun mh-swish-execute-search (folder-path search-regexp
)
916 In the examples below, replace \"/home/user/Mail\" with the path
917 to your MH directory.
919 First create the directory \"/home/user/Mail/.swish\". Then
920 create the file \"/home/user/Mail/.swish/config\" with the
924 IndexDir /home/user/Mail
925 IndexFile /home/user/Mail/.swish/index
926 IndexName \"Mail Index\"
927 IndexDescription \"Mail Index\"
928 IndexPointer \"http://nowhere\"
929 IndexAdmin \"nobody\"
934 IgnoreTotalWordCountWhenRanking yes
935 WordCharacters abcdefghijklmnopqrstuvwxyz0123456789-
936 BeginCharacters abcdefghijklmnopqrstuvwxyz
937 EndCharacters abcdefghijklmnopqrstuvwxyz0123456789
940 FileRules filename contains \\D
941 FileRules pathname contains /home/user/Mail/.swish
942 FileRules pathname contains /home/user/Mail/mhe-index
944 This configuration does not index the folders that hold the
945 results of your searches in \"+mhe-index\" since they tend to be
946 ephemeral and the original messages are indexed anyway.
948 If there are any directories you would like to ignore, append
949 lines like the following to \"config\":
951 FileRules pathname contains /home/user/Mail/scripts
953 Use the following command line to generate the swish index. Run
954 this daily from cron:
956 swish-e -c /home/user/Mail/.swish/config
958 In a program, FOLDER-PATH is the directory in which SEARCH-REGEXP
960 (set-buffer (get-buffer-create mh-temp-index-buffer
))
962 (unless mh-swish-binary
963 (error "Set `mh-swish-binary' appropriately"))
964 (call-process mh-swish-binary nil
'(t nil
) nil
966 "-f" (format "%s%s/index" mh-user-path mh-swish-directory
))
967 (goto-char (point-min))
968 (setq mh-swish-folder
969 (let ((last-char (substring folder-path
(1- (length folder-path
)))))
970 (if (equal last-char
"/")
972 (format "%s/" folder-path
)))))
974 (defun mh-swish-next-result ()
975 "Get the next result from swish output."
978 (when (or (eobp) (equal (char-after (point)) ?.
))
980 (when (equal (char-after (point)) ?
#)
982 (let* ((start (search-forward " " (mh-line-end-position) t
))
983 (end (search-forward " " (mh-line-end-position) t
)))
984 (unless (and start end
)
987 (unless (file-exists-p (buffer-substring-no-properties start end
))
989 (unless (search-backward "/" start t
)
991 (list (let* ((s (buffer-substring-no-properties start
(1+ (point)))))
992 (unless (string-match mh-swish-folder s
)
994 (if (and (string-match mh-user-path s
)
995 (< (match-end 0) (1- (length s
))))
997 (substring s
(match-end 0) (1- (length s
))))
999 (let* ((s (buffer-substring-no-properties (1+ (point)) end
))
1000 (n (ignore-errors (string-to-number s
))))
1001 (if n n
(return 'error
)))
1007 (defvar mh-mairix-binary
(executable-find "mairix"))
1008 (defvar mh-mairix-directory
".mairix")
1009 (defvar mh-mairix-folder nil
)
1011 (defun mh-mairix-execute-search (folder-path search-regexp-list
)
1014 In the examples below, replace \"/home/user/Mail\" with the path
1015 to your MH directory.
1017 First create the directory \"/home/user/Mail/.mairix\". Then
1018 create the file \"/home/user/Mail/.mairix/config\" with the
1021 base=/home/user/Mail
1023 # List of folders that should be indexed. 3 dots at the end means there
1024 # are subfolders within the folder
1025 mh=archive...:inbox:drafts:news:sent:trash
1028 database=/home/user/Mail/.mairix/database
1030 Use the following command line to generate the mairix index. Run
1031 this daily from cron:
1033 mairix -f /home/user/Mail/.mairix/config
1035 In a program, FOLDER-PATH is the directory in which
1036 SEARCH-REGEXP-LIST is used to search."
1037 (set-buffer (get-buffer-create mh-temp-index-buffer
))
1039 (unless mh-mairix-binary
1040 (error "Set `mh-mairix-binary' appropriately"))
1041 (apply #'call-process mh-mairix-binary nil
'(t nil
) nil
1042 "-r" "-f" (format "%s%s/config" mh-user-path mh-mairix-directory
)
1044 (goto-char (point-min))
1045 (setq mh-mairix-folder
1046 (let ((last-char (substring folder-path
(1- (length folder-path
)))))
1047 (if (equal last-char
"/")
1049 (format "%s/" folder-path
)))))
1051 (defun mh-mairix-next-result ()
1052 "Return next result from mairix output."
1055 (when (or (eobp) (and (bolp) (eolp)))
1057 (unless (eq (char-after) ?
/)
1059 (let ((start (point))
1061 (setq end
(mh-line-end-position))
1062 (unless (search-forward mh-mairix-folder end t
)
1064 (goto-char (match-beginning 0))
1065 (unless (equal (point) start
)
1068 (unless (search-backward "/" start t
)
1070 (setq msg-start
(1+ (point)))
1072 (unless (search-forward mh-user-path end t
)
1074 (list (format "+%s" (buffer-substring-no-properties
1075 (point) (1- msg-start
)))
1077 (buffer-substring-no-properties msg-start end
))
1081 (defun mh-mairix-regexp-builder (regexp-list)
1082 "Generate query for mairix.
1083 REGEXP-LIST is an alist of fields and values."
1085 (dolist (pair regexp-list
)
1089 (cond ((eq (car pair
) 'to
) "t:")
1090 ((eq (car pair
) 'from
) "f:")
1091 ((eq (car pair
) 'cc
) "c:")
1092 ((eq (car pair
) 'to-or-cc
) "tc:")
1093 ((eq (car pair
) 'address
) "a:")
1094 ((eq (car pair
) 'subject
) "s:")
1095 ((eq (car pair
) 'subject-or-body
) "bs:")
1096 ((eq (car pair
) 'date
) "d:")
1097 ((eq (car pair
) 'message-id
) "m:")
1098 ((eq (car pair
) 'message-body
) "b:")
1099 ((eq (car pair
) 'message-size
) "z:")
1100 ((eq (car pair
) 'message-attachment-name
) "n:")
1101 ((eq (car pair
) 'message-flags
) "F:")
1103 (let ((sop (cdr (mh-mairix-convert-to-sop* (cdr pair
))))
1105 (dolist (conjunct sop
)
1106 (let ((expr-list (cdr conjunct
))
1108 (dolist (e expr-list
)
1109 (setq expr-string
(concat expr-string
","
1110 (if (atom e
) "" "~")
1111 (if (atom e
) e
(cadr e
)))))
1112 (setq final
(concat final
"/" (substring expr-string
1)))))
1113 (substring final
1)))
1117 (defun mh-mairix-convert-to-sop* (expr)
1118 "Convert EXPR to sum of product form."
1119 (cond ((atom expr
) `(or (and ,expr
)))
1120 ((eq (car expr
) 'or
)
1122 (loop for e in
(mapcar #'mh-mairix-convert-to-sop
* (cdr expr
))
1124 ((eq (car expr
) 'and
)
1125 (let ((conjuncts (mapcar #'mh-mairix-convert-to-sop
* (cdr expr
)))
1127 (setq result
(pop conjuncts
))
1129 (setq next-factor
(pop conjuncts
))
1130 (setq result
(let ((res ()))
1131 (dolist (t1 (cdr result
))
1132 (dolist (t2 (cdr next-factor
))
1133 (push `(and ,@(cdr t1
) ,@(cdr t2
)) res
)))
1136 ((atom (cadr expr
)) `(or (and ,expr
)))
1137 ((eq (caadr expr
) 'not
) (mh-mairix-convert-to-sop* (cadadr expr
)))
1138 ((eq (caadr expr
) 'and
) (mh-mairix-convert-to-sop*
1139 `(or ,@(mapcar #'(lambda (x) `(not ,x
))
1141 ((eq (caadr expr
) 'or
) (mh-mairix-convert-to-sop*
1142 `(and ,@(mapcar #'(lambda (x) `(not ,x
))
1144 (t (error "Unreachable: %s" expr
))))
1148 (defvar mh-namazu-binary
(executable-find "namazu"))
1149 (defvar mh-namazu-directory
".namazu")
1150 (defvar mh-namazu-folder nil
)
1152 (defun mh-namazu-execute-search (folder-path search-regexp
)
1155 In the examples below, replace \"/home/user/Mail\" with the path to
1158 First create the directory \"/home/user/Mail/.namazu\". Then create
1159 the file \"/home/user/Mail/.namazu/mknmzrc\" with the following
1162 package conf; # Don't remove this line!
1163 $ADDRESS = 'user@localhost';
1164 $ALLOW_FILE = \"[0-9]*\";
1165 $EXCLUDE_PATH = \"^/home/user/Mail/(mhe-index|spam)\";
1167 This configuration does not index the folders that hold the results of
1168 your searches in \"+mhe-index\" since they tend to be ephemeral and
1169 the original messages are indexed anyway.
1171 Use the following command line to generate the namazu index. Run this
1174 mknmz -f /home/user/Mail/.namazu/mknmzrc -O /home/user/Mail/.namazu \\
1177 In a program, FOLDER-PATH is the directory in which SEARCH-REGEXP
1179 (let ((namazu-index-directory
1180 (format "%s%s" mh-user-path mh-namazu-directory
)))
1181 (unless (file-exists-p namazu-index-directory
)
1182 (error "Namazu directory %s not present" namazu-index-directory
))
1183 (unless (executable-find mh-namazu-binary
)
1184 (error "Set `mh-namazu-binary' appropriately"))
1185 (set-buffer (get-buffer-create mh-temp-index-buffer
))
1187 (call-process mh-namazu-binary nil
'(t nil
) nil
1188 "-alR" search-regexp namazu-index-directory
)
1189 (goto-char (point-min))
1190 (setq mh-namazu-folder
1191 (let ((last (substring folder-path
(1- (length folder-path
)))))
1192 (if (equal last
"/")
1194 (format "%s/" folder-path
))))))
1196 (defun mh-namazu-next-result ()
1197 "Get the next result from namazu output."
1200 (when (eobp) (return nil
))
1201 (let ((file-name (buffer-substring-no-properties
1202 (point) (mh-line-end-position))))
1203 (unless (equal (string-match mh-namazu-folder file-name
) 0)
1205 (unless (file-exists-p file-name
)
1207 (string-match mh-user-path file-name
)
1208 (let* ((folder/msg
(substring file-name
(match-end 0)))
1209 (mark (mh-search-from-end ?
/ folder
/msg
)))
1210 (unless mark
(return 'error
))
1211 (list (format "+%s" (substring folder
/msg
0 mark
))
1212 (let ((n (ignore-errors (string-to-number
1213 (substring folder
/msg
(1+ mark
))))))
1214 (if n n
(return 'error
)))
1220 (defvar mh-index-pick-folder
)
1221 (defvar mh-pick-binary
"pick")
1222 (defconst mh-pick-single-dash
'(cc date from subject to
)
1223 "Search components that are supported by single-dash option in pick.")
1225 (defun mh-pick-execute-search (folder-path search-regexp
)
1228 Read \"pick(1)\" or the section Finding Messages with pick in the
1229 MH book to find out more about how to enter the criteria (see URL
1230 `http://www.ics.uci.edu/~mh/book/mh/finpic.htm').
1232 In a program, FOLDER-PATH is the directory in which SEARCH-REGEXP
1234 (set-buffer (get-buffer-create mh-temp-index-buffer
))
1237 (mh-folder-list (substring folder-path
(length mh-user-path
)))))
1238 (loop for folder in folders do
1239 (setq folder
(concat "+" folder
))
1240 (insert folder
"\n")
1241 (apply #'call-process
(expand-file-name "pick" mh-progs
)
1242 nil
'(t nil
) nil folder
"-list" search-regexp
)))
1243 (goto-char (point-min)))
1245 (defun mh-pick-next-result ()
1246 "Return the next pick search result."
1249 (when (eobp) (return nil
))
1250 (when (search-forward-regexp "^\+" (mh-line-end-position) t
)
1251 (setq mh-index-pick-folder
1252 (buffer-substring-no-properties (mh-line-beginning-position)
1253 (mh-line-end-position)))
1255 (unless (search-forward-regexp "^[1-9][0-9]*$" (mh-line-end-position) t
)
1257 (list mh-index-pick-folder
1259 (buffer-substring-no-properties (mh-line-beginning-position)
1260 (mh-line-end-position)))
1264 ;; All implementations of pick have special options -cc, -date, -from and
1265 ;; -subject that allow to search for corresponding components. Any other
1266 ;; component is searched using option --COMPNAME, for example: `pick
1267 ;; --x-mailer mh-e'. Mailutils "pick" supports this option using a certain
1268 ;; kludge, but it prefers the following syntax for this purpose:
1269 ;; "--component=COMPNAME --pattern=PATTERN".
1270 ;; -- Sergey Poznyakoff, Aug 2003
1271 (defun mh-pick-regexp-builder (pattern-list)
1272 "Generate pick search expression from PATTERN-LIST."
1274 (dolist (pattern pattern-list
)
1276 (setq result
`(,@result
"-and" "-lbrace"
1277 ,@(mh-pick-construct-regexp
1278 (if (and (mh-variant-p 'gnu-mh
) (car pattern
))
1279 (format "--pattern=%s" (cdr pattern
))
1283 ((mh-variant-p 'gnu-mh
)
1284 (format "--component=%s" (car pattern
)))
1285 ((member (car pattern
) mh-pick-single-dash
)
1286 (format "-%s" (car pattern
)))
1288 (format "--%s" (car pattern
))))
1293 (defun mh-pick-construct-regexp (expr component
)
1294 "Construct pick compatible expression corresponding to EXPR.
1295 COMPONENT is the component to search."
1296 (cond ((atom expr
) (list component expr
))
1297 ((eq (car expr
) 'and
)
1298 `("-lbrace" ,@(mh-pick-construct-regexp (cadr expr
) component
) "-and"
1299 ,@(mh-pick-construct-regexp (caddr expr
) component
) "-rbrace"))
1300 ((eq (car expr
) 'or
)
1301 `("-lbrace" ,@(mh-pick-construct-regexp (cadr expr
) component
) "-or"
1302 ,@(mh-pick-construct-regexp (caddr expr
) component
) "-rbrace"))
1303 ((eq (car expr
) 'not
)
1304 `("-lbrace" "-not" ,@(mh-pick-construct-regexp (cadr expr
) component
)
1306 (t (error "Unknown operator %s seen" (car expr
)))))
1310 (defvar mh-grep-binary
(executable-find "grep"))
1312 (defun mh-grep-execute-search (folder-path search-regexp
)
1315 Unlike the other search methods, this method does not use the
1316 MH-Search buffer. Instead, you simply enter a regular expression
1317 in the minibuffer. For help in constructing regular expressions,
1318 see your man page for \"grep\".
1320 In a program, FOLDER-PATH is the directory in which SEARCH-REGEXP
1322 (set-buffer (get-buffer-create mh-temp-index-buffer
))
1324 (call-process mh-grep-binary nil
'(t nil
) nil
1325 "-i" "-r" search-regexp folder-path
)
1326 (goto-char (point-min)))
1328 (defun mh-grep-next-result ()
1329 "Read the next result.
1330 Parse it and return the message folder, message index and the
1331 match. If no other matches left then return nil. If the current
1332 record is invalid return 'error."
1337 (let ((eol-pos (mh-line-end-position))
1338 (bol-pos (mh-line-beginning-position))
1339 folder-start msg-end
)
1341 (unless (search-forward mh-user-path eol-pos t
)
1343 (setq folder-start
(point))
1344 (unless (search-forward ":" eol-pos t
)
1346 (let ((match (buffer-substring-no-properties (point) eol-pos
)))
1348 (setq msg-end
(point))
1349 (unless (search-backward "/" folder-start t
)
1351 (list (format "+%s" (buffer-substring-no-properties
1352 folder-start
(point)))
1353 (let ((n (ignore-errors (string-to-number
1354 (buffer-substring-no-properties
1355 (1+ (point)) msg-end
)))))
1356 (if n n
(return 'error
)))
1362 ;;; Folder Utilities
1365 (defun mh-index-group-by-folder ()
1366 "Partition the messages based on source folder.
1367 Returns an alist with the folder names in the car and the cdr
1368 being the list of messages originally from that folder."
1370 (goto-char (point-min))
1371 (let ((result-table (make-hash-table :test
#'equal
)))
1372 (loop for msg being the hash-keys of mh-index-msg-checksum-map
1373 do
(push msg
(gethash (car (gethash
1374 (gethash msg mh-index-msg-checksum-map
)
1375 mh-index-checksum-origin-map
))
1377 (loop for x being the hash-keys of result-table
1378 collect
(cons x
(nreverse (gethash x result-table
)))))))
1381 (defun mh-index-insert-folder-headers ()
1382 "Annotate the search results with original folder names."
1383 (let ((cur-msg (mh-get-msg-num nil
))
1384 (old-buffer-modified-flag (buffer-modified-p))
1385 (buffer-read-only nil
)
1386 current-folder last-folder
)
1387 (goto-char (point-min))
1389 (setq current-folder
(car (gethash (gethash (mh-get-msg-num nil
)
1390 mh-index-msg-checksum-map
)
1391 mh-index-checksum-origin-map
)))
1392 (when (and current-folder
(not (equal current-folder last-folder
)))
1393 (insert (if last-folder
"\n" "") current-folder
"\n")
1394 (setq last-folder current-folder
))
1398 (mh-goto-msg cur-msg t
))
1399 (set-buffer-modified-p old-buffer-modified-flag
))
1400 (mh-index-create-imenu-index))
1403 (defun mh-index-delete-folder-headers ()
1404 "Delete the folder headers."
1405 (let ((cur-msg (mh-get-msg-num nil
))
1406 (old-buffer-modified-flag (buffer-modified-p))
1407 (buffer-read-only nil
))
1408 (while (and (not cur-msg
) (not (eobp)))
1410 (setq cur-msg
(mh-get-msg-num nil
)))
1411 (goto-char (point-min))
1413 (if (or (char-equal (char-after) ?
+) (char-equal (char-after) 10))
1414 (delete-region (point) (progn (forward-line) (point)))
1416 (when cur-msg
(mh-goto-msg cur-msg t t
))
1417 (set-buffer-modified-p old-buffer-modified-flag
)))
1419 (mh-require 'which-func nil t
)
1422 (defvar which-func-mode
) ; < Emacs 22, XEmacs
1425 (defun mh-index-create-imenu-index ()
1426 "Create alist of folder names and positions in index folder buffers."
1428 (if (boundp 'which-func-mode
)
1429 (setq which-func-mode t
))
1431 (goto-char (point-min))
1432 (while (re-search-forward "^+" nil t
)
1435 (push (cons (buffer-substring-no-properties
1436 (point) (mh-line-end-position))
1439 (setq imenu--index-alist
(nreverse alist
)))))
1442 (defun mh-search-p ()
1443 "Non-nil means that this folder was generated by searching."
1448 (defvar mh-speed-flists-inhibit-flag
))
1451 (defun mh-index-execute-commands ()
1452 "Perform the outstanding operations on the actual messages.
1453 The copies in the searched folder are then deleted, refiled,
1454 blacklisted and whitelisted to get the desired result. Before
1455 processing the messages we make sure that the message is
1456 identical to the one that the user has marked in the index
1460 (mh-speed-flists-inhibit-flag t
))
1462 (lambda (folder msgs
)
1463 (push folder folders
)
1464 (if (not (get-buffer folder
))
1465 ;; If source folder not open, just delete the messages...
1466 (apply #'mh-exec-cmd
"rmm" folder
(mh-coalesce-msg-list msgs
))
1467 ;; Otherwise delete the messages in the source buffer...
1468 (with-current-buffer folder
1469 (let ((old-refile-list mh-refile-list
)
1470 (old-delete-list mh-delete-list
)
1471 (old-blacklist mh-blacklist
)
1472 (old-whitelist mh-whitelist
))
1473 (setq mh-refile-list nil
1477 (unwind-protect (mh-execute-commands)
1478 (setq mh-refile-list
1481 (loop for y in
(cdr x
)
1482 unless
(memq y msgs
) collect y
)))
1485 (loop for x in old-delete-list
1486 unless
(memq x msgs
) collect x
)
1488 (loop for x in old-blacklist
1489 unless
(memq x msgs
) collect x
)
1491 (loop for x in old-whitelist
1492 unless
(memq x msgs
) collect x
))
1493 (mh-set-folder-modified-p (mh-outstanding-commands-p))
1494 (when (mh-outstanding-commands-p)
1495 (mh-notate-deleted-and-refiled)))))))
1496 (mh-index-matching-source-msgs (append (loop for x in mh-refile-list
1504 (defun mh-index-generate-pretty-name (string)
1505 "Given STRING generate a name which is suitable for use as a folder name.
1506 White space from the beginning and end are removed. All spaces in
1507 the name are replaced with underscores and all / are replaced
1508 with $. If STRING is longer than 20 it is truncated too. STRING
1509 could be a list of strings in which case they are concatenated to
1510 construct the base name."
1512 (if (stringp string
)
1514 (when (car string
) (insert (car string
)))
1515 (dolist (s (cdr string
))
1517 (setq string
(mh-replace-string "-lbrace" " "))
1518 (setq string
(mh-replace-string "-rbrace" " "))
1519 (setq string
(mh-replace-string "-search" " "))
1520 (subst-char-in-region (point-min) (point-max) ?
( ? t
)
1521 (subst-char-in-region (point-min) (point-max) ?
) ? t
)
1522 (subst-char-in-region (point-min) (point-max) ?- ? t
)
1523 (goto-char (point-min))
1524 (while (and (not (eobp)) (memq (char-after) '(? ?
\t ?
\n ?
\r ?_
)))
1526 (goto-char (point-max))
1527 (while (and (not (bobp)) (memq (char-before) '(? ?
\t ?
\n ?
\r ?_
)))
1529 (subst-char-in-region (point-min) (point-max) ? ?_ t
)
1530 (subst-char-in-region (point-min) (point-max) ?
\t ?_ t
)
1531 (subst-char-in-region (point-min) (point-max) ?
\n ?_ t
)
1532 (subst-char-in-region (point-min) (point-max) ?
\r ?_ t
)
1533 (subst-char-in-region (point-min) (point-max) ?
/ ?$ t
)
1534 (let ((out (truncate-string-to-width (buffer-string) 20)))
1535 (cond ((eq mh-searcher
'flists
)
1536 (format "%s/%s" mh-flists-results-folder mh-flists-sequence
))
1537 ((equal out mh-flists-results-folder
) (concat out
"1"))
1540 (defun mh-folder-exists-p (folder)
1541 "Check if FOLDER exists."
1542 (and (mh-folder-name-p folder
)
1545 (mh-exec-cmd-output "folder" nil
"-fast" "-nocreate" folder
)
1546 (goto-char (point-min))
1547 ;; Strip + from folder; use optional + in regexp.
1548 (looking-at (format "+?%s" (substring folder
1)))))))
1550 (defun mh-msg-exists-p (msg folder
)
1551 "Check if MSG exists in FOLDER."
1552 (file-exists-p (format "%s%s/%s" mh-user-path
(substring folder
1) msg
)))
1554 (defun mh-index-new-folder (name search-regexp
)
1555 "Return a folder name based on NAME for search results of SEARCH-REGEXP.
1557 If folder NAME already exists and was generated for the same
1558 SEARCH-REGEXP then it is reused.
1560 Otherwise if the folder NAME was generated from a different
1561 search then check if NAME-2 can be used. Otherwise try NAME-3.
1562 This is repeated till we find a new folder name.
1564 If the folder returned doesn't exist then it is created."
1565 (unless (mh-folder-name-p name
)
1566 (error "The argument should be a valid MH folder name"))
1569 for candidate
= (if (equal i
1) name
(format "%s-%s" name i
))
1570 when
(or (not (mh-folder-exists-p candidate
))
1571 (equal (mh-index-folder-search-regexp candidate
)
1574 ;; Do pending refiles/deletes...
1575 (when (get-buffer chosen-name
)
1576 (mh-process-or-undo-commands chosen-name
))
1577 ;; Recreate folder...
1578 (save-excursion (mh-exec-cmd-quiet nil
"rmf" chosen-name
))
1579 (mh-exec-cmd-quiet nil
"folder" "-create" "-fast" chosen-name
)
1580 (mh-remove-from-sub-folders-cache chosen-name
)
1581 (when (boundp 'mh-speed-folder-map
)
1582 (mh-speed-add-folder chosen-name
))
1585 (defun mh-index-folder-search-regexp (folder)
1586 "If FOLDER was created by a index search, return the search regexp.
1587 Return nil if FOLDER doesn't exist or the .mhe_index file is
1591 (insert-file-contents
1592 (format "%s%s/%s" mh-user-path
(substring folder
1) mh-index-data-file
))
1593 (goto-char (point-min))
1595 (cadr (read (current-buffer))))))
1599 ;;; Sequence Support
1602 (defun mh-index-create-sequences ()
1603 "Mirror sequences present in source folders in index folder."
1604 (let ((seq-hash (make-hash-table :test
#'equal
))
1606 (loop for folder being the hash-keys of mh-index-data
1607 do
(setf (gethash folder seq-hash
)
1608 (mh-create-sequence-map
1609 (mh-read-folder-sequences folder nil
))))
1610 (dolist (msg (mh-translate-range mh-current-folder
"all"))
1611 (let* ((checksum (gethash msg mh-index-msg-checksum-map
))
1612 (pair (gethash checksum mh-index-checksum-origin-map
))
1613 (ofolder (car pair
))
1615 (loop for seq in
(ignore-errors
1616 (gethash omsg
(gethash ofolder seq-hash
)))
1617 do
(if (assoc seq seq-list
)
1618 (push msg
(cdr (assoc seq seq-list
)))
1619 (push (list seq msg
) seq-list
)))))
1620 (loop for seq in seq-list
1621 do
(apply #'mh-exec-cmd
"mark" mh-current-folder
1622 "-sequence" (symbol-name (car seq
)) "-add"
1623 (mapcar #'(lambda (x) (format "%s" x
)) (cdr seq
))))))
1626 (defun mh-create-sequence-map (seq-list)
1627 "Return a map from msg number to list of sequences in which it is present.
1628 SEQ-LIST is an assoc list whose keys are sequence names and whose
1629 cdr is the list of messages in that sequence."
1630 (loop with map
= (make-hash-table)
1632 when
(and (not (memq (car seq
) (mh-unpropagated-sequences)))
1633 (mh-valid-seq-p (car seq
)))
1634 do
(loop for msg in
(cdr seq
)
1635 do
(push (car seq
) (gethash msg map
)))
1636 finally return map
))
1639 (defun mh-index-add-to-sequence (seq msgs
)
1640 "Add to SEQ the messages in the list MSGS.
1641 This function updates the source folder sequences. Also makes an
1642 attempt to update the source folder buffer if we have it open."
1643 ;; Don't need to do anything for cur
1645 (when (and (not (memq seq
(mh-unpropagated-sequences)))
1646 (mh-valid-seq-p seq
))
1648 (mh-speed-flists-inhibit-flag t
))
1649 (maphash (lambda (folder msgs
)
1650 (push folder folders
)
1651 ;; Add messages to sequence in source folder...
1652 (apply #'mh-exec-cmd-quiet nil
"mark" folder
1653 "-add" "-nozero" "-sequence" (symbol-name seq
)
1654 (mapcar (lambda (x) (format "%s" x
))
1655 (mh-coalesce-msg-list msgs
)))
1656 ;; Update source folder buffer if we have it open...
1657 (when (get-buffer folder
)
1658 (with-current-buffer folder
1659 (mh-put-msg-in-seq msgs seq
))))
1660 (mh-index-matching-source-msgs msgs
))
1664 (defun mh-index-delete-from-sequence (seq msgs
)
1665 "Delete from SEQ the messages in MSGS.
1666 This function updates the source folder sequences. Also makes an
1667 attempt to update the source folder buffer if present."
1669 (when (and (not (memq seq
(mh-unpropagated-sequences)))
1670 (mh-valid-seq-p seq
))
1672 (mh-speed-flists-inhibit-flag t
))
1673 (maphash (lambda (folder msgs
)
1674 (push folder folders
)
1675 ;; Remove messages from sequence in source folder...
1676 (apply #'mh-exec-cmd-quiet nil
"mark" folder
1677 "-del" "-nozero" "-sequence" (symbol-name seq
)
1678 (mapcar (lambda (x) (format "%s" x
))
1679 (mh-coalesce-msg-list msgs
)))
1680 ;; Update source folder buffer if we have it open...
1681 (when (get-buffer folder
)
1682 (with-current-buffer folder
1683 (mh-delete-msg-from-seq msgs seq t
))))
1684 (mh-index-matching-source-msgs msgs
))
1687 (defvar mh-unpropagated-sequences
'(cur range subject search
)
1688 "List of sequences that aren't preserved.")
1690 (defun mh-unpropagated-sequences ()
1691 "Return a list of sequences that aren't propagated to the source folders.
1692 It is just the sequences in the variable
1693 `mh-unpropagated-sequences' in addition to the
1694 Previous-Sequence (see mh-profile 5)."
1696 (cons mh-previous-seq mh-unpropagated-sequences
)
1697 mh-unpropagated-sequences
))
1699 (defun mh-index-matching-source-msgs (msgs &optional delete-from-index-data
)
1700 "Return a table of original messages and folders for messages in MSGS.
1701 If optional argument DELETE-FROM-INDEX-DATA is non-nil, then each
1702 of the messages, whose counter-part is found in some source
1703 folder, is removed from `mh-index-data'."
1704 (let ((table (make-hash-table :test
#'equal
)))
1706 (let* ((checksum (gethash msg mh-index-msg-checksum-map
))
1707 (pair (gethash checksum mh-index-checksum-origin-map
)))
1708 (when (and checksum
(car pair
) (cdr pair
)
1709 (mh-index-match-checksum (cdr pair
) (car pair
) checksum
))
1710 (push (cdr pair
) (gethash (car pair
) table
))
1711 (when delete-from-index-data
1712 (remhash (cdr pair
) (gethash (car pair
) mh-index-data
))))))
1715 (defun mh-index-match-checksum (msg folder checksum
)
1716 "Check if MSG in FOLDER has X-MHE-Checksum header value of CHECKSUM."
1718 (mh-exec-cmd-output mh-scan-prog nil
"-width" "80"
1719 "-format" "%{x-mhe-checksum}\n" folder msg
)
1720 (goto-char (point-min))
1721 (string-equal (buffer-substring-no-properties
1722 (point) (mh-line-end-position))
1727 ;;; Serialization of Index Data
1729 (defun mh-index-write-data ()
1730 "Write index data to file."
1732 (unless (eq major-mode
'mh-folder-mode
)
1733 (error "Can't be called from folder in \"%s\"" major-mode
))
1734 (let ((data mh-index-data
)
1735 (msg-checksum-map mh-index-msg-checksum-map
)
1736 (checksum-origin-map mh-index-checksum-origin-map
)
1737 (previous-search mh-index-previous-search
)
1738 (sequence-search-flag mh-index-sequence-search-flag
)
1739 (outfile (concat buffer-file-name mh-index-data-file
))
1742 (with-temp-file outfile
1743 (mh-index-write-hashtable
1744 data
(lambda (x) (loop for y being the hash-keys of x collect y
)))
1745 (mh-index-write-hashtable msg-checksum-map
#'identity
)
1746 (mh-index-write-hashtable checksum-origin-map
#'identity
)
1747 (pp previous-search
(current-buffer)) (insert "\n")
1748 (pp sequence-search-flag
(current-buffer)) (insert "\n")))))
1750 (defun mh-index-write-hashtable (table proc
)
1751 "Write TABLE to `current-buffer'.
1752 PROC is used to serialize the values corresponding to the hash
1754 (pp (loop for x being the hash-keys of table
1755 collect
(cons x
(funcall proc
(gethash x table
))))
1760 (defun mh-index-read-data ()
1761 "Read index data from file."
1763 (unless (eq major-mode
'mh-folder-mode
)
1764 (error "Can't be called from folder in \"%s\"" major-mode
))
1765 (let ((infile (concat buffer-file-name mh-index-data-file
))
1768 (insert-file-contents-literally infile
)
1769 (goto-char (point-min))
1770 (setq t1
(mh-index-read-hashtable
1772 (loop with table
= (make-hash-table :test
#'equal
)
1773 for x in data do
(setf (gethash x table
) t
)
1774 finally return table
)))
1775 t2
(mh-index-read-hashtable #'identity
)
1776 t3
(mh-index-read-hashtable #'identity
)
1777 t4
(read (current-buffer))
1778 t5
(read (current-buffer))))
1779 (setq mh-index-data t1
1780 mh-index-msg-checksum-map t2
1781 mh-index-checksum-origin-map t3
1782 mh-index-previous-search t4
1783 mh-index-sequence-search-flag t5
))))
1785 (defun mh-index-read-hashtable (proc)
1786 "From BUFFER read a hash table serialized as a list.
1787 PROC is used to convert the value to actual data."
1788 (loop with table
= (make-hash-table :test
#'equal
)
1789 for pair in
(read (current-buffer))
1790 do
(setf (gethash (car pair
) table
) (funcall proc
(cdr pair
)))
1791 finally return table
))
1795 ;;; Checksum Routines
1797 ;; A few different checksum programs are supported. The supported
1804 ;; To add support for your favorite checksum program add a clause to
1805 ;; the cond statement in mh-checksum-choose. This should set the
1806 ;; variable mh-checksum-cmd to the command line needed to run the
1807 ;; checksum program and should set mh-checksum-parser to a function
1808 ;; which returns a cons cell containing the message number and
1811 (defvar mh-checksum-cmd
)
1812 (defvar mh-checksum-parser
)
1814 (defun mh-checksum-choose ()
1815 "Check if a program to create a checksum is present."
1816 (unless (boundp 'mh-checksum-cmd
)
1817 (let ((exec-path (append '("/sbin" "/usr/sbin") exec-path
)))
1818 (cond ((executable-find "md5sum")
1819 (setq mh-checksum-cmd
(list (executable-find "md5sum")))
1820 (setq mh-checksum-parser
#'mh-md5sum-parser
))
1821 ((executable-find "openssl")
1822 (setq mh-checksum-cmd
(list (executable-find "openssl") "md5"))
1823 (setq mh-checksum-parser
#'mh-openssl-parser
))
1824 ((executable-find "md5")
1825 (setq mh-checksum-cmd
(list (executable-find "md5")))
1826 (setq mh-checksum-parser
#'mh-md5-parser
))
1827 (t (error "No suitable checksum program"))))))
1829 (defun mh-md5sum-parser ()
1830 "Parse md5sum output."
1831 (let ((begin (mh-line-beginning-position))
1832 (end (mh-line-end-position))
1833 first-space last-slash
)
1834 (setq first-space
(search-forward " " end t
))
1836 (setq last-slash
(search-backward "/" begin t
))
1837 (cond ((and first-space last-slash
)
1838 (cons (string-to-number (buffer-substring-no-properties
1839 (1+ last-slash
) end
))
1840 (buffer-substring-no-properties begin
(1- first-space
))))
1841 (t (cons nil nil
)))))
1843 (defun mh-openssl-parser ()
1844 "Parse openssl output."
1845 (let ((begin (mh-line-beginning-position))
1846 (end (mh-line-end-position))
1847 last-space last-slash
)
1849 (setq last-space
(search-backward " " begin t
))
1850 (setq last-slash
(search-backward "/" begin t
))
1851 (cond ((and last-slash last-space
)
1852 (cons (string-to-number (buffer-substring-no-properties
1853 (1+ last-slash
) (1- last-space
)))
1854 (buffer-substring-no-properties (1+ last-space
) end
))))))
1856 (defalias 'mh-md5-parser
'mh-openssl-parser
)
1859 (defun mh-index-update-maps (folder &optional origin-map
)
1860 "Annotate all as yet unannotated messages in FOLDER with their MD5 hash.
1861 As a side effect msg -> checksum map is updated. Optional
1862 argument ORIGIN-MAP is a hashtable which maps each message in the
1863 index folder to the original folder and message from whence it
1864 was copied. If present the checksum -> (origin-folder,
1865 origin-index) map is updated too."
1866 (clrhash mh-index-msg-checksum-map
)
1867 ;; Clear temp buffer
1868 (with-current-buffer (get-buffer-create mh-temp-checksum-buffer
)
1870 ;; Run scan to check if any messages needs MD5 annotations at all
1872 (mh-exec-cmd-output mh-scan-prog nil
"-width" "80"
1873 "-format" "%(msg)\n%{x-mhe-checksum}\n"
1875 (goto-char (point-min))
1878 (setq msg
(buffer-substring-no-properties
1879 (point) (mh-line-end-position)))
1882 (cond ((not (string-match "^[0-9]*$" msg
)))
1884 ;; need to compute checksum
1885 (set-buffer mh-temp-checksum-buffer
)
1886 (insert mh-user-path
(substring folder
1) "/" msg
"\n"))
1889 (setq checksum
(buffer-substring-no-properties
1890 (point) (mh-line-end-position)))
1891 (let ((msg (string-to-number msg
)))
1893 (mh-index-update-single-msg msg checksum origin-map
)))))
1895 ;; Run checksum program if needed
1896 (unless (and (eobp) (bobp))
1897 (apply #'mh-xargs mh-checksum-cmd
)
1898 (goto-char (point-min))
1900 (let* ((intermediate (funcall mh-checksum-parser
))
1901 (msg (car intermediate
))
1902 (checksum (cdr intermediate
)))
1905 (mh-exec-cmd "anno" folder msg
"-component" "X-MHE-Checksum"
1906 "-nodate" "-text" checksum
"-inplace")
1908 (with-current-buffer folder
1909 (mh-index-update-single-msg msg checksum origin-map
)))
1911 (mh-index-write-data))
1913 (defun mh-index-update-single-msg (msg checksum origin-map
)
1914 "Update various maps for one message.
1915 MSG is a index folder message, CHECKSUM its MD5 hash and
1916 ORIGIN-MAP, if non-nil, a hashtable containing which maps each
1917 message in the index folder to the folder and message that it was
1918 copied from. The function updates the hash tables
1919 `mh-index-msg-checksum-map' and `mh-index-checksum-origin-map'.
1921 This function should only be called in the appropriate index
1923 (cond ((gethash checksum mh-index-checksum-origin-map
)
1925 (let* ((intermediate (gethash msg origin-map
))
1926 (ofolder (car intermediate
))
1927 (omsg (cdr intermediate
)))
1928 ;; This is most probably a duplicate. So eliminate it.
1929 (call-process "rm" nil nil nil
1930 (format "%s%s/%s" mh-user-path
1931 (substring mh-current-folder
1) msg
))
1932 (when (gethash ofolder mh-index-data
)
1933 (remhash omsg
(gethash ofolder mh-index-data
))))))
1935 (setf (gethash msg mh-index-msg-checksum-map
) checksum
)
1936 (when (and origin-map
(gethash msg origin-map
))
1937 (setf (gethash checksum mh-index-checksum-origin-map
)
1938 (gethash msg origin-map
))))))
1941 (provide 'mh-search
)
1944 ;; indent-tabs-mode: nil
1945 ;; sentence-end-double-space: nil
1948 ;;; mh-search ends here