* mh-e.el (Version, mh-version): Update for release 8.2.90.
[emacs.git] / lisp / mh-e / mh-e.el
blob70d0cb5fcd5c8aa8fc43d67e0f2f01d39792cdcc
1 ;;; mh-e.el --- GNU Emacs interface to the MH mail system
3 ;; Copyright (C) 1985-1988, 1990, 1992-1995, 1997, 1999-2011
4 ;; Free Software Foundation, Inc.
6 ;; Author: Bill Wohler <wohler@newt.com>
7 ;; Maintainer: Bill Wohler <wohler@newt.com>
8 ;; Version: 8.2.90
9 ;; Keywords: mail
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; MH-E is an Emacs interface to the MH mail system.
30 ;; MH-E is supported in GNU Emacs 21 and higher, as well as XEmacs 21
31 ;; (except for versions 21.5.9-21.5.16). It is compatible with MH
32 ;; versions 6.8.4 and higher, all versions of nmh, and GNU mailutils
33 ;; 1.0 and higher. Gnus is also required; version 5.10 or higher is
34 ;; recommended.
36 ;; MH (Message Handler) is a powerful mail reader. See
37 ;; http://rand-mh.sourceforge.net/.
39 ;; N.B. MH must have been compiled with the MHE compiler flag or several
40 ;; features necessary for MH-E will be missing from MH commands, specifically
41 ;; the -build switch to repl and forw.
43 ;; How to use:
44 ;; M-x mh-rmail to read mail. Type C-h m there for a list of commands.
45 ;; C-u M-x mh-rmail to visit any folder.
46 ;; M-x mh-smail to send mail. From within the mail reader, "s" works, too.
48 ;; Your .emacs might benefit from these bindings:
49 ;; (global-set-key "\C-cr" 'mh-rmail)
50 ;; (global-set-key "\C-xm" 'mh-smail)
51 ;; (global-set-key "\C-x4m" 'mh-smail-other-window)
53 ;; If Emacs can't find mh-rmail or mh-smail, add the following to ~/.emacs:
54 ;; (require 'mh-autoloads)
56 ;; If you want to customize MH-E before explicitly loading it, add this:
57 ;; (require 'mh-cus-load)
59 ;; Mailing Lists:
60 ;; mh-e-users@lists.sourceforge.net
61 ;; mh-e-announce@lists.sourceforge.net
62 ;; mh-e-devel@lists.sourceforge.net
64 ;; Subscribe by sending a "subscribe" message to
65 ;; <list>-request@lists.sourceforge.net, or by using the web interface at
66 ;; https://sourceforge.net/mail/?group_id=13357
68 ;; Bug Reports:
69 ;; https://sourceforge.net/tracker/?group_id=13357&atid=113357
70 ;; Include the output of M-x mh-version in the bug report unless
71 ;; you're 110% sure we won't ask for it.
73 ;; Feature Requests:
74 ;; https://sourceforge.net/tracker/?group_id=13357&atid=363357
76 ;; Support:
77 ;; https://sourceforge.net/tracker/?group_id=13357&atid=213357
79 ;;; Change Log:
81 ;; Original version for Gosling emacs by Brian Reid, Stanford, 1982.
82 ;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985.
83 ;; Rewritten for GNU Emacs, James Larus, 1985.
84 ;; Modified by Stephen Gildea, 1988.
85 ;; Maintenance picked up by Bill Wohler and the
86 ;; SourceForge Crew <http://mh-e.sourceforge.net/>, 2001.
88 ;;; Code:
90 ;; Provide functions to the rest of MH-E. However, mh-e.el must not
91 ;; use any definitions in files that require mh-e from mh-loaddefs,
92 ;; for if it does it will introduce a require loop.
93 (require 'mh-loaddefs)
95 (mh-require-cl)
97 (require 'mh-buffers)
98 (require 'mh-compat)
100 (mh-do-in-xemacs
101 (require 'mh-xemacs))
103 (mh-font-lock-add-keywords
104 'emacs-lisp-mode
105 (eval-when-compile
106 `((,(concat "(\\("
107 ;; Function declarations (use font-lock-function-name-face).
108 "\\(def\\(un\\|macro\\)-mh\\)\\|"
109 ;; Variable declarations (use font-lock-variable-name-face).
110 "\\(def\\(custom\\|face\\)-mh\\)\\|"
111 ;; Group declarations (use font-lock-type-face).
112 "\\(defgroup-mh\\)"
113 "\\)\\>"
114 ;; Any whitespace and defined object.
115 "[ \t'\(]*"
116 "\\(setf[ \t]+\\sw+)\\|\\sw+\\)?")
117 (1 font-lock-keyword-face)
118 (7 (cond ((match-beginning 2) font-lock-function-name-face)
119 ((match-beginning 4) font-lock-variable-name-face)
120 (t font-lock-type-face))
121 nil t)))))
125 ;;; Global Variables
127 ;; Try to keep variables local to a single file. Provide accessors if
128 ;; variables are shared. Use this section as a last resort.
130 (defconst mh-version "8.2.90" "Version number of MH-E.")
132 ;; Variants
134 (defvar mh-sys-path
135 '("/usr/local/nmh/bin" ; nmh default
136 "/usr/local/bin/mh/"
137 "/usr/local/mh/"
138 "/usr/bin/mh/" ; Ultrix 4.2, Linux
139 "/usr/new/mh/" ; Ultrix < 4.2
140 "/usr/contrib/mh/bin/" ; BSDI
141 "/usr/pkg/bin/" ; NetBSD
142 "/usr/local/bin/"
143 "/usr/local/bin/mu-mh/" ; GNU mailutils MH - default
144 "/usr/bin/mu-mh/") ; GNU mailutils MH - packaged
145 "List of directories to search for variants of the MH variant.
146 The list `exec-path' is searched in addition to this list.
147 There's no need for users to modify this list. Instead add extra
148 directories to the customizable variable `mh-path'.")
150 (defvar mh-variants nil
151 "List describing known MH variants.
152 Do not access this variable directly as it may not have yet been initialized.
153 Use the function `mh-variants' instead.")
155 (defvar mh-variant-in-use nil
156 "The MH variant currently in use; a string with variant and version number.
157 This differs from `mh-variant' when the latter is set to
158 \"autodetect\".")
160 (defvar mh-progs nil
161 "Directory containing MH commands, such as inc, repl, and rmm.")
163 ;;;###autoload
164 (put 'mh-progs 'risky-local-variable t)
166 (defvar mh-lib nil
167 "Directory containing the MH library.
168 This directory contains, among other things, the components file.")
170 ;;;###autoload
171 (put 'mh-lib 'risky-local-variable t)
173 (defvar mh-lib-progs nil
174 "Directory containing MH helper programs.
175 This directory contains, among other things, the mhl program.")
177 ;;;###autoload
178 (put 'mh-lib-progs 'risky-local-variable t)
180 ;; Profile Components
182 (defvar mh-draft-folder nil
183 "Cached value of the \"Draft-Folder:\" MH profile component.
184 Name of folder containing draft messages.
185 Do not use a draft folder if nil.")
187 (defvar mh-inbox nil
188 "Cached value of the \"Inbox:\" MH profile component.
189 Set to \"+inbox\" if no such component.
190 Name of the Inbox folder.")
192 (defvar mh-user-path nil
193 "Cached value of the \"Path:\" MH profile component.
194 User's mail folder directory.")
196 ;; Maps declared here so that they can be used in docstrings.
198 (defvar mh-folder-mode-map (make-keymap)
199 "Keymap for MH-Folder mode.")
201 (defvar mh-folder-seq-tool-bar-map nil
202 "Keymap for MH-Folder tool bar.")
204 (defvar mh-folder-tool-bar-map nil
205 "Keymap for MH-Folder tool bar.")
207 (defvar mh-inc-spool-map (make-sparse-keymap)
208 "Keymap for MH-E's mh-inc-spool commands.")
210 (defvar mh-letter-mode-map (copy-keymap text-mode-map)
211 "Keymap for MH-Letter mode.")
213 (defvar mh-letter-tool-bar-map nil
214 "Keymap for MH-Letter tool bar.")
216 (defvar mh-search-mode-map (make-sparse-keymap)
217 "Keymap for MH-Search mode.")
219 (defvar mh-show-mode-map (make-sparse-keymap)
220 "Keymap MH-Show mode.")
222 (defvar mh-show-seq-tool-bar-map nil
223 "Keymap for MH-Show tool bar.")
225 (defvar mh-show-tool-bar-map nil
226 "Keymap for MH-Show tool bar.")
228 ;; MH-Folder Locals (alphabetical)
230 (defvar mh-arrow-marker nil
231 "Marker for arrow display in fringe.")
233 (defvar mh-colors-available-flag nil
234 "Non-nil means colors are available.")
236 (defvar mh-current-folder nil
237 "Name of current folder, a string.")
239 (defvar mh-delete-list nil
240 "List of message numbers to delete.
241 This variable can be used by
242 `mh-before-commands-processed-hook'.")
244 (defvar mh-folder-view-stack nil
245 "Stack of previous folder views.")
247 (defvar mh-index-data nil
248 "Info about index search results.")
250 (defvar mh-index-previous-search nil)
252 (defvar mh-index-msg-checksum-map nil)
254 (defvar mh-index-checksum-origin-map nil)
256 (defvar mh-index-sequence-search-flag nil)
258 (defvar mh-mode-line-annotation nil
259 "Message range displayed in buffer.")
261 (defvar mh-next-direction 'forward
262 "Direction to move to next message.")
264 (defvar mh-previous-window-config nil
265 "Window configuration before MH-E command.")
267 (defvar mh-refile-list nil
268 "List of folder names in `mh-seq-list'.
269 This variable can be used by
270 `mh-before-commands-processed-hook'.")
272 (defvar mh-seen-list nil
273 "List of displayed messages to be removed from the \"Unseen\" sequence.")
275 (defvar mh-seq-list nil
276 "Alist of this folder's sequences.
277 Elements have the form (SEQUENCE . MESSAGES).")
279 (defvar mh-sequence-notation-history nil
280 "Remember original notation that is overwritten by `mh-note-seq'.")
282 (defvar mh-show-buffer nil
283 "Buffer that displays message for this folder.")
285 (define-minor-mode mh-showing-mode
286 "Minor mode to show the message in a separate window."
287 ;; FIXME: maybe this should be moved to mh-show.el.
288 :lighter " Show")
290 (defvar mh-view-ops nil
291 "Stack of operations that change the folder view.
292 These operations include narrowing or threading.")
294 ;; MH-Show Locals (alphabetical)
296 (defvar mh-globals-hash (make-hash-table)
297 "Keeps track of MIME data on a per buffer basis.")
299 (defvar mh-show-folder-buffer nil
300 "Keeps track of folder whose message is being displayed.")
302 ;; MH-Letter Locals
304 (defvar mh-folders-changed nil
305 "Lists which folders were affected by deletes and refiles.
306 This list will always include the current folder
307 `mh-current-folder'. This variable can be used by
308 `mh-after-commands-processed-hook'.")
310 (defvar mh-mail-header-separator "--------"
311 "*Line used by MH to separate headers from text in messages being composed.
313 This variable should not be used directly in programs. Programs
314 should use `mail-header-separator' instead.
315 `mail-header-separator' is initialized to
316 `mh-mail-header-separator' in `mh-letter-mode'; in other
317 contexts, you may have to perform this initialization yourself.
319 Do not make this a regular expression as it may be the argument
320 to `insert' and it is passed through `regexp-quote' before being
321 used by functions like `re-search-forward'.")
323 (defvar mh-sent-from-folder nil
324 "Folder of msg assoc with this letter.")
326 (defvar mh-sent-from-msg nil
327 "Number of msg assoc with this letter.")
329 ;; Sequences
331 (defvar mh-unseen-seq nil
332 "Cached value of the \"Unseen-Sequence:\" MH profile component.
333 Name of the Unseen sequence.")
335 (defvar mh-previous-seq nil
336 "Cached value of the \"Previous-Sequence:\" MH profile component.
337 Name of the Previous sequence.")
339 ;; Etc. (alphabetical)
341 (defvar mh-flists-present-flag nil
342 "Non-nil means that we have \"flists\".")
344 (defvar mh-index-data-file ".mhe_index"
345 "MH-E specific file where index seach info is stored.")
347 (defvar mh-letter-header-field-regexp "^\\([A-Za-z][A-Za-z0-9-]*\\):")
349 (defvar mh-page-to-next-msg-flag nil
350 "Non-nil means next SPC or whatever goes to next undeleted message.")
352 (defvar mh-pgp-support-flag (not (not (locate-library "mml2015")))
353 "Non-nil means PGP support is available.")
355 (defvar mh-signature-separator "-- \n"
356 "Text of a signature separator.
358 A signature separator is used to separate the body of a message
359 from the signature. This can be used by user agents such as MH-E
360 to render the signature differently or to suppress the inclusion
361 of the signature in a reply. Use `mh-signature-separator-regexp'
362 when searching for a separator.")
364 (defvar mh-signature-separator-regexp "^-- $"
365 "This regular expression matches the signature separator.
366 See `mh-signature-separator'.")
368 (defvar mh-thread-scan-line-map nil
369 "Map of message index to various parts of the scan line.")
370 (make-variable-buffer-local 'mh-thread-scan-line-map)
372 (defvar mh-thread-scan-line-map-stack nil
373 "Old map of message index to various parts of the scan line.
374 This is the original map that is stored when the folder is
375 narrowed.")
376 (make-variable-buffer-local 'mh-thread-scan-line-map-stack)
378 (defvar mh-x-mailer-string nil
379 "*String containing the contents of the X-Mailer header field.
380 If nil, this variable is initialized to show the version of MH-E,
381 Emacs, and MH the first time a message is composed.")
385 ;;; MH-E Entry Points
387 (eval-when-compile (require 'gnus))
389 (defmacro mh-macro-expansion-time-gnus-version ()
390 "Return Gnus version available at macro expansion time.
391 The macro evaluates the Gnus version at macro expansion time. If
392 MH-E was compiled then macro expansion happens at compile time."
393 gnus-version)
395 (defun mh-run-time-gnus-version ()
396 "Return Gnus version available at run time."
397 (require 'gnus)
398 gnus-version)
400 ;;;###autoload
401 (defun mh-version ()
402 "Display version information about MH-E and the MH mail handling system."
403 (interactive)
404 (set-buffer (get-buffer-create mh-info-buffer))
405 (erase-buffer)
406 ;; MH-E version.
407 (insert "MH-E " mh-version "\n\n")
408 ;; MH-E compilation details.
409 (insert "MH-E compilation details:\n")
410 (let* ((compiled-mhe (byte-code-function-p (symbol-function 'mh-version)))
411 (gnus-compiled-version (if compiled-mhe
412 (mh-macro-expansion-time-gnus-version)
413 "N/A")))
414 (insert " Byte compiled:\t\t" (if compiled-mhe "yes" "no") "\n"
415 " Gnus (compile-time):\t" gnus-compiled-version "\n"
416 " Gnus (run-time):\t" (mh-run-time-gnus-version) "\n\n"))
417 ;; Emacs version.
418 (insert (emacs-version) "\n\n")
419 ;; MH version.
420 (if mh-variant-in-use
421 (insert mh-variant-in-use "\n"
422 " mh-progs:\t" mh-progs "\n"
423 " mh-lib:\t" mh-lib "\n"
424 " mh-lib-progs:\t" mh-lib-progs "\n\n")
425 (insert "No MH variant detected\n"))
426 ;; Linux version.
427 (condition-case ()
428 (call-process "uname" nil t nil "-a")
429 (file-error))
430 (goto-char (point-min))
431 (display-buffer mh-info-buffer))
435 ;;; Support Routines
437 (defun mh-list-to-string (l)
438 "Flatten the list L and make every element of the new list into a string."
439 (nreverse (mh-list-to-string-1 l)))
441 (defun mh-list-to-string-1 (l)
442 "Flatten the list L and make every element of the new list into a string."
443 (let (new-list)
444 (dolist (element l)
445 (cond ((null element))
446 ((symbolp element)
447 (push (symbol-name element) new-list))
448 ((numberp element)
449 (push (int-to-string element) new-list))
450 ((equal element ""))
451 ((stringp element)
452 (push element new-list))
453 ((listp element)
454 (setq new-list (nconc (mh-list-to-string-1 element) new-list)))
456 (error "Bad element: %s" element))))
457 new-list))
461 ;;; MH-E Process Support
463 (defvar mh-index-max-cmdline-args 500
464 "Maximum number of command line args.")
466 (defun mh-xargs (cmd &rest args)
467 "Partial imitation of xargs.
468 The current buffer contains a list of strings, one on each line.
469 The function will execute CMD with ARGS and pass the first
470 `mh-index-max-cmdline-args' strings to it. This is repeated till
471 all the strings have been used."
472 (goto-char (point-min))
473 (let ((current-buffer (current-buffer)))
474 (with-temp-buffer
475 (let ((out (current-buffer)))
476 (set-buffer current-buffer)
477 (while (not (eobp))
478 (let ((arg-list (reverse args))
479 (count 0))
480 (while (and (not (eobp)) (< count mh-index-max-cmdline-args))
481 (push (buffer-substring-no-properties (point)
482 (mh-line-end-position))
483 arg-list)
484 (incf count)
485 (forward-line))
486 (apply #'call-process cmd nil (list out nil) nil
487 (nreverse arg-list))))
488 (erase-buffer)
489 (insert-buffer-substring out)))))
491 ;; XXX This should be applied anywhere MH-E calls out to /bin/sh.
492 (defun mh-quote-for-shell (string)
493 "Quote STRING for /bin/sh.
494 Adds double-quotes around entire string and quotes the characters
495 \\, `, and $ with a backslash."
496 (concat "\""
497 (loop for x across string
498 concat (format (if (memq x '(?\\ ?` ?$)) "\\%c" "%c") x))
499 "\""))
501 (defun mh-exec-cmd (command &rest args)
502 "Execute mh-command COMMAND with ARGS.
503 The side effects are what is desired. Any output is assumed to be
504 an error and is shown to the user. The output is not read or
505 parsed by MH-E."
506 (with-current-buffer (get-buffer-create mh-log-buffer)
507 (let* ((initial-size (mh-truncate-log-buffer))
508 (start (point))
509 (args (mh-list-to-string args)))
510 (apply 'call-process (expand-file-name command mh-progs) nil t nil args)
511 (when (> (buffer-size) initial-size)
512 (save-excursion
513 (goto-char start)
514 (insert "Errors when executing: " command)
515 (loop for arg in args do (insert " " arg))
516 (insert "\n"))
517 (save-window-excursion
518 (switch-to-buffer-other-window mh-log-buffer)
519 (sit-for 5))))))
521 (defun mh-exec-cmd-error (env command &rest args)
522 "In environment ENV, execute mh-command COMMAND with ARGS.
523 ENV is nil or a string of space-separated \"var=value\" elements.
524 Signals an error if process does not complete successfully."
525 (with-current-buffer (get-buffer-create mh-temp-buffer)
526 (erase-buffer)
527 (let ((process-environment process-environment))
528 ;; XXX: We should purge the list that split-string returns of empty
529 ;; strings. This can happen in XEmacs if leading or trailing spaces
530 ;; are present.
531 (dolist (elem (if (stringp env) (split-string env " ") ()))
532 (push elem process-environment))
533 (mh-handle-process-error
534 command (apply #'call-process (expand-file-name command mh-progs)
535 nil t nil (mh-list-to-string args))))))
537 (defun mh-exec-cmd-daemon (command filter &rest args)
538 "Execute MH command COMMAND in the background.
540 If FILTER is non-nil then it is used to process the output
541 otherwise the default filter `mh-process-daemon' is used. See
542 `set-process-filter' for more details of FILTER.
544 ARGS are passed to COMMAND as command line arguments."
545 (with-current-buffer (get-buffer-create mh-log-buffer)
546 (mh-truncate-log-buffer))
547 (let* ((process-connection-type nil)
548 (process (apply 'start-process
549 command nil
550 (expand-file-name command mh-progs)
551 (mh-list-to-string args))))
552 (set-process-filter process (or filter 'mh-process-daemon))
553 process))
555 (defun mh-exec-cmd-env-daemon (env command filter &rest args)
556 "In environment ENV, execute mh-command COMMAND in the background.
558 ENV is nil or a string of space-separated \"var=value\" elements.
559 Signals an error if process does not complete successfully.
561 If FILTER is non-nil then it is used to process the output
562 otherwise the default filter `mh-process-daemon' is used. See
563 `set-process-filter' for more details of FILTER.
565 ARGS are passed to COMMAND as command line arguments."
566 (let ((process-environment process-environment))
567 (dolist (elem (if (stringp env) (split-string env " ") ()))
568 (push elem process-environment))
569 (apply #'mh-exec-cmd-daemon command filter args)))
571 (defun mh-process-daemon (process output)
572 "PROCESS daemon that puts OUTPUT into a temporary buffer.
573 Any output from the process is displayed in an asynchronous
574 pop-up window."
575 (with-current-buffer (get-buffer-create mh-log-buffer)
576 (insert-before-markers output)
577 (display-buffer mh-log-buffer)))
579 (defun mh-exec-cmd-quiet (raise-error command &rest args)
580 "Signal RAISE-ERROR if COMMAND with ARGS fails.
581 Execute MH command COMMAND with ARGS. ARGS is a list of strings.
582 Return at start of mh-temp buffer, where output can be parsed and
583 used.
584 Returns value of `call-process', which is 0 for success, unless
585 RAISE-ERROR is non-nil, in which case an error is signaled if
586 `call-process' returns non-0."
587 (set-buffer (get-buffer-create mh-temp-buffer))
588 (erase-buffer)
589 (let ((value
590 (apply 'call-process
591 (expand-file-name command mh-progs) nil t nil
592 args)))
593 (goto-char (point-min))
594 (if raise-error
595 (mh-handle-process-error command value)
596 value)))
598 (defun mh-exec-cmd-output (command display &rest args)
599 "Execute MH command COMMAND with DISPLAY flag and ARGS.
600 Put the output into buffer after point.
601 Set mark after inserted text.
602 Output is expected to be shown to user, not parsed by MH-E."
603 (push-mark (point) t)
604 (apply 'call-process
605 (expand-file-name command mh-progs) nil t display
606 (mh-list-to-string args))
608 ;; The following is used instead of 'exchange-point-and-mark because the
609 ;; latter activates the current region (between point and mark), which
610 ;; turns on highlighting. So prior to this bug fix, doing "inc" would
611 ;; highlight a region containing the new messages, which is undesirable.
612 ;; The bug wasn't seen in emacs21 but still occurred in XEmacs21.4.
613 (mh-exchange-point-and-mark-preserving-active-mark))
615 ;; Shush compiler.
616 (mh-do-in-xemacs
617 (defvar mark-active))
619 (defun mh-exchange-point-and-mark-preserving-active-mark ()
620 "Put the mark where point is now, and point where the mark is now.
621 This command works even when the mark is not active, and
622 preserves whether the mark is active or not."
623 (interactive nil)
624 (let ((is-active (and (boundp 'mark-active) mark-active)))
625 (let ((omark (mark t)))
626 (if (null omark)
627 (error "No mark set in this buffer"))
628 (set-mark (point))
629 (goto-char omark)
630 (if (boundp 'mark-active)
631 (setq mark-active is-active))
632 nil)))
634 (defun mh-exec-lib-cmd-output (command &rest args)
635 "Execute MH library command COMMAND with ARGS.
636 Put the output into buffer after point.
637 Set mark after inserted text."
638 (apply 'mh-exec-cmd-output (expand-file-name command mh-lib-progs) nil args))
640 (defun mh-handle-process-error (command status)
641 "Raise error if COMMAND returned non-zero STATUS, otherwise return STATUS."
642 (if (equal status 0)
643 status
644 (goto-char (point-min))
645 (insert (if (integerp status)
646 (format "%s: exit code %d\n" command status)
647 (format "%s: %s\n" command status)))
648 (let ((error-message (buffer-substring (point-min) (point-max))))
649 (with-current-buffer (get-buffer-create mh-log-buffer)
650 (mh-truncate-log-buffer)
651 (insert error-message)))
652 (error "%s failed, check buffer %s for error message"
653 command mh-log-buffer)))
657 ;;; MH-E Customization Support Routines
659 ;; Shush compiler (Emacs 21 and XEmacs).
660 (defvar customize-package-emacs-version-alist)
662 ;; Temporary function and data structure used customization.
663 ;; These will be unbound after the options are defined.
664 (defmacro mh-strip-package-version (args)
665 "Strip :package-version keyword and its value from ARGS.
666 In Emacs versions that support the :package-version keyword,
667 ARGS is returned unchanged."
668 `(if (boundp 'customize-package-emacs-version-alist)
669 ,args
670 (let (seen)
671 (loop for keyword in ,args
672 if (cond ((eq keyword ':package-version) (setq seen t) nil)
673 (seen (setq seen nil) nil)
674 (t t))
675 collect keyword))))
677 (defmacro defgroup-mh (symbol members doc &rest args)
678 "Declare SYMBOL as a customization group containing MEMBERS.
679 See documentation for `defgroup' for a description of the arguments
680 SYMBOL, MEMBERS, DOC and ARGS.
681 This macro is used by Emacs versions that lack the :package-version
682 keyword, introduced in Emacs 22."
683 (declare (doc-string 3))
684 `(defgroup ,symbol ,members ,doc ,@(mh-strip-package-version args)))
685 (put 'defgroup-mh 'lisp-indent-function 'defun)
687 (defmacro defcustom-mh (symbol value doc &rest args)
688 "Declare SYMBOL as a customizable variable that defaults to VALUE.
689 See documentation for `defcustom' for a description of the arguments
690 SYMBOL, VALUE, DOC and ARGS.
691 This macro is used by Emacs versions that lack the :package-version
692 keyword, introduced in Emacs 22."
693 (declare (doc-string 3))
694 `(defcustom ,symbol ,value ,doc ,@(mh-strip-package-version args)))
695 (put 'defcustom-mh 'lisp-indent-function 'defun)
697 (defmacro defface-mh (face spec doc &rest args)
698 "Declare FACE as a customizable face that defaults to SPEC.
699 See documentation for `defface' for a description of the arguments
700 FACE, SPEC, DOC and ARGS.
701 This macro is used by Emacs versions that lack the :package-version
702 keyword, introduced in Emacs 22."
703 (declare (doc-string 3))
704 `(defface ,face ,spec ,doc ,@(mh-strip-package-version args)))
705 (put 'defface-mh 'lisp-indent-function 'defun)
709 ;;; Variant Support
711 (defcustom-mh mh-path nil
712 "*Additional list of directories to search for MH.
713 See `mh-variant'."
714 :group 'mh-e
715 :type '(repeat (directory))
716 :package-version '(MH-E . "8.0"))
718 (defun mh-variants ()
719 "Return a list of installed variants of MH on the system.
720 This function looks for MH in `mh-sys-path', `mh-path' and
721 `exec-path'. The format of the list of variants that is returned
722 is described by the variable `mh-variants'."
723 (if mh-variants
724 mh-variants
725 (let ((list-unique))
726 ;; Make a unique list of directories, keeping the given order.
727 ;; We don't want the same MH variant to be listed multiple times.
728 (loop for dir in (append mh-path mh-sys-path exec-path) do
729 (setq dir (file-chase-links (directory-file-name dir)))
730 (add-to-list 'list-unique dir))
731 (loop for dir in (nreverse list-unique) do
732 (when (and dir (file-directory-p dir) (file-readable-p dir))
733 (let ((variant (mh-variant-info dir)))
734 (if variant
735 (add-to-list 'mh-variants variant)))))
736 mh-variants)))
738 (defun mh-variant-info (dir)
739 "Return MH variant found in DIR, or nil if none present."
740 (let ((tmp-buffer (get-buffer-create mh-temp-buffer)))
741 (with-current-buffer tmp-buffer
742 (cond
743 ((mh-variant-mh-info dir))
744 ((mh-variant-nmh-info dir))
745 ((mh-variant-gnu-mh-info dir))))))
747 (defun mh-variant-mh-info (dir)
748 "Return info for MH variant in DIR assuming a temporary buffer is set up."
749 ;; MH does not have the -version option.
750 ;; Its version number is included in the output of "-help" as:
752 ;; version: MH 6.8.4 #2[UCI] (burrito) of Fri Jan 15 20:01:39 EST 1999
753 ;; options: [ATHENA] [BIND] [DUMB] [LIBLOCKFILE] [LOCALE] [MAILGROUP] [MHE]
754 ;; [MHRC] [MIME] [MORE='"/usr/bin/sensible-pager"'] [NLINK_HACK]
755 ;; [NORUSERPASS] [OVERHEAD] [POP] [POPSERVICE='"pop-3"'] [RENAME]
756 ;; [RFC1342] [RPATHS] [RPOP] [SENDMTS] [SMTP] [SOCKETS]
757 ;; [SPRINTFTYPE=int] [SVR4] [SYS5] [SYS5DIR] [TERMINFO]
758 ;; [TYPESIG=void] [UNISTD] [UTK] [VSPRINTF]
759 (let ((mhparam (expand-file-name "mhparam" dir)))
760 (when (mh-file-command-p mhparam)
761 (erase-buffer)
762 (call-process mhparam nil '(t nil) nil "-help")
763 (goto-char (point-min))
764 (when (search-forward-regexp "version: MH \\(\\S +\\)" nil t)
765 (let ((version (format "MH %s" (match-string 1))))
766 (erase-buffer)
767 (call-process mhparam nil '(t nil) nil "libdir")
768 (goto-char (point-min))
769 (when (search-forward-regexp "^.*$" nil t)
770 (let ((libdir (match-string 0)))
771 `(,version
772 (variant mh)
773 (mh-lib-progs ,libdir)
774 (mh-lib ,libdir)
775 (mh-progs ,dir)
776 (flists nil)))))))))
778 (defun mh-variant-gnu-mh-info (dir)
779 "Return info for GNU mailutils MH variant in DIR.
780 This assumes that a temporary buffer is set up."
781 ;; 'mhparam -version' output:
782 ;; mhparam (GNU mailutils 0.3.2)
783 (let ((mhparam (expand-file-name "mhparam" dir)))
784 (when (mh-file-command-p mhparam)
785 (erase-buffer)
786 (call-process mhparam nil '(t nil) nil "-version")
787 (goto-char (point-min))
788 (when (search-forward-regexp "mhparam (\\(GNU [Mm]ailutils \\S +\\))"
789 nil t)
790 (let ((version (match-string 1))
791 (mh-progs dir))
792 `(,version
793 (variant gnu-mh)
794 (mh-lib-progs ,(mh-profile-component "libdir"))
795 (mh-lib ,(mh-profile-component "etcdir"))
796 (mh-progs ,dir)
797 (flists ,(file-exists-p
798 (expand-file-name "flists" dir)))))))))
800 (defun mh-variant-nmh-info (dir)
801 "Return info for nmh variant in DIR assuming a temporary buffer is set up."
802 ;; `mhparam -version' outputs:
803 ;; mhparam -- nmh-1.1-RC1 [compiled on chaak at Fri Jun 20 11:03:28 PDT 2003]
804 (let ((mhparam (expand-file-name "mhparam" dir)))
805 (when (mh-file-command-p mhparam)
806 (erase-buffer)
807 (call-process mhparam nil '(t nil) nil "-version")
808 (goto-char (point-min))
809 (when (search-forward-regexp "mhparam -- nmh-\\(\\S +\\)" nil t)
810 (let ((version (format "nmh %s" (match-string 1)))
811 (mh-progs dir))
812 `(,version
813 (variant nmh)
814 (mh-lib-progs ,(mh-profile-component "libdir"))
815 (mh-lib ,(mh-profile-component "etcdir"))
816 (mh-progs ,dir)
817 (flists ,(file-exists-p
818 (expand-file-name "flists" dir)))))))))
820 (defun mh-file-command-p (file)
821 "Return t if file FILE is the name of a executable regular file."
822 (and (file-regular-p file) (file-executable-p file)))
824 (defun mh-variant-set-variant (variant)
825 "Set up the system variables for the MH variant named VARIANT.
826 If VARIANT is a string, use that key in the alist returned by the
827 function `mh-variants'.
828 If VARIANT is a symbol, select the first entry that matches that
829 variant."
830 (cond
831 ((stringp variant) ;e.g. "nmh 1.1-RC1"
832 (when (assoc variant (mh-variants))
833 (let* ((alist (cdr (assoc variant (mh-variants))))
834 (lib-progs (cadr (assoc 'mh-lib-progs alist)))
835 (lib (cadr (assoc 'mh-lib alist)))
836 (progs (cadr (assoc 'mh-progs alist)))
837 (flists (cadr (assoc 'flists alist))))
838 ;;(set-default mh-variant variant)
839 (setq mh-x-mailer-string nil
840 mh-flists-present-flag flists
841 mh-lib-progs lib-progs
842 mh-lib lib
843 mh-progs progs
844 mh-variant-in-use variant))))
845 ((symbolp variant) ;e.g. 'nmh (pick the first match)
846 (loop for variant-list in (mh-variants)
847 when (eq variant (cadr (assoc 'variant (cdr variant-list))))
848 return (let* ((version (car variant-list))
849 (alist (cdr variant-list))
850 (lib-progs (cadr (assoc 'mh-lib-progs alist)))
851 (lib (cadr (assoc 'mh-lib alist)))
852 (progs (cadr (assoc 'mh-progs alist)))
853 (flists (cadr (assoc 'flists alist))))
854 ;;(set-default mh-variant flavor)
855 (setq mh-x-mailer-string nil
856 mh-flists-present-flag flists
857 mh-lib-progs lib-progs
858 mh-lib lib
859 mh-progs progs
860 mh-variant-in-use version)
861 t)))))
863 (defun mh-variant-p (&rest variants)
864 "Return t if variant is any of VARIANTS.
865 Currently known variants are 'MH, 'nmh, and 'gnu-mh."
866 (let ((variant-in-use
867 (cadr (assoc 'variant (assoc mh-variant-in-use (mh-variants))))))
868 (not (null (member variant-in-use variants)))))
870 (defun mh-profile-component (component)
871 "Return COMPONENT value from mhparam, or nil if unset."
872 (save-excursion
873 ;; MH and nmh use -components, GNU mailutils MH uses -component.
874 ;; Since MH and nmh work with an unambiguous prefix, the `s' is
875 ;; dropped here.
876 (mh-exec-cmd-quiet nil "mhparam" "-component" component)
877 (mh-profile-component-value component)))
879 (defun mh-profile-component-value (component)
880 "Find and return the value of COMPONENT in the current buffer.
881 Returns nil if the component is not in the buffer."
882 (let ((case-fold-search t))
883 (goto-char (point-min))
884 (cond ((not (re-search-forward (format "^%s:" component) nil t)) nil)
885 ((looking-at "[\t ]*$") nil)
887 (re-search-forward "[\t ]*\\([^\t \n].*\\)$" nil t)
888 (let ((start (match-beginning 1)))
889 (end-of-line)
890 (buffer-substring start (point)))))))
892 (defun mh-variant-set (variant)
893 "Set the MH variant to VARIANT.
894 Sets `mh-progs', `mh-lib', `mh-lib-progs' and
895 `mh-flists-present-flag'.
896 If the VARIANT is \"autodetect\", then first try nmh, then MH and
897 finally GNU mailutils MH."
898 (interactive
899 (list (completing-read
900 "MH variant: "
901 (mapcar (lambda (x) (list (car x))) (mh-variants))
902 nil t)))
904 ;; TODO Remove mu-mh backwards compatibility in 9.0.
905 (when (and (stringp variant)
906 (string-match "^mu-mh" variant))
907 (message
908 (format "%s\n%s; %s" "The variant name mu-mh has been renamed to gnu-mh"
909 "and will be removed in MH-E 9.0"
910 "try M-x customize-option mh-variant"))
911 (sit-for 5)
912 (setq variant (concat "gnu-mh" (substring variant (match-end 0)))))
914 (let ((valid-list (mapcar (lambda (x) (car x)) (mh-variants))))
915 (cond
916 ((eq variant 'none))
917 ((eq variant 'autodetect)
918 (cond
919 ((mh-variant-set-variant 'nmh)
920 (message "%s installed as MH variant" mh-variant-in-use))
921 ((mh-variant-set-variant 'mh)
922 (message "%s installed as MH variant" mh-variant-in-use))
923 ((mh-variant-set-variant 'gnu-mh)
924 (message "%s installed as MH variant" mh-variant-in-use))
926 (message "No MH variant found on the system"))))
927 ((member variant valid-list)
928 (when (not (mh-variant-set-variant variant))
929 (message "Warning: %s variant not found. Autodetecting..." variant)
930 (mh-variant-set 'autodetect)))
932 (message "Unknown variant %s; use %s"
933 variant
934 (mapconcat (lambda (x) (format "%s" (car x)))
935 (mh-variants) " or "))))))
937 (defcustom-mh mh-variant 'autodetect
938 "*Specifies the variant used by MH-E.
940 The default setting of this option is \"Auto-detect\" which means
941 that MH-E will automatically choose the first of nmh, MH, or GNU
942 mailutils MH that it finds in the directories listed in
943 `mh-path' (which you can customize), `mh-sys-path', and
944 `exec-path'. If MH-E can't find MH at all, you may have to
945 customize `mh-path' and add the directory in which the command
946 \"mhparam\" is located. If, on the other hand, you have both nmh
947 and GNU mailutils MH installed (for example) and
948 `mh-variant-in-use' was initialized to nmh but you want to use
949 GNU mailutils MH, then you can set this option to \"gnu-mh\".
951 When this variable is changed, MH-E resets `mh-progs', `mh-lib',
952 `mh-lib-progs', `mh-flists-present-flag', and `mh-variant-in-use'
953 accordingly. Prior to version 8, it was often necessary to set
954 some of these variables in \"~/.emacs\"; now it is no longer
955 necessary and can actually cause problems."
956 :type `(radio
957 (const :tag "Auto-detect" autodetect)
958 ,@(mapcar (lambda (x) `(const ,(car x))) (mh-variants)))
959 :set (lambda (symbol value)
960 (set-default symbol value) ;Done in mh-variant-set-variant!
961 (mh-variant-set value))
962 :group 'mh-e
963 :package-version '(MH-E . "8.0"))
967 ;;; MH-E Customization
969 ;; All of the defgroups, defcustoms, and deffaces in MH-E are found
970 ;; here. This makes it possible to customize modules that aren't
971 ;; loaded yet. It also makes it easier to organize the customization
972 ;; groups.
974 ;; This section contains the following sub-sections:
976 ;; 1. MH-E Customization Groups
978 ;; These are the customization group definitions. Every group has a
979 ;; associated manual node. The ordering is alphabetical, except for
980 ;; the groups mh-faces and mh-hooks which are last .
982 ;; 2. MH-E Customization
984 ;; These are the actual customization variables. There is a
985 ;; sub-section for each group in the MH-E Customization Groups
986 ;; section, in the same order, separated by page breaks. Within
987 ;; each section, variables are sorted alphabetically.
989 ;; 3. Hooks
991 ;; All hooks must be placed in the mh-hook group; in addition, add
992 ;; the group associated with the manual node in which the hook is
993 ;; described. Since the mh-hook group appears near the end of this
994 ;; section, the hooks will appear at the end of these other groups.
996 ;; 4. Faces
998 ;; All faces must be placed in the mh-faces group; in addition, add
999 ;; the group associated with the manual node in which the face is
1000 ;; described. Since the mh-faces group appears near the end of this
1001 ;; section, the faces will appear at the end of these other groups.
1003 (defun mh-customize (&optional delete-other-windows-flag)
1004 "Customize MH-E variables.
1005 If optional argument DELETE-OTHER-WINDOWS-FLAG is non-nil, other
1006 windows in the frame are removed."
1007 (interactive "P")
1008 (customize-group 'mh-e)
1009 (when delete-other-windows-flag
1010 (delete-other-windows)))
1012 (if (boundp 'customize-package-emacs-version-alist)
1013 (add-to-list 'customize-package-emacs-version-alist
1014 '(MH-E ("6.0" . "22.1") ("6.1" . "22.1") ("7.0" . "22.1")
1015 ("7.1" . "22.1") ("7.2" . "22.1") ("7.3" . "22.1")
1016 ("7.4" . "22.1") ("8.0" . "22.1"))))
1020 ;;; MH-E Customization Groups
1022 (defgroup-mh mh-e nil
1023 "Emacs interface to the MH mail system.
1024 MH is the Rand Mail Handler. Other implementations include nmh
1025 and GNU mailutils."
1026 :link '(custom-manual "(mh-e)Top")
1027 :group 'mail
1028 :package-version '(MH-E . "8.0"))
1030 (defgroup-mh mh-alias nil
1031 "Aliases."
1032 :link '(custom-manual "(mh-e)Aliases")
1033 :prefix "mh-alias-"
1034 :group 'mh-e
1035 :package-version '(MH-E . "7.1"))
1037 (defgroup-mh mh-folder nil
1038 "Organizing your mail with folders."
1039 :prefix "mh-"
1040 :link '(custom-manual "(mh-e)Folders")
1041 :group 'mh-e
1042 :package-version '(MH-E . "7.1"))
1044 (defgroup-mh mh-folder-selection nil
1045 "Folder selection."
1046 :prefix "mh-"
1047 :link '(custom-manual "(mh-e)Folder Selection")
1048 :group 'mh-e
1049 :package-version '(MH-E . "8.0"))
1051 (defgroup-mh mh-identity nil
1052 "Identities."
1053 :link '(custom-manual "(mh-e)Identities")
1054 :prefix "mh-identity-"
1055 :group 'mh-e
1056 :package-version '(MH-E . "7.1"))
1058 (defgroup-mh mh-inc nil
1059 "Incorporating your mail."
1060 :prefix "mh-inc-"
1061 :link '(custom-manual "(mh-e)Incorporating Mail")
1062 :group 'mh-e
1063 :package-version '(MH-E . "8.0"))
1065 (defgroup-mh mh-junk nil
1066 "Dealing with junk mail."
1067 :link '(custom-manual "(mh-e)Junk")
1068 :prefix "mh-junk-"
1069 :group 'mh-e
1070 :package-version '(MH-E . "7.3"))
1072 (defgroup-mh mh-letter nil
1073 "Editing a draft."
1074 :prefix "mh-"
1075 :link '(custom-manual "(mh-e)Editing Drafts")
1076 :group 'mh-e
1077 :package-version '(MH-E . "7.1"))
1079 (defgroup-mh mh-ranges nil
1080 "Ranges."
1081 :prefix "mh-"
1082 :link '(custom-manual "(mh-e)Ranges")
1083 :group 'mh-e
1084 :package-version '(MH-E . "8.0"))
1086 (defgroup-mh mh-scan-line-formats nil
1087 "Scan line formats."
1088 :link '(custom-manual "(mh-e)Scan Line Formats")
1089 :prefix "mh-"
1090 :group 'mh-e
1091 :package-version '(MH-E . "8.0"))
1093 (defgroup-mh mh-search nil
1094 "Searching."
1095 :link '(custom-manual "(mh-e)Searching")
1096 :prefix "mh-search-"
1097 :group 'mh-e
1098 :package-version '(MH-E . "8.0"))
1100 (defgroup-mh mh-sending-mail nil
1101 "Sending mail."
1102 :prefix "mh-"
1103 :link '(custom-manual "(mh-e)Sending Mail")
1104 :group 'mh-e
1105 :package-version '(MH-E . "8.0"))
1107 (defgroup-mh mh-sequences nil
1108 "Sequences."
1109 :prefix "mh-"
1110 :link '(custom-manual "(mh-e)Sequences")
1111 :group 'mh-e
1112 :package-version '(MH-E . "8.0"))
1114 (defgroup-mh mh-show nil
1115 "Reading your mail."
1116 :prefix "mh-"
1117 :link '(custom-manual "(mh-e)Reading Mail")
1118 :group 'mh-e
1119 :package-version '(MH-E . "7.1"))
1121 (defgroup-mh mh-speedbar nil
1122 "The speedbar."
1123 :prefix "mh-speed-"
1124 :link '(custom-manual "(mh-e)Speedbar")
1125 :group 'mh-e
1126 :package-version '(MH-E . "8.0"))
1128 (defgroup-mh mh-thread nil
1129 "Threading."
1130 :prefix "mh-thread-"
1131 :link '(custom-manual "(mh-e)Threading")
1132 :group 'mh-e
1133 :package-version '(MH-E . "8.0"))
1135 (defgroup-mh mh-tool-bar nil
1136 "The tool bar"
1137 :link '(custom-manual "(mh-e)Tool Bar")
1138 :prefix "mh-"
1139 :group 'mh-e
1140 :package-version '(MH-E . "8.0"))
1142 (defgroup-mh mh-hooks nil
1143 "MH-E hooks."
1144 :link '(custom-manual "(mh-e)Top")
1145 :prefix "mh-"
1146 :group 'mh-e
1147 :package-version '(MH-E . "7.1"))
1149 (defgroup-mh mh-faces nil
1150 "Faces used in MH-E."
1151 :link '(custom-manual "(mh-e)Top")
1152 :prefix "mh-"
1153 :group 'faces
1154 :group 'mh-e
1155 :package-version '(MH-E . "7.1"))
1159 ;;; MH-E Customization
1161 ;; See Variant Support, above, for mh-e group.
1163 ;;; Aliases (:group 'mh-alias)
1165 (defcustom-mh mh-alias-completion-ignore-case-flag t
1166 "*Non-nil means don't consider case significant in MH alias completion.
1168 As MH ignores case in the aliases, so too does MH-E. However, you
1169 may turn off this option to make case significant which can be
1170 used to segregate completion of your aliases. You might use
1171 lowercase for mailing lists and uppercase for people."
1172 :type 'boolean
1173 :group 'mh-alias
1174 :package-version '(MH-E . "7.1"))
1176 (defcustom-mh mh-alias-expand-aliases-flag nil
1177 "*Non-nil means to expand aliases entered in the minibuffer.
1179 In other words, aliases entered in the minibuffer will be
1180 expanded to the full address in the message draft. By default,
1181 this expansion is not performed."
1182 :type 'boolean
1183 :group 'mh-alias
1184 :package-version '(MH-E . "7.1"))
1186 (defcustom-mh mh-alias-flash-on-comma t
1187 "*Specify whether to flash address or warn on translation.
1189 This option controls the behavior when a [comma] is pressed while
1190 entering aliases or addresses. The default setting flashes the
1191 address associated with an address in the minibuffer briefly, but
1192 does not display a warning if the alias is not found."
1193 :type '(choice (const :tag "Flash but Don't Warn If No Alias" t)
1194 (const :tag "Flash and Warn If No Alias" 1)
1195 (const :tag "Don't Flash Nor Warn If No Alias" nil))
1196 :group 'mh-alias
1197 :package-version '(MH-E . "7.1"))
1199 (defcustom-mh mh-alias-insert-file nil
1200 "*Filename used to store a new MH-E alias.
1202 The default setting of this option is \"Use Aliasfile Profile
1203 Component\". This option can also hold the name of a file or a
1204 list a file names. If this option is set to a list of file names,
1205 or the \"Aliasfile:\" profile component contains more than one file
1206 name, MH-E will prompt for one of them when MH-E adds an alias."
1207 :type '(choice (const :tag "Use Aliasfile Profile Component" nil)
1208 (file :tag "Alias File")
1209 (repeat :tag "List of Alias Files" file))
1210 :group 'mh-alias
1211 :package-version '(MH-E . "7.1"))
1213 (defcustom-mh mh-alias-insertion-location 'sorted
1214 "Specifies where new aliases are entered in alias files.
1216 This option is set to \"Alphabetical\" by default. If you organize
1217 your alias file in other ways, then adding aliases to the \"Top\"
1218 or \"Bottom\" of your alias file might be more appropriate."
1219 :type '(choice (const :tag "Alphabetical" sorted)
1220 (const :tag "Top" top)
1221 (const :tag "Bottom" bottom))
1222 :group 'mh-alias
1223 :package-version '(MH-E . "7.1"))
1225 (defcustom-mh mh-alias-local-users t
1226 "*Non-nil means local users are added to alias completion.
1228 Aliases are created from \"/etc/passwd\" entries with a user ID
1229 larger than a magical number, typically 200. This can be a handy
1230 tool on a machine where you and co-workers exchange messages.
1231 These aliases have the form \"local.first.last\" if a real name is
1232 present in the password file. Otherwise, the alias will have the
1233 form \"local.login\".
1235 If you're on a system with thousands of users you don't know, and
1236 the loading of local aliases slows MH-E down noticeably, then
1237 turn this option off.
1239 This option also takes a string which is executed to generate the
1240 password file. For example, use \"ypcat passwd\" to obtain the
1241 NIS password file."
1242 :type '(choice (boolean) (string))
1243 :group 'mh-alias
1244 :package-version '(MH-E . "7.1"))
1246 (defcustom-mh mh-alias-local-users-prefix "local."
1247 "*String prefixed to the real names of users from the password file.
1248 This option can also be set to \"Use Login\".
1250 For example, consider the following password file entry:
1252 psg:x:1000:1000:Peter S Galbraith,,,:/home/psg:/bin/tcsh
1254 The following settings of this option will produce the associated
1255 aliases:
1257 \"local.\" local.peter.galbraith
1258 \"\" peter.galbraith
1259 Use Login psg
1261 This option has no effect if variable `mh-alias-local-users' is
1262 turned off."
1263 :type '(choice (const :tag "Use Login" nil)
1264 (string))
1265 :group 'mh-alias
1266 :package-version '(MH-E . "7.4"))
1268 (defcustom-mh mh-alias-passwd-gecos-comma-separator-flag t
1269 "*Non-nil means the gecos field in the password file uses a comma separator.
1271 In the example in `mh-alias-local-users-prefix', commas are used
1272 to separate different values within the so-called gecos field.
1273 This is a fairly common usage. However, in the rare case that the
1274 gecos field in your password file is not separated by commas and
1275 whose contents may contain commas, you can turn this option off."
1276 :type 'boolean
1277 :group 'mh-alias
1278 :package-version '(MH-E . "7.4"))
1280 ;;; Organizing Your Mail with Folders (:group 'mh-folder)
1282 (defcustom-mh mh-new-messages-folders t
1283 "Folders searched for the \"unseen\" sequence.
1285 Set this option to \"Inbox\" to search the \"+inbox\" folder or
1286 \"All\" to search all of the top level folders. Otherwise, list
1287 the folders that should be searched with the \"Choose Folders\"
1288 menu item.
1290 See also `mh-recursive-folders-flag'."
1291 :type '(choice (const :tag "Inbox" t)
1292 (const :tag "All" nil)
1293 (repeat :tag "Choose Folders" (string :tag "Folder")))
1294 :group 'mh-folder
1295 :package-version '(MH-E . "8.0"))
1297 (defcustom-mh mh-ticked-messages-folders t
1298 "Folders searched for `mh-tick-seq'.
1300 Set this option to \"Inbox\" to search the \"+inbox\" folder or
1301 \"All\" to search all of the top level folders. Otherwise, list
1302 the folders that should be searched with the \"Choose Folders\"
1303 menu item.
1305 See also `mh-recursive-folders-flag'."
1306 :type '(choice (const :tag "Inbox" t)
1307 (const :tag "All" nil)
1308 (repeat :tag "Choose Folders" (string :tag "Folder")))
1309 :group 'mh-folder
1310 :package-version '(MH-E . "8.0"))
1312 (defcustom-mh mh-large-folder 200
1313 "The number of messages that indicates a large folder.
1315 If a folder is deemed to be large, that is the number of messages
1316 in it exceed this value, then confirmation is needed when it is
1317 visited. Even when `mh-show-threads-flag' is non-nil, the folder
1318 is not automatically threaded, if it is large. If set to nil all
1319 folders are treated as if they are small."
1320 :type '(choice (const :tag "No Limit") integer)
1321 :group 'mh-folder
1322 :package-version '(MH-E . "7.0"))
1324 (defcustom-mh mh-recenter-summary-flag nil
1325 "*Non-nil means to recenter the summary window.
1327 If this option is turned on, recenter the summary window when the
1328 show window is toggled off."
1329 :type 'boolean
1330 :group 'mh-folder
1331 :package-version '(MH-E . "7.0"))
1333 (defcustom-mh mh-recursive-folders-flag nil
1334 "*Non-nil means that commands which operate on folders do so recursively."
1335 :type 'boolean
1336 :group 'mh-folder
1337 :package-version '(MH-E . "7.0"))
1339 (defcustom-mh mh-sortm-args nil
1340 "*Additional arguments for \"sortm\"\\<mh-folder-mode-map>.
1342 This option is consulted when a prefix argument is used with
1343 \\[mh-sort-folder]. Normally default arguments to \"sortm\" are
1344 specified in the MH profile. This option may be used to provide
1345 an alternate view. For example, \"'(\"-nolimit\" \"-textfield\"
1346 \"subject\")\" is a useful setting."
1347 :type 'string
1348 :group 'mh-folder
1349 :package-version '(MH-E . "8.0"))
1351 ;;; Folder Selection (:group 'mh-folder-selection)
1353 (defcustom-mh mh-default-folder-for-message-function nil
1354 "Function to select a default folder for refiling or \"Fcc:\".
1356 When this function is called, the current buffer contains the message
1357 being refiled and point is at the start of the message. This function
1358 should return the default folder as a string with a leading \"+\"
1359 sign. It can also return nil so that the last folder name is used as
1360 the default, or an empty string to suppress the default entirely."
1361 :type 'function
1362 :group 'mh-folder-selection
1363 :package-version '(MH-E . "8.0"))
1365 (defcustom-mh mh-default-folder-list nil
1366 "*List of addresses and folders.
1368 The folder name associated with the first address found in this
1369 list is used as the default for `mh-refile-msg' and similar
1370 functions. Each element in this list contains a \"Check Recipient\"
1371 item. If this item is turned on, then the address is checked
1372 against the recipient instead of the sender. This is useful for
1373 mailing lists.
1375 See `mh-prompt-for-refile-folder' and `mh-folder-from-address'
1376 for more information."
1377 :type '(repeat (list (regexp :tag "Address")
1378 (string :tag "Folder")
1379 (boolean :tag "Check Recipient")))
1380 :group 'mh-folder-selection
1381 :package-version '(MH-E . "7.2"))
1383 (defcustom-mh mh-default-folder-must-exist-flag t
1384 "*Non-nil means guessed folder name must exist to be used.
1386 If the derived folder does not exist, and this option is on, then
1387 the last folder name used is suggested. This is useful if you get
1388 mail from various people for whom you have an alias, but file
1389 them all in the same project folder.
1391 See `mh-prompt-for-refile-folder' and `mh-folder-from-address'
1392 for more information."
1393 :type 'boolean
1394 :group 'mh-folder-selection
1395 :package-version '(MH-E . "7.2"))
1397 (defcustom-mh mh-default-folder-prefix ""
1398 "*Prefix used for folder names generated from aliases.
1399 The prefix is used to prevent clutter in your mail directory.
1401 See `mh-prompt-for-refile-folder' and `mh-folder-from-address'
1402 for more information."
1403 :type 'string
1404 :group 'mh-folder-selection
1405 :package-version '(MH-E . "7.2"))
1407 ;;; Identities (:group 'mh-identity)
1409 (eval-and-compile
1410 (unless (fboundp 'mh-identity-make-menu-no-autoload)
1411 (defun mh-identity-make-menu-no-autoload ()
1412 "Temporary definition.
1413 Real definition will take effect when mh-identity is loaded."
1414 nil)))
1416 (defcustom-mh mh-identity-list nil
1417 "*List of identities.
1419 To customize this option, click on the \"INS\" button and enter a label
1420 such as \"Home\" or \"Work\". Then click on the \"INS\" button with the
1421 label \"Add at least one item below\". Then choose one of the items in
1422 the \"Value Menu\".
1424 You can specify an alternate \"From:\" header field using the \"From
1425 Field\" menu item. You must include a valid email address. A standard
1426 format is \"First Last <login@@host.domain>\". If you use an initial
1427 with a period, then you must quote your name as in '\"First I. Last\"
1428 <login@@host.domain>'. People usually list the name of the company
1429 where they work using the \"Organization Field\" menu item. Set any
1430 arbitrary header field and value in the \"Other Field\" menu item.
1431 Unless the header field is a standard one, precede the name of your
1432 field's label with \"X-\", as in \"X-Fruit-of-the-Day:\". The value of
1433 \"Attribution Verb\" overrides the setting of
1434 `mh-extract-from-attribution-verb'. Set your signature with the
1435 \"Signature\" menu item. You can specify the contents of
1436 `mh-signature-file-name', a file, or a function. Specify a different
1437 key to sign or encrypt messages with the \"GPG Key ID\" menu item.
1439 You can select the identities you have added via the menu called
1440 \"Identity\" in the MH-Letter buffer. You can also use
1441 \\[mh-insert-identity]. To clear the fields and signature added by the
1442 identity, select the \"None\" identity.
1444 The \"Identity\" menu contains two other items to save you from having
1445 to set the identity on every message. The menu item \"Set Default for
1446 Session\" can be used to set the default identity to the current
1447 identity until you exit Emacs. The menu item \"Save as Default\" sets
1448 the option `mh-identity-default' to the current identity setting. You
1449 can also customize the `mh-identity-default' option in the usual
1450 fashion."
1451 :type '(repeat (list :tag ""
1452 (string :tag "Label")
1453 (repeat :tag "Add at least one item below"
1454 (choice
1455 (cons :tag "From Field"
1456 (const "From")
1457 (string :tag "Value"))
1458 (cons :tag "Organization Field"
1459 (const "Organization")
1460 (string :tag "Value"))
1461 (cons :tag "Other Field"
1462 (string :tag "Field")
1463 (string :tag "Value"))
1464 (cons :tag "Attribution Verb"
1465 (const ":attribution-verb")
1466 (string :tag "Value"))
1467 (cons :tag "Signature"
1468 (const :tag "Signature"
1469 ":signature")
1470 (choice
1471 (const :tag "mh-signature-file-name"
1472 nil)
1473 (file)
1474 (function)))
1475 (cons :tag "GPG Key ID"
1476 (const :tag "GPG Key ID"
1477 ":pgg-default-user-id")
1478 (string :tag "Value"))))))
1479 :set (lambda (symbol value)
1480 (set-default symbol value)
1481 (mh-identity-make-menu-no-autoload))
1482 :group 'mh-identity
1483 :package-version '(MH-E . "7.1"))
1485 (defcustom-mh mh-auto-fields-list nil
1486 "List of recipients for which header lines are automatically inserted.
1488 This option can be used to set the identity depending on the
1489 recipient. To customize this option, click on the \"INS\" button and
1490 enter a regular expression for the recipient's address. Click on the
1491 \"INS\" button with the \"Add at least one item below\" label. Then choose
1492 one of the items in the \"Value Menu\".
1494 The \"Identity\" menu item is used to select an identity from those
1495 configured in `mh-identity-list'. All of the information for that
1496 identity will be added if the recipient matches. The \"Fcc Field\" menu
1497 item is used to select a folder that is used in the \"Fcc:\" header.
1498 When you send the message, MH will put a copy of your message in this
1499 folder. The \"Mail-Followup-To Field\" menu item is used to insert an
1500 \"Mail-Followup-To:\" header field with the recipients you provide. If
1501 the recipient's mail user agent supports this header field (as nmh
1502 does), then their replies will go to the addresses listed. This is
1503 useful if their replies go both to the list and to you and you don't
1504 have a mechanism to suppress duplicates. If you reply to someone not
1505 on the list, you must either remove the \"Mail-Followup-To:\" field, or
1506 ensure the recipient is also listed there so that he receives replies
1507 to your reply. Other header fields may be added using the \"Other
1508 Field\" menu item.
1510 These fields can only be added after the recipient is known. Once the
1511 header contains one or more recipients, run the
1512 \\[mh-insert-auto-fields] command or choose the \"Identity -> Insert
1513 Auto Fields\" menu item to insert these fields manually. However, you
1514 can just send the message and the fields will be added automatically.
1515 You are given a chance to see these fields and to confirm them before
1516 the message is actually sent. You can do away with this confirmation
1517 by turning off the option `mh-auto-fields-prompt-flag'.
1519 You should avoid using the same header field in `mh-auto-fields-list'
1520 and `mh-identity-list' definitions that may apply to the same message
1521 as the result is undefined."
1522 :type `(repeat
1523 (list :tag ""
1524 (string :tag "Recipient")
1525 (repeat :tag "Add at least one item below"
1526 (choice
1527 (cons :tag "Identity"
1528 (const ":identity")
1529 ,(append
1530 '(radio)
1531 (mapcar
1532 (function (lambda (arg) `(const ,arg)))
1533 (mapcar 'car mh-identity-list))))
1534 (cons :tag "Fcc Field"
1535 (const "fcc")
1536 (string :tag "Value"))
1537 (cons :tag "Mail-Followup-To Field"
1538 (const "Mail-Followup-To")
1539 (string :tag "Value"))
1540 (cons :tag "Other Field"
1541 (string :tag "Field")
1542 (string :tag "Value"))))))
1543 :group 'mh-identity
1544 :package-version '(MH-E . "7.3"))
1546 (defcustom-mh mh-auto-fields-prompt-flag t
1547 "*Non-nil means to prompt before sending if fields inserted.
1548 See `mh-auto-fields-list'."
1549 :type 'boolean
1550 :group 'mh-identity
1551 :package-version '(MH-E . "8.0"))
1553 (defcustom-mh mh-identity-default nil
1554 "Default identity to use when `mh-letter-mode' is called.
1555 See `mh-identity-list'."
1556 :type (append
1557 '(radio)
1558 (cons '(const :tag "None" nil)
1559 (mapcar (function (lambda (arg) `(const ,arg)))
1560 (mapcar 'car mh-identity-list))))
1561 :group 'mh-identity
1562 :package-version '(MH-E . "7.1"))
1564 (defcustom-mh mh-identity-handlers
1565 '(("From" . mh-identity-handler-top)
1566 (":default" . mh-identity-handler-bottom)
1567 (":attribution-verb" . mh-identity-handler-attribution-verb)
1568 (":signature" . mh-identity-handler-signature)
1569 (":pgg-default-user-id" . mh-identity-handler-gpg-identity))
1570 "Handler functions for fields in `mh-identity-list'.
1572 This option is used to change the way that fields, signatures,
1573 and attributions in `mh-identity-list' are added. To customize
1574 `mh-identity-handlers', replace the name of an existing handler
1575 function associated with the field you want to change with the
1576 name of a function you have written. You can also click on an
1577 \"INS\" button and insert a field of your choice and the name of
1578 the function you have written to handle it.
1580 The \"Field\" field can be any field that you've used in your
1581 `mh-identity-list'. The special fields \":attribution-verb\",
1582 \":signature\", or \":pgg-default-user-id\" are used for the
1583 `mh-identity-list' choices \"Attribution Verb\", \"Signature\", and
1584 \"GPG Key ID\" respectively.
1586 The handler associated with the \":default\" field is used when no
1587 other field matches.
1589 The handler functions are passed two or three arguments: the
1590 FIELD itself (for example, \"From\"), or one of the special
1591 fields (for example, \":signature\"), and the ACTION 'remove or
1592 'add. If the action is 'add, an additional argument
1593 containing the VALUE for the field is given."
1594 :type '(repeat (cons (string :tag "Field") function))
1595 :group 'mh-identity
1596 :package-version '(MH-E . "8.0"))
1598 ;;; Incorporating Your Mail (:group 'mh-inc)
1600 (defcustom-mh mh-inc-prog "inc"
1601 "*Program to incorporate new mail into a folder.
1603 This program generates a one-line summary for each of the new
1604 messages. Unless it is an absolute pathname, the file is assumed
1605 to be in the `mh-progs' directory. You may also link a file to
1606 \"inc\" that uses a different format. You'll then need to modify
1607 several scan line format variables appropriately."
1608 :type 'string
1609 :group 'mh-inc
1610 :package-version '(MH-E . "6.0"))
1612 (eval-and-compile
1613 (unless (fboundp 'mh-inc-spool-make-no-autoload)
1614 (defun mh-inc-spool-make-no-autoload ()
1615 "Temporary definition.
1616 Real definition will take effect when mh-inc is loaded."
1617 nil)))
1619 (defcustom-mh mh-inc-spool-list nil
1620 "*Alternate spool files.
1622 You can use the `mh-inc-spool-list' variable to direct MH-E to
1623 retrieve mail from arbitrary spool files other than your system
1624 mailbox, file it in folders other than your \"+inbox\", and assign
1625 key bindings to incorporate this mail.
1627 Suppose you are subscribed to the \"mh-e-devel\" mailing list and
1628 you use \"procmail\" to filter this mail into \"~/mail/mh-e\" with
1629 the following recipe in \".procmailrc\":
1631 MAILDIR=$HOME/mail
1633 * ^From mh-e-devel-admin@stop.mail-abuse.org
1634 mh-e
1636 In order to incorporate \"~/mail/mh-e\" into \"+mh-e\" with an
1637 \"I m\" (mh-inc-spool-mh-e) command, customize this option, and click
1638 on the \"INS\" button. Enter a \"Spool File\" of \"~/mail/mh-e\", a
1639 \"Folder\" of \"mh-e\", and a \"Key Binding\" of \"m\".
1641 You can use \"xbuffy\" to automate the incorporation of this mail
1642 using the Emacs 22 command \"emacsclient\" as follows:
1644 box ~/mail/mh-e
1645 title mh-e
1646 origMode
1647 polltime 10
1648 headertime 0
1649 command emacsclient --eval '(mh-inc-spool-mh-e)'
1651 In XEmacs, the command \"gnuclient\" is used in a similar
1652 fashion."
1653 :type '(repeat (list (file :tag "Spool File")
1654 (string :tag "Folder")
1655 (character :tag "Key Binding")))
1656 :set (lambda (symbol value)
1657 (set-default symbol value)
1658 (mh-inc-spool-make-no-autoload))
1659 :group 'mh-inc
1660 :package-version '(MH-E . "7.3"))
1662 ;;; Dealing with Junk Mail (:group 'mh-junk)
1664 (defvar mh-junk-choice nil
1665 "Chosen spam fighting program.")
1667 ;; Available spam filter interfaces
1668 (defvar mh-junk-function-alist
1669 '((spamassassin mh-spamassassin-blacklist mh-spamassassin-whitelist)
1670 (bogofilter mh-bogofilter-blacklist mh-bogofilter-whitelist)
1671 (spamprobe mh-spamprobe-blacklist mh-spamprobe-whitelist))
1672 "Available choices of spam programs to use.
1674 This is an alist. For each element there are functions that
1675 blacklist a message as spam and whitelist a message incorrectly
1676 classified as spam.")
1678 (defun mh-junk-choose (symbol value)
1679 "Choose spam program to use.
1681 The function is always called with SYMBOL bound to
1682 `mh-junk-program' and VALUE bound to the new value of
1683 `mh-junk-program'. The function sets the variable
1684 `mh-junk-choice' in addition to `mh-junk-program'."
1685 (set symbol value) ;XXX shouldn't this be set-default?
1686 (setq mh-junk-choice
1687 (or value
1688 (loop for element in mh-junk-function-alist
1689 until (executable-find (symbol-name (car element)))
1690 finally return (car element)))))
1692 (defcustom-mh mh-junk-background nil
1693 "If on, spam programs are run in background.
1695 By default, the programs are run in the foreground, but this can
1696 be slow when junking large numbers of messages. If you have
1697 enough memory or don't junk that many messages at the same time,
1698 you might try turning on this option.
1700 Note that this option is used as the \"display\" argument in the
1701 call to `call-process'. Therefore, turning on this option means
1702 setting its value to \"0\". You can also set its value to t to
1703 direct the programs' output to the \"*MH-E Log*\" buffer; this
1704 may be useful for debugging."
1705 :type '(choice (const :tag "Off" nil)
1706 (const :tag "On" 0))
1707 :group 'mh-junk
1708 :package-version '(MH-E . "8.0"))
1710 (defcustom-mh mh-junk-disposition nil
1711 "Disposition of junk mail."
1712 :type '(choice (const :tag "Delete Spam" nil)
1713 (string :tag "Spam Folder"))
1714 :group 'mh-junk
1715 :package-version '(MH-E . "8.0"))
1717 (defcustom-mh mh-junk-program nil
1718 "Spam program that MH-E should use.
1720 The default setting of this option is \"Auto-detect\" which means
1721 that MH-E will automatically choose one of SpamAssassin,
1722 bogofilter, or SpamProbe in that order. If, for example, you have
1723 both SpamAssassin and bogofilter installed and you want to use
1724 bogofilter, then you can set this option to \"Bogofilter\"."
1725 :type '(choice (const :tag "Auto-detect" nil)
1726 (const :tag "SpamAssassin" spamassassin)
1727 (const :tag "Bogofilter" bogofilter)
1728 (const :tag "SpamProbe" spamprobe))
1729 :set 'mh-junk-choose
1730 :group 'mh-junk
1731 :package-version '(MH-E . "7.3"))
1733 ;;; Editing a Draft (:group 'mh-letter)
1735 (defcustom-mh mh-compose-insertion (if (locate-library "mml") 'mml 'mh)
1736 "Type of tags used when composing MIME messages.
1738 In addition to MH-style directives, MH-E also supports MML (MIME
1739 Meta Language) tags. (see Info node `(emacs-mime)Composing').
1740 This option can be used to choose between them. By default, this
1741 option is set to \"MML\" if it is supported since it provides a
1742 lot more functionality. This option can also be set to \"MH\" if
1743 MH-style directives are preferred."
1744 :type '(choice (const :tag "MML" mml)
1745 (const :tag "MH" mh))
1746 :group 'mh-letter
1747 :package-version '(MH-E . "7.0"))
1749 (defcustom-mh mh-compose-skipped-header-fields
1750 '("From" "Organization" "References" "In-Reply-To"
1751 "X-Face" "Face" "X-Image-URL" "X-Mailer")
1752 "List of header fields to skip over when navigating in draft."
1753 :type '(repeat (string :tag "Field"))
1754 :group 'mh-letter
1755 :package-version '(MH-E . "7.4"))
1757 (defcustom-mh mh-compose-space-does-completion-flag nil
1758 "*Non-nil means \\<mh-letter-mode-map>\\[mh-letter-complete-or-space] does completion in message header."
1759 :type 'boolean
1760 :group 'mh-letter
1761 :package-version '(MH-E . "7.4"))
1763 (defcustom-mh mh-delete-yanked-msg-window-flag nil
1764 "*Non-nil means delete any window displaying the message.
1766 This deletes the window containing the original message after
1767 yanking it with \\<mh-letter-mode-map>\\[mh-yank-cur-msg] to make
1768 more room on your screen for your reply."
1769 :type 'boolean
1770 :group 'mh-letter
1771 :package-version '(MH-E . "7.0"))
1773 (defcustom-mh mh-extract-from-attribution-verb "wrote:"
1774 "*Verb to use for attribution when a message is yanked by \\<mh-letter-mode-map>\\[mh-yank-cur-msg].
1776 The attribution consists of the sender's name and email address
1777 followed by the content of this option. This option can be set to
1778 \"wrote:\", \"a écrit:\", and \"schrieb:\". You can also use the
1779 \"Custom String\" menu item to enter your own verb."
1780 :type '(choice (const "wrote:")
1781 (const "a écrit:")
1782 (const "schrieb:")
1783 (string :tag "Custom String"))
1784 :group 'mh-letter
1785 :package-version '(MH-E . "7.0"))
1787 (defcustom-mh mh-ins-buf-prefix "> "
1788 "*String to put before each line of a yanked or inserted message.
1790 The prefix \"> \" is the default setting of this option. I
1791 suggest that you not modify this option since it is used by many
1792 mailers and news readers: messages are far easier to read if
1793 several included messages have all been indented by the same
1794 string.
1796 This prefix is not inserted if you use one of the supercite
1797 flavors of `mh-yank-behavior' or you have added a
1798 `mail-citation-hook'."
1799 :type 'string
1800 :group 'mh-letter
1801 :package-version '(MH-E . "6.0"))
1803 (defcustom-mh mh-letter-complete-function 'ispell-complete-word
1804 "*Function to call when completing outside of address or folder fields.
1806 In the body of the message,
1807 \\<mh-letter-mode-map>\\[mh-letter-complete] runs this function,
1808 which is set to \"ispell-complete-word\" by default."
1809 :type '(choice function (const nil))
1810 :group 'mh-letter
1811 :package-version '(MH-E . "7.1"))
1813 (defcustom-mh mh-letter-fill-column 72
1814 "*Fill column to use in MH Letter mode.
1816 By default, this option is 72 to allow others to quote your
1817 message without line wrapping."
1818 :type 'integer
1819 :group 'mh-letter
1820 :package-version '(MH-E . "6.0"))
1822 (defcustom-mh mh-mml-method-default (if mh-pgp-support-flag "pgpmime" "none")
1823 "Default method to use in security tags.
1825 This option is used to select between a variety of mail security
1826 mechanisms. The default is \"PGP (MIME)\" if it is supported\;
1827 otherwise, the default is \"None\". Other mechanisms include
1828 vanilla \"PGP\" and \"S/MIME\".
1830 The `pgg' customization group may have some settings which may
1831 interest you (see Info node `(pgg)').
1833 In particular, I turn on the option `pgg-encrypt-for-me' so that
1834 all messages I encrypt are encrypted with my public key as well.
1835 If you keep a copy of all of your outgoing mail with a \"Fcc:\"
1836 header field, this setting is vital so that you can read the mail
1837 you write!"
1838 :type '(choice (const :tag "PGP (MIME)" "pgpmime")
1839 (const :tag "PGP" "pgp")
1840 (const :tag "S/MIME" "smime")
1841 (const :tag "None" "none"))
1842 :group 'mh-letter
1843 :package-version '(MH-E . "8.0"))
1845 (defcustom-mh mh-signature-file-name "~/.signature"
1846 "*Source of user's signature.
1848 By default, the text of your signature is taken from the file
1849 \"~/.signature\". You can read from other sources by changing this
1850 option. This file may contain a vCard in which case an attachment is
1851 added with the vCard.
1853 This option may also be a symbol, in which case that function is
1854 called. You may not want a signature separator to be added for you;
1855 instead you may want to insert one yourself. Options that you may find
1856 useful to do this include `mh-signature-separator' (when inserting a
1857 signature separator) and `mh-signature-separator-regexp' (for finding
1858 said separator). The function `mh-signature-separator-p', which
1859 reports t if the buffer contains a separator, may be useful as well.
1861 The signature is inserted into your message with the command
1862 \\<mh-letter-mode-map>\\[mh-insert-signature] or with the option
1863 `mh-identity-list'."
1864 :type 'file
1865 :group 'mh-letter
1866 :package-version '(MH-E . "6.0"))
1868 (defcustom-mh mh-signature-separator-flag t
1869 "*Non-nil means a signature separator should be inserted.
1871 It is not recommended that you change this option since various
1872 mail user agents, including MH-E, use the separator to present
1873 the signature differently, and to suppress the signature when
1874 replying or yanking a letter into a draft."
1875 :type 'boolean
1876 :group 'mh-letter
1877 :package-version '(MH-E . "8.0"))
1879 (defcustom-mh mh-x-face-file "~/.face"
1880 "*File containing face header field to insert in outgoing mail.
1882 If the file starts with either of the strings \"X-Face:\", \"Face:\"
1883 or \"X-Image-URL:\" then the contents are added to the message header
1884 verbatim. Otherwise it is assumed that the file contains the value of
1885 the \"X-Face:\" header field.
1887 The \"X-Face:\" header field, which is a low-resolution, black and
1888 white image, can be generated using the \"compface\" command (see URL
1889 `ftp://ftp.cs.indiana.edu/pub/faces/compface/compface.tar.Z'). The
1890 \"Online X-Face Converter\" is a useful resource for quick conversion
1891 of images into \"X-Face:\" header fields (see URL
1892 `http://www.dairiki.org/xface/').
1894 Use the \"make-face\" script to convert a JPEG image to the higher
1895 resolution, color, \"Face:\" header field (see URL
1896 `http://quimby.gnus.org/circus/face/make-face').
1898 The URL of any image can be used for the \"X-Image-URL:\" field and no
1899 processing of the image is required.
1901 To prevent the setting of any of these header fields, either set
1902 `mh-x-face-file' to nil, or simply ensure that the file defined by
1903 this option doesn't exist."
1904 :type 'file
1905 :group 'mh-letter
1906 :package-version '(MH-E . "7.0"))
1908 (defcustom-mh mh-yank-behavior 'attribution
1909 "*Controls which part of a message is yanked by \\<mh-letter-mode-map>\\[mh-yank-cur-msg].
1911 To include the entire message, including the entire header, use
1912 \"Body and Header\". Use \"Body\" to yank just the body without
1913 the header. To yank only the portion of the message following the
1914 point, set this option to \"Below Point\".
1916 Choose \"Invoke supercite\" to pass the entire message and header
1917 through supercite.
1919 If the \"Body With Attribution\" setting is used, then the
1920 message minus the header is yanked and a simple attribution line
1921 is added at the top using the value of the option
1922 `mh-extract-from-attribution-verb'. This is the default.
1924 If the \"Invoke supercite\" or \"Body With Attribution\" settings
1925 are used, the \"-noformat\" argument is passed to the \"repl\"
1926 program to override a \"-filter\" or \"-format\" argument. These
1927 settings also have \"Automatically\" variants that perform the
1928 action automatically when you reply so that you don't need to use
1929 \\[mh-yank-cur-msg] at all. Note that this automatic action is
1930 only performed if the show buffer matches the message being
1931 replied to. People who use the automatic variants tend to turn on
1932 the option `mh-delete-yanked-msg-window-flag' as well so that the
1933 show window is never displayed.
1935 If the show buffer has a region, the option `mh-yank-behavior' is
1936 ignored unless its value is one of Attribution variants in which
1937 case the attribution is added to the yanked region.
1939 If this option is set to one of the supercite flavors, the hook
1940 `mail-citation-hook' is ignored and `mh-ins-buf-prefix' is not
1941 inserted."
1942 :type '(choice (const :tag "Body and Header" t)
1943 (const :tag "Body" body)
1944 (const :tag "Below Point" nil)
1945 (const :tag "Invoke supercite" supercite)
1946 (const :tag "Invoke supercite, Automatically" autosupercite)
1947 (const :tag "Body With Attribution" attribution)
1948 (const :tag "Body With Attribution, Automatically"
1949 autoattrib))
1950 :group 'mh-letter
1951 :package-version '(MH-E . "8.0"))
1953 ;;; Ranges (:group 'mh-ranges)
1955 (defcustom-mh mh-interpret-number-as-range-flag t
1956 "*Non-nil means interpret a number as a range.
1958 Since one of the most frequent ranges used is \"last:N\", MH-E
1959 will interpret input such as \"200\" as \"last:200\" if this
1960 option is on (which is the default). If you need to scan just the
1961 message 200, then use the range \"200:200\"."
1962 :type 'boolean
1963 :group 'mh-ranges
1964 :package-version '(MH-E . "7.4"))
1966 ;;; Scan Line Formats (:group 'mh-scan-line-formats)
1968 (eval-and-compile
1969 (unless (fboundp 'mh-adaptive-cmd-note-flag-check)
1970 (defun mh-adaptive-cmd-note-flag-check (symbol value)
1971 "Temporary definition.
1972 Real definition, below, uses variables that aren't defined yet."
1973 (set-default symbol value))))
1975 (defcustom-mh mh-adaptive-cmd-note-flag t
1976 "*Non-nil means that the message number width is determined dynamically.
1978 If you've created your own format to handle long message numbers,
1979 you'll be pleased to know you no longer need it since MH-E adapts its
1980 internal format based upon the largest message number if this option
1981 is on (the default). This option may only be turned on when
1982 `mh-scan-format-file' is set to \"Use MH-E scan Format\".
1984 If you prefer fixed-width message numbers, turn off this option and
1985 call `mh-set-cmd-note' with the width specified by your format file
1986 \(see `mh-scan-format-file'). For example, the default width is 4, so
1987 you would use \"(mh-set-cmd-note 4)\"."
1988 :type 'boolean
1989 :group 'mh-scan-line-formats
1990 :set 'mh-adaptive-cmd-note-flag-check
1991 :package-version '(MH-E . "7.0"))
1993 (defun mh-scan-format-file-check (symbol value)
1994 "Check if desired setting is valid.
1995 Throw an error if user tries to set `mh-scan-format-file' to
1996 anything but t when `mh-adaptive-cmd-note-flag' is on. Otherwise,
1997 set SYMBOL to VALUE."
1998 (if (and (not (eq value t))
1999 mh-adaptive-cmd-note-flag)
2000 (error "%s %s" "You must turn off `mh-adaptive-cmd-note-flag'"
2001 "unless you use \"Use MH-E scan Format\"")
2002 (set-default symbol value)))
2004 (defcustom-mh mh-scan-format-file t
2005 "Specifies the format file to pass to the scan program.
2007 The default setting for this option is \"Use MH-E scan Format\". This
2008 means that the format string will be taken from the either
2009 `mh-scan-format-mh' or `mh-scan-format-nmh' depending on whether MH or
2010 nmh (or GNU mailutils MH) is in use. This setting also enables you to
2011 turn on the `mh-adaptive-cmd-note-flag' option.
2013 You can also set this option to \"Use Default scan Format\" to get the
2014 same output as you would get if you ran \"scan\" from the shell. If
2015 you have a format file that you want MH-E to use but not MH, you can
2016 set this option to \"Specify a scan Format File\" and enter the name
2017 of your format file.
2019 If you change the format of the scan lines you'll need to tell MH-E
2020 how to parse the new format. As you will see, quite a lot of variables
2021 are involved to do that. Use \"\\[apropos] RET mh-scan.*regexp\" to
2022 obtain a list of these variables. You will also have to call
2023 `mh-set-cmd-note' if your notations are not in column 4 (columns in
2024 Emacs start with 0)."
2025 :type '(choice (const :tag "Use MH-E scan Format" t)
2026 (const :tag "Use Default scan Format" nil)
2027 (file :tag "Specify a scan Format File"))
2028 :group 'mh-scan-line-formats
2029 :set 'mh-scan-format-file-check
2030 :package-version '(MH-E . "6.0"))
2032 (defun mh-adaptive-cmd-note-flag-check (symbol value)
2033 "Check if desired setting is valid.
2034 Throw an error if user tries to turn on
2035 `mh-adaptive-cmd-note-flag' when `mh-scan-format-file' isn't t.
2036 Otherwise, set SYMBOL to VALUE."
2037 (if (and value
2038 (not (eq mh-scan-format-file t)))
2039 (error "%s %s" "Can't turn on unless `mh-scan-format-file'"
2040 "is set to \"Use MH-E scan Format\"")
2041 (set-default symbol value)))
2043 (defcustom-mh mh-scan-prog "scan"
2044 "*Program used to scan messages.
2046 The name of the program that generates a listing of one line per
2047 message is held in this option. Unless this variable contains an
2048 absolute pathname, it is assumed to be in the `mh-progs'
2049 directory. You may link another program to `scan' (see
2050 \"mh-profile(5)\") to produce a different type of listing."
2051 :type 'string
2052 :group 'mh-scan-line-formats
2053 :package-version '(MH-E . "6.0"))
2054 (make-variable-buffer-local 'mh-scan-prog)
2056 ;;; Searching (:group 'mh-search)
2058 (defcustom-mh mh-search-program nil
2059 "Search program that MH-E shall use.
2061 The default setting of this option is \"Auto-detect\" which means
2062 that MH-E will automatically choose one of swish++, swish-e,
2063 mairix, namazu, pick and grep in that order. If, for example, you
2064 have both swish++ and mairix installed and you want to use
2065 mairix, then you can set this option to \"mairix\".
2067 More information about setting up an indexing program to use with
2068 MH-E can be found in the documentation of `mh-search'."
2069 :type '(choice (const :tag "Auto-detect" nil)
2070 (const :tag "swish++" swish++)
2071 (const :tag "swish-e" swish)
2072 (const :tag "mairix" mairix)
2073 (const :tag "namazu" namazu)
2074 (const :tag "pick" pick)
2075 (const :tag "grep" grep))
2076 :group 'mh-search
2077 :package-version '(MH-E . "8.0"))
2079 ;;; Sending Mail (:group 'mh-sending-mail)
2081 (defcustom-mh mh-compose-forward-as-mime-flag t
2082 "*Non-nil means that messages are forwarded as attachments.
2084 By default, this option is on which means that the forwarded
2085 messages are included as attachments. If you would prefer to
2086 forward your messages verbatim (as text, inline), then turn off
2087 this option. Forwarding messages verbatim works well for short,
2088 textual messages, but your recipient won't be able to view any
2089 non-textual attachments that were in the forwarded message. Be
2090 aware that if you have \"forw: -mime\" in your MH profile, then
2091 forwarded messages will always be included as attachments
2092 regardless of the settings of this option."
2093 :type 'boolean
2094 :group 'mh-sending-mail
2095 :package-version '(MH-E . "8.0"))
2097 (defcustom-mh mh-compose-letter-function nil
2098 "Invoked when starting a new draft.
2100 However, it is the last function called before you edit your
2101 message. The consequence of this is that you can write a function
2102 to write and send the message for you. This function is passed
2103 three arguments: the contents of the TO, SUBJECT, and CC header
2104 fields."
2105 :type '(choice (const nil) function)
2106 :group 'mh-sending-mail
2107 :package-version '(MH-E . "6.0"))
2109 (defcustom-mh mh-compose-prompt-flag nil
2110 "*Non-nil means prompt for header fields when composing a new draft."
2111 :type 'boolean
2112 :group 'mh-sending-mail
2113 :package-version '(MH-E . "7.4"))
2115 (defcustom-mh mh-forward-subject-format "%s: %s"
2116 "*Format string for forwarded message subject.
2118 This option is a string which includes two escapes (\"%s\"). The
2119 first \"%s\" is replaced with the sender of the original message,
2120 and the second one is replaced with the original \"Subject:\"."
2121 :type 'string
2122 :group 'mh-sending-mail
2123 :package-version '(MH-E . "6.0"))
2125 (defcustom-mh mh-insert-x-mailer-flag t
2126 "*Non-nil means append an \"X-Mailer:\" header field to the header.
2128 This header field includes the version of MH-E and Emacs that you
2129 are using. If you don't want to participate in our marketing, you
2130 can turn this option off."
2131 :type 'boolean
2132 :group 'mh-sending-mail
2133 :package-version '(MH-E . "7.0"))
2135 (defcustom-mh mh-redist-full-contents-flag nil
2136 "*Non-nil means the \"dist\" command needs entire letter for redistribution.
2138 This option must be turned on if \"dist\" requires the whole
2139 letter for redistribution, which is the case if \"send\" is
2140 compiled with the BERK option (which many people abhor). If you
2141 find that MH will not allow you to redistribute a message that
2142 has been redistributed before, turn off this option."
2143 :type 'boolean
2144 :group 'mh-sending-mail
2145 :package-version '(MH-E . "8.0"))
2147 (defcustom-mh mh-reply-default-reply-to nil
2148 "*Sets the person or persons to whom a reply will be sent.
2150 This option is set to \"Prompt\" by default so that you are
2151 prompted for the recipient of a reply. If you find that most of
2152 the time that you specify \"cc\" when you reply to a message, set
2153 this option to \"cc\". Other choices include \"from\", \"to\", or
2154 \"all\". You can always edit the recipients in the draft."
2155 :type '(choice (const :tag "Prompt" nil)
2156 (const "from")
2157 (const "to")
2158 (const "cc")
2159 (const "all"))
2160 :group 'mh-sending-mail
2161 :package-version '(MH-E . "6.0"))
2163 (defcustom-mh mh-reply-show-message-flag t
2164 "*Non-nil means the MH-Show buffer is displayed when replying.
2166 If you include the message automatically, you can hide the
2167 MH-Show buffer by turning off this option.
2169 See also `mh-reply'."
2170 :type 'boolean
2171 :group 'mh-sending-mail
2172 :package-version '(MH-E . "7.0"))
2174 ;;; Sequences (:group 'mh-sequences)
2176 ;; If `mh-unpropagated-sequences' becomes a defcustom, add the following to
2177 ;; the docstring: "Additional sequences that should not to be preserved can be
2178 ;; specified by setting `mh-unpropagated-sequences' appropriately." XXX
2180 (defcustom-mh mh-refile-preserves-sequences-flag t
2181 "*Non-nil means that sequences are preserved when messages are refiled.
2183 If a message is in any sequence (except \"Previous-Sequence:\"
2184 and \"cur\") when it is refiled, then it will still be in those
2185 sequences in the destination folder. If this behavior is not
2186 desired, then turn off this option."
2187 :type 'boolean
2188 :group 'mh-sequences
2189 :package-version '(MH-E . "7.4"))
2191 (defcustom-mh mh-tick-seq 'tick
2192 "The name of the MH sequence for ticked messages.
2194 You can customize this option if you already use the \"tick\"
2195 sequence for your own use. You can also disable all of the
2196 ticking functions by choosing the \"Disable Ticking\" item but
2197 there isn't much advantage to that."
2198 :type '(choice (const :tag "Disable Ticking" nil)
2199 symbol)
2200 :group 'mh-sequences
2201 :package-version '(MH-E . "7.3"))
2203 (defcustom-mh mh-update-sequences-after-mh-show-flag t
2204 "*Non-nil means flush MH sequences to disk after message is shown\\<mh-folder-mode-map>.
2206 Three sequences are maintained internally by MH-E and pushed out
2207 to MH when a message is shown. They include the sequence
2208 specified by your \"Unseen-Sequence:\" profile entry, \"cur\",
2209 and the sequence listed by the option `mh-tick-seq' which is
2210 \"tick\" by default. If you do not like this behavior, turn off
2211 this option. You can then update the state manually with the
2212 \\[mh-execute-commands], \\[mh-quit], or \\[mh-update-sequences]
2213 commands."
2214 :type 'boolean
2215 :group 'mh-sequences
2216 :package-version '(MH-E . "7.0"))
2218 ;;; Reading Your Mail (:group 'mh-show)
2220 (defcustom-mh mh-bury-show-buffer-flag t
2221 "*Non-nil means show buffer is buried.
2223 One advantage of not burying the show buffer is that one can
2224 delete the show buffer more easily in an electric buffer list
2225 because of its proximity to its associated MH-Folder buffer. Try
2226 running \\[electric-buffer-list] to see what I mean."
2227 :type 'boolean
2228 :group 'mh-show
2229 :package-version '(MH-E . "7.0"))
2231 (defcustom-mh mh-clean-message-header-flag t
2232 "*Non-nil means remove extraneous header fields.
2234 See also `mh-invisible-header-fields-default' and
2235 `mh-invisible-header-fields'."
2236 :type 'boolean
2237 :group 'mh-show
2238 :package-version '(MH-E . "7.0"))
2240 (defcustom-mh mh-decode-mime-flag (not (not (locate-library "mm-decode")))
2241 "*Non-nil means attachments are handled\\<mh-folder-mode-map>.
2243 MH-E can handle attachments as well if the Gnus `mm-decode'
2244 library is present. If so, this option will be on. Otherwise,
2245 you'll see the MIME body parts rather than text or attachments.
2246 There isn't much point in turning off this option; however, you
2247 can inspect it if it appears that the body parts are not being
2248 interpreted correctly or toggle it with the command
2249 \\[mh-toggle-mh-decode-mime-flag] to view the raw message.
2251 This option also controls the display of quoted-printable
2252 messages and other graphical widgets. See the options
2253 `mh-graphical-smileys-flag' and `mh-graphical-emphasis-flag'."
2254 :type 'boolean
2255 :group 'mh-show
2256 :package-version '(MH-E . "7.0"))
2258 (defcustom-mh mh-display-buttons-for-alternatives-flag nil
2259 "*Non-nil means display buttons for all alternative attachments.
2261 Sometimes, a mail program will produce multiple alternatives of
2262 the attachment in increasing degree of faithfulness to the
2263 original content. By default, only the preferred alternative is
2264 displayed. If this option is on, then the preferred part is shown
2265 inline and buttons are shown for each of the other alternatives."
2266 :type 'boolean
2267 :group 'mh-show
2268 :package-version '(MH-E . "7.4"))
2270 (defcustom-mh mh-display-buttons-for-inline-parts-flag nil
2271 "*Non-nil means display buttons for all inline attachments\\<mh-folder-mode-map>.
2273 The sender can request that attachments should be viewed inline so
2274 that they do not really appear like an attachment at all to the
2275 reader. Most of the time, this is desirable, so by default MH-E
2276 suppresses the buttons for inline attachments. On the other hand, you
2277 may receive code or HTML which the sender has added to his message as
2278 inline attachments so that you can read them in MH-E. In this case, it
2279 is useful to see the buttons so that you know you don't have to cut
2280 and paste the code into a file; you can simply save the attachment.
2282 If you want to make the buttons visible for inline attachments, you
2283 can use the command \\[mh-toggle-mime-buttons] to toggle the
2284 visibility of these buttons. You can turn on these buttons permanently
2285 by turning on this option.
2287 MH-E cannot display all attachments inline however. It can display
2288 text (including HTML) and images."
2289 :type 'boolean
2290 :group 'mh-show
2291 :package-version '(MH-E . "7.0"))
2293 (defcustom-mh mh-do-not-confirm-flag nil
2294 "*Non-nil means non-reversible commands do not prompt for confirmation.
2296 Commands such as `mh-pack-folder' prompt to confirm whether to
2297 process outstanding moves and deletes or not before continuing.
2298 Turning on this option means that these actions will be
2299 performed--which is usually desired but cannot be
2300 retracted--without question."
2301 :type 'boolean
2302 :group 'mh-show
2303 :package-version '(MH-E . "7.0"))
2305 (defcustom-mh mh-fetch-x-image-url nil
2306 "*Control fetching of \"X-Image-URL:\" header field image.
2308 Ths option controls the fetching of the \"X-Image-URL:\" header
2309 field image with the following values:
2311 Ask Before Fetching
2312 You are prompted before the image is fetched. MH-E will
2313 remember your reply and will either use the already fetched
2314 image the next time the same URL is encountered or silently
2315 skip it if you didn't fetch it the first time. This is a
2316 good setting.
2318 Never Fetch
2319 Images are never fetched and only displayed if they are
2320 already present in the cache. This is the default.
2322 There isn't a value of \"Always Fetch\" for privacy and DOS (denial of
2323 service) reasons. For example, fetching a URL can tip off a spammer
2324 that you've read his email (which is why you shouldn't blindly answer
2325 yes if you've set this option to \"Ask Before Fetching\"). Someone may
2326 also flood your network and fill your disk drive by sending a torrent
2327 of messages, each specifying a unique URL to a very large file.
2329 The cache of images is found in the directory \".mhe-x-image-cache\"
2330 within your MH directory. You can add your own face to the \"From:\"
2331 field too. See Info node `(mh-e)Picture'.
2333 This setting only has effect if the option `mh-show-use-xface-flag' is
2334 turned on."
2336 :type '(choice (const :tag "Ask Before Fetching" ask)
2337 (const :tag "Never Fetch" nil))
2338 :group 'mh-show
2339 :package-version '(MH-E . "7.3"))
2341 (defcustom-mh mh-graphical-smileys-flag t
2342 "*Non-nil means graphical smileys are displayed.
2344 It is a long standing custom to inject body language using a
2345 cornucopia of punctuation, also known as the \"smileys\". MH-E
2346 can render these as graphical widgets if this option is turned
2347 on, which it is by default. Smileys include patterns such as :-)
2348 and ;-).
2350 This option is disabled if the option `mh-decode-mime-flag' is
2351 turned off."
2352 :type 'boolean
2353 :group 'mh-show
2354 :package-version '(MH-E . "7.0"))
2356 (defcustom-mh mh-graphical-emphasis-flag t
2357 "*Non-nil means graphical emphasis is displayed.
2359 A few typesetting features are indicated in ASCII text with
2360 certain characters. If your terminal supports it, MH-E can render
2361 these typesetting directives naturally if this option is turned
2362 on, which it is by default. For example, _underline_ will be
2363 underlined, *bold* will appear in bold, /italics/ will appear in
2364 italics, and so on. See the option `gnus-emphasis-alist' for the
2365 whole list.
2367 This option is disabled if the option `mh-decode-mime-flag' is
2368 turned off."
2369 :type 'boolean
2370 :group 'mh-show
2371 :package-version '(MH-E . "7.0"))
2373 (defcustom-mh mh-highlight-citation-style 'gnus
2374 "Style for highlighting citations.
2376 If the sender of the message has cited other messages in his
2377 message, then MH-E will highlight these citations to emphasize
2378 the sender's actual response. This option can be customized to
2379 change the highlighting style. The \"Multicolor\" method uses a
2380 different color for each indentation while the \"Monochrome\"
2381 method highlights all citations in red. To disable highlighting
2382 of citations entirely, choose \"None\"."
2383 :type '(choice (const :tag "Multicolor" gnus)
2384 (const :tag "Monochrome" font-lock)
2385 (const :tag "None" nil))
2386 :group 'mh-show
2387 :package-version '(MH-E . "8.0"))
2389 ;; These entries have been intentionally excluded by the developers.
2390 ;; "Comments:" ; RFC 2822 - show this one
2391 ;; "Fax:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2392 ;; "Mail-System-Version:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2393 ;; "Mailer:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2394 ;; "Organization:" ;
2395 ;; "Phone:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2396 ;; "Reply-By:" ; RFC 2156
2397 ;; "Reply-To:" ; RFC 2822
2398 ;; "Sender:" ;
2399 ;; "User-Agent:" ; Similar to X-Mailer, so display it.
2400 ;; "X-Mailer:" ;
2401 ;; "X-Operator:" ; Similar to X-Mailer, so display it
2403 ;; Keep fields alphabetized (set sort-fold-case to t first).
2404 ;; Mention source, if known.
2405 (defvar mh-invisible-header-fields-internal
2407 "Abuse-Reports-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2408 "Accept-Language:"
2409 "AcceptLanguage:"
2410 "Accreditor:" ; Habeas
2411 "Also-Control:" ; H. Spencer: News Article Format and Transmission, June 1994
2412 "Alternate-recipient:" ; RFC 2156
2413 "Approved-By:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2414 "Approved:" ; RFC 1036
2415 "Article-Names:" ; H. Spencer: News Article Format and Transmission, June 1994
2416 "Article-Updates:" ; H. Spencer: News Article Format and Transmission, June 1994
2417 "Authentication-Results:"
2418 "Auto-forwarded:" ; RFC 2156
2419 "Autoforwarded:" ; RFC 2156
2420 "Bestservhost:"
2421 "Bytes:"
2422 "Cancel-Key:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2423 "Cancel-Lock:" ; NNTP posts
2424 "Comment:" ; Shows up with DomainKeys
2425 "Content-" ; RFC 2045, 1123, 1766, 1864, 2045, 2110, 2156, 2183, 2912
2426 "Control:" ; RFC 1036
2427 "Conversion-With-Loss:" ; RFC 2156
2428 "Conversion:" ; RFC 2156
2429 "Delivered-To:" ; Egroups/yahoogroups mailing list manager
2430 "Delivery-Date:" ; RFC 2156
2431 "Delivery:"
2432 "Discarded-X400-" ; RFC 2156
2433 "Disclose-Recipients:" ; RFC 2156
2434 "Disposition-Notification-Options:" ; RFC 2298
2435 "Disposition-Notification-To:" ; RFC 2298
2436 "Distribution:" ; RFC 1036
2437 "DKIM-" ; http://antispam.yahoo.com/domainkeys
2438 "DL-Expansion-History:" ; RFC 2156
2439 "DomainKey-" ; http://antispam.yahoo.com/domainkeys
2440 "DomainKey-Signature:"
2441 "Encoding:" ; RFC 1505
2442 "Envelope-to:"
2443 "Errors-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2444 "Expires:" ; RFC 1036
2445 "Expiry-Date:" ; RFC 2156
2446 "Face:" ; Gnus Face header
2447 "Followup-To:" ; RFC 1036
2448 "For-Approval:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2449 "For-Comment:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2450 "For-Handdling:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2451 "Forwarded:" ; MH
2452 "From " ; sendmail
2453 "Generate-Delivery-Report:" ; RFC 2156
2454 "Importance:" ; RFC 2156, 2421
2455 "In-Reply-To:" ; RFC 2822
2456 "Incomplete-Copy:" ; RFC 2156
2457 "Keywords:" ; RFC 2822
2458 "Language:" ; RFC 2156
2459 "Lines:" ; RFC 1036
2460 "List-" ; RFC 2369, 2919
2461 "Mail-Copies-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2462 "Mail-Followup-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2463 "Mail-from:" ; MH
2464 "Mail-Reply-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2465 "Mailing-List:" ; Egroups/yahoogroups mailing list manager
2466 "Message-Content:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2467 "Message-Id:" ; RFC 822
2468 "Message-Type:" ; RFC 2156
2469 "Mime-Version" ; RFC 2045
2470 "Msgid:"
2471 "NNTP-" ; News
2472 "Obsoletes:" ; RFC 2156
2473 "Old-Return-Path:"
2474 "OpenPGP:"
2475 "Original-Encoded-Information-Types:" ; RFC 2156
2476 "Original-Lines:" ; mail to news
2477 "Original-Newsgroups:" ; mail to news
2478 "Original-NNTP-" ; mail to news
2479 "Original-Path:" ; mail to news
2480 "Original-Received:" ; mail to news
2481 "Original-Recipt:" ; RFC 2298
2482 "Original-To:" ; mail to news
2483 "Original-X-" ; mail to news
2484 "Origination-Client:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2485 "Originator:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2486 "P1-Content-Type:" ; X400
2487 "P1-Message-Id:" ; X400
2488 "P1-Recipient:" ; X400
2489 "Path:" ; RFC 1036
2490 "Pics-Label:" ; W3C
2491 "Posted-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2492 "Precedence:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2493 "Prev-Resent" ; MH
2494 "Prevent-NonDelivery-Report:" ; RFC 2156
2495 "Priority:" ; RFC 2156
2496 "Read-Receipt-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2497 "Received-SPF:" ; Gmail
2498 "Received:" ; RFC 822
2499 "References:" ; RFC 2822
2500 "Registered-Mail-Reply-Requested-By:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2501 "Remailed-" ; MH
2502 "Replaces:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2503 "Replied:" ; MH
2504 "Resent-" ; RFC 2822
2505 "Return-Path:" ; RFC 822
2506 "Return-Receipt-Requested:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2507 "Return-Receipt-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2508 "Seal-Send-Time:"
2509 "See-Also:" ; H. Spencer: News Article Format and Transmission, June 1994
2510 "Sensitivity:" ; RFC 2156, 2421
2511 "Speach-Act:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2512 "Status:" ; sendmail
2513 "Supersedes:" ; H. Spencer: News Article Format and Transmission, June 1994
2514 "Telefax:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2515 "Thread-"
2516 "Thread-Index:"
2517 "Thread-Topic:"
2518 "Translated-By:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2519 "Translation-Of:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2520 "Ua-Content-Id:" ; X400
2521 "Via:" ; MH
2522 "X-Abuse-and-DMCA-"
2523 "X-Abuse-Info:"
2524 "X-Accept-Language:" ; Netscape/Mozilla
2525 "X-Ack:"
2526 "X-Admin:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2527 "X-Administrivia-To:"
2528 "X-AMAZON" ; Amazon.com
2529 "X-AntiAbuse:" ; cPanel
2530 "X-Antivirus-Scanner:"
2531 "X-AOL-IP:" ; AOL WebMail
2532 "X-Apparently-From:" ; MS Outlook
2533 "X-Apparently-To:" ; Egroups/yahoogroups mailing list manager
2534 "X-Attribution:"
2535 "X-AuditID:"
2536 "X-Authenticated-Info:" ; Verizon.net?
2537 "X-Authenticated-Sender:" ; AT&T Message Center (webmail)
2538 "X-Authentication-Warning:" ; sendmail
2539 "X-Authority-Analysis:"
2540 "X-Barracuda-" ; Barracuda spam scores
2541 "X-Beenthere:" ; Mailman mailing list manager
2542 "X-Bigfish:"
2543 "X-Bogosity:" ; bogofilter
2544 "X-Brightmail-Tracker:" ; Brightmail
2545 "X-BrightmailFiltered:" ; Brightmail
2546 "X-Bugzilla-" ; Bugzilla
2547 "X-Campaignid:"
2548 "X-Comment:" ; AT&T Mailennium
2549 "X-Complaints-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2550 "X-Confirm-Reading-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2551 "X-Content-Filtered-By:"
2552 "X-ContentStamp:" ; NetZero
2553 "X-Country-Chain:" ; http://www.declude.com/x-note.htm
2554 "X-Cr-Hashedpuzzle:"
2555 "X-Cr-Puzzleid:"
2556 "X-Cron-Env:"
2557 "X-DCC-Usenix-Metrics:"
2558 "X-Declude-" ; http://www.declude.com/x-note.htm
2559 "X-Dedicated:"
2560 "X-Delivered"
2561 "X-DH-Virus-"
2562 "X-DMCA"
2563 "X-Domain:"
2564 "X-Echelon-Distraction"
2565 "X-EFL-Spamscore:" ; MIT alumni spam filtering
2566 "X-eGroups-" ; Egroups/yahoogroups mailing list manager
2567 "X-EID:"
2568 "X-ELNK-Trace:" ; Earthlink mailer
2569 "X-Enigmail-Version:"
2570 "X-Envelope-Date:" ; GNU mailutils
2571 "X-Envelope-From:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2572 "X-Envelope-Sender:"
2573 "X-Envelope-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2574 "X-EviteMessageId:" ; evite.com
2575 "X-Evolution:" ; Evolution mail client
2576 "X-ExtLoop"
2577 "X-Face:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2578 "X-fmx-"
2579 "X-Folder:" ; Spam
2580 "X-From-Line"
2581 "X-Gmail-" ; Gmail
2582 "X-Gnus-Mail-Source:" ; gnus
2583 "X-Google-" ; Google mail
2584 "X-Google-Sender-Auth:"
2585 "X-Greylist:" ; milter-greylist-1.2.1
2586 "X-Habeas-SWE-" ; Spam
2587 "X-Hashcash:" ; hashcash
2588 "X-HPL-"
2589 "X-HR-"
2590 "X-HTTP-UserAgent:"
2591 "X-Hz" ; Hertz
2592 "X-Identity:" ; http://www.declude.com/x-note.htm
2593 "X-Image-URL:"
2594 "X-IMAP:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2595 "X-Info:" ; NTMail
2596 "X-IronPort-" ; IronPort AV
2597 "X-ISI-4-30-3-MailScanner:"
2598 "X-J2-"
2599 "X-Juno-" ; Juno
2600 "X-Key:"
2601 "X-List-Host:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2602 "X-List-Subscribe:" ; Unknown mailing list managers
2603 "X-List-Unsubscribe:" ; Unknown mailing list managers
2604 "X-Listprocessor-" ; ListProc(tm) by CREN
2605 "X-Listserver:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2606 "X-Loop:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2607 "X-Lrde-Mailscanner:"
2608 "X-Lumos-SenderID:" ; Roving ConstantContact
2609 "X-Mail-from:" ; fastmail.fm
2610 "X-MAIL-INFO:" ; NetZero
2611 "X-Mailer_"
2612 "X-Mailing-List:" ; Unknown mailing list managers
2613 "X-Mailman-Approved-At:" ; Mailman mailing list manager
2614 "X-Mailman-Version:" ; Mailman mailing list manager
2615 "X-MailScanner" ; ListProc(tm) by CREN
2616 "X-Mailutils-Message-Id" ; GNU Mailutils
2617 "X-Majordomo:" ; Majordomo mailing list manager
2618 "X-MB-Message-" ; AOL WebMail
2619 "X-MDaemon-Deliver-To:"
2620 "X-MDRemoteIP:"
2621 "X-Message-Id"
2622 "X-Message-Type:"
2623 "X-MessageWall-Score:" ; Unknown mailing list manager, AUC TeX
2624 "X-MHE-Checksum:" ; Checksum added during index search
2625 "X-MIME-Autoconverted:" ; sendmail
2626 "X-MIMEOLE:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/sendmail
2627 "X-MIMETrack:"
2628 "X-Mms-" ; T-Mobile pictures
2629 "X-Mozilla-Status:" ; Netscape/Mozilla
2630 "X-MS-" ; MS Outlook
2631 "X-Msmail-" ; MS Outlook
2632 "X-MSMail-Priority" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2633 "X-NAI-Spam-" ; Network Associates Inc. SpamKiller
2634 "X-News:" ; News
2635 "X-Newsreader:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2636 "X-No-Archive:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2637 "X-Notes-Item:" ; Lotus Notes Domino structured header
2638 "X-OperatingSystem:"
2639 "X-ORBL:"
2640 "X-Orcl-Content-Type:"
2641 "X-Organization:"
2642 "X-Original-Arrival-Type:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2643 "X-Original-Complaints-To:"
2644 "X-Original-Date:" ; SourceForge mailing list manager
2645 "X-Original-To:"
2646 "X-Original-Trace:"
2647 "X-OriginalArrivalTime:" ; Hotmail
2648 "X-Originating-Email:" ; Hotmail
2649 "X-Originating-IP:" ; Hotmail
2650 "X-pair-"
2651 "X-PGP:"
2652 "X-PID:"
2653 "X-PMG-"
2654 "X-PMX-Version:"
2655 "X-Postfilter:"
2656 "X-Priority:" ; MS Outlook
2657 "X-Proofpoint-" ; Proofpoint mail filter
2658 "X-Provags-ID:"
2659 "X-PSTN-"
2660 "X-Qotd-" ; User added
2661 "X-RCPT-TO:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2662 "X-Received-Date:"
2663 "X-Received:"
2664 "X-Report-Abuse-To:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2665 "X-Request-"
2666 "X-Resolved-to:" ; fastmail.fm
2667 "X-Return-Path-Hint:" ; Roving ConstantContact
2668 "X-RIM-" ; Research In Motion (i.e. BlackBerry)
2669 "X-RM"
2670 "X-RocketYMMF:" ; Yahoo
2671 "X-Roving-" ; Roving ConstantContact
2672 "X-SA-Exim-" ; Exim SpamAssassin
2673 "X-Sasl-enc:" ; Apple Mail
2674 "X-SBClass:" ; Spam
2675 "X-SBNote:" ; Spam
2676 "X-SBPass:" ; Spam
2677 "X-SBRS:"
2678 "X-SBRule:" ; Spam
2679 "X-Scanned-By:"
2680 "X-Sender:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2681 "X-Server-Date:"
2682 "X-Server-Uuid:"
2683 "X-Service-Code:"
2684 "X-Sieve:" ; Sieve filtering
2685 "X-SMTP-"
2686 "X-Source"
2687 "X-Spam-" ; Spamassassin
2688 "X-SpamBouncer:" ; Spam
2689 "X-SPF-"
2690 "X-Status"
2691 "X-Submission-Address:"
2692 "X-Submissions-To:"
2693 "X-Sun-Charset:"
2694 "X-Telecom-Digest"
2695 "X-Trace:"
2696 "X-UID"
2697 "X-UIDL:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2698 "X-Unity"
2699 "X-UNTD-" ; NetZero
2700 "X-URI:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2701 "X-URL:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2702 "X-USANET-" ; usa.net
2703 "X-Usenet-Provider"
2704 "X-UserInfo1:"
2705 "X-Virus-" ;
2706 "X-Vms-To:"
2707 "X-VSMLoop:" ; NTMail
2708 "X-WebTV-Signature:"
2709 "X-Wss-Id:" ; Worldtalk gateways
2710 "X-X-Sender:" ; http://people.dsv.su.se/~jpalme/ietf/mail-headers/
2711 "X-Yahoo"
2712 "X-Yahoo-Newman-"
2713 "X-YMail-"
2714 "X400-" ; X400
2715 "Xref:" ; RFC 1036
2717 "List of default header fields that are not to be shown.
2719 Do not alter this variable directly. Instead, add entries from
2720 here that you would like to be displayed in
2721 `mh-invisible-header-fields-default' and add entries to hide in
2722 `mh-invisible-header-fields'.")
2724 (eval-and-compile
2725 (unless (fboundp 'mh-invisible-headers)
2726 (defun mh-invisible-headers ()
2727 "Temporary definition.
2728 Real definition, below, uses variables that aren't defined yet."
2729 nil)))
2731 (defvar mh-delay-invisible-header-generation-flag t
2732 "Non-nil means to delay the generation of invisible header fields.
2733 Because the function `mh-invisible-headers' uses both
2734 `mh-invisible-header-fields' and `mh-invisible-header-fields', it
2735 cannot be run until both variables have been initialized.")
2737 (defcustom-mh mh-invisible-header-fields nil
2738 "*Additional header fields to hide.
2740 Header fields that you would like to hide that aren't listed in
2741 `mh-invisible-header-fields-default' can be added to this option
2742 with a couple of caveats. Regular expressions are not allowed.
2743 Unique fields should have a \":\" suffix; otherwise, the element
2744 can be used to render invisible an entire class of fields that
2745 start with the same prefix.
2747 If you think a header field should be generally ignored, please
2748 update SF #1916032 (see URL
2749 `https://sourceforge.net/tracker/index.php?func=detail&aid=1916032&group_id=13357&atid=113357').
2751 See also `mh-clean-message-header-flag'."
2753 :type '(repeat (string :tag "Header field"))
2754 :set (lambda (symbol value)
2755 (set-default symbol value)
2756 (mh-invisible-headers))
2757 :group 'mh-show
2758 :package-version '(MH-E . "7.1"))
2760 (defcustom-mh mh-invisible-header-fields-default nil
2761 "*List of hidden header fields.
2763 The header fields listed in this option are hidden, although you
2764 can check off any field that you would like to see.
2766 Header fields that you would like to hide that aren't listed can
2767 be added to the option `mh-invisible-header-fields'.
2769 See also `mh-clean-message-header-flag'.
2771 If you think a header field should be added to this list, please
2772 update SF #1916032 (see URL
2773 `https://sourceforge.net/tracker/index.php?func=detail&aid=1916032&group_id=13357&atid=113357')."
2774 :type `(set ,@(mapcar (lambda (x) `(const ,x))
2775 mh-invisible-header-fields-internal))
2776 :set (lambda (symbol value)
2777 (set-default symbol value)
2778 (mh-invisible-headers))
2779 :group 'mh-show
2780 :package-version '(MH-E . "8.0"))
2782 (defvar mh-invisible-header-fields-compiled nil
2783 "*Regexp matching lines in a message header that are not to be shown.
2784 Do not alter this variable directly. Instead, customize
2785 `mh-invisible-header-fields-default' checking for fields normally
2786 hidden that you wish to display, and add extra entries to hide in
2787 `mh-invisible-header-fields'.")
2789 (defun mh-invisible-headers ()
2790 "Make or remake the variable `mh-invisible-header-fields-compiled'.
2791 Done using `mh-invisible-header-fields-internal' as input, from
2792 which entries from `mh-invisible-header-fields-default' are
2793 removed and entries from `mh-invisible-header-fields' are added."
2794 (let ((fields mh-invisible-header-fields-internal))
2795 (when mh-invisible-header-fields-default
2796 ;; Remove entries from `mh-invisible-header-fields-default'
2797 (setq fields
2798 (loop for x in fields
2799 unless (member x mh-invisible-header-fields-default)
2800 collect x)))
2801 (when (and (boundp 'mh-invisible-header-fields)
2802 mh-invisible-header-fields)
2803 (dolist (x mh-invisible-header-fields)
2804 (unless (member x fields) (setq fields (cons x fields)))))
2805 (if fields
2806 (setq mh-invisible-header-fields-compiled
2807 (concat
2809 ;; workaround for insufficient default
2810 (let ((max-specpdl-size 1000))
2811 (regexp-opt fields t))))
2812 (setq mh-invisible-header-fields-compiled nil))))
2814 ;; Compile invisible header fields.
2815 (mh-invisible-headers)
2817 (defcustom-mh mh-lpr-command-format "lpr -J '%s'"
2818 "*Command used to print\\<mh-folder-mode-map>.
2820 This option contains the Unix command line which performs the
2821 actual printing for the \\[mh-print-msg] command. The string can
2822 contain one escape, \"%s\", which is replaced by the name of the
2823 folder and the message number and is useful for print job names.
2824 I use \"mpage -h'%s' -b Letter -H1of -mlrtb -P\" which produces a
2825 nice header and adds a bit of margin so the text fits within my
2826 printer's margins.
2828 This options is not used by the commands \\[mh-ps-print-msg] or
2829 \\[mh-ps-print-msg-file]."
2830 :type 'string
2831 :group 'mh-show
2832 :package-version '(MH-E . "6.0"))
2834 (defcustom-mh mh-max-inline-image-height nil
2835 "*Maximum inline image height if \"Content-Disposition:\" is not present.
2837 Some older mail programs do not insert this needed plumbing to
2838 tell MH-E whether to display the attachments inline or not. If
2839 this is the case, MH-E will display these images inline if they
2840 are smaller than the window. However, you might want to allow
2841 larger images to be displayed inline. To do this, you can change
2842 the options `mh-max-inline-image-width' and
2843 `mh-max-inline-image-height' from their default value of zero to
2844 a large number. The size of your screen is a good choice for
2845 these numbers."
2846 :type '(choice (const nil) integer)
2847 :group 'mh-show
2848 :package-version '(MH-E . "7.0"))
2850 (defcustom-mh mh-max-inline-image-width nil
2851 "*Maximum inline image width if \"Content-Disposition:\" is not present.
2853 Some older mail programs do not insert this needed plumbing to
2854 tell MH-E whether to display the attachments inline or not. If
2855 this is the case, MH-E will display these images inline if they
2856 are smaller than the window. However, you might want to allow
2857 larger images to be displayed inline. To do this, you can change
2858 the options `mh-max-inline-image-width' and
2859 `mh-max-inline-image-height' from their default value of zero to
2860 a large number. The size of your screen is a good choice for
2861 these numbers."
2862 :type '(choice (const nil) integer)
2863 :group 'mh-show
2864 :package-version '(MH-E . "7.0"))
2866 (defcustom-mh mh-mhl-format-file nil
2867 "*Specifies the format file to pass to the \"mhl\" program.
2869 Normally MH-E takes care of displaying messages itself (rather than
2870 calling an MH program to do the work). If you'd rather have \"mhl\"
2871 display the message (within MH-E), change this option from its default
2872 value of \"Use Default mhl Format (Printing Only)\".
2874 You can set this option to \"Use Default mhl Format\" to get the same
2875 output as you would get if you ran \"mhl\" from the shell.
2877 If you have a format file that you want MH-E to use, you can set this
2878 option to \"Specify an mhl Format File\" and enter the name of your
2879 format file. Your format file should specify a non-zero value for
2880 \"overflowoffset\" to allow MH-E to parse the header. Note that
2881 \"mhl\" is always used for printing and forwarding; in this case, the
2882 value of this option is consulted if you have specified a format
2883 file."
2884 :type '(choice (const :tag "Use Default mhl Format (Printing Only)" nil)
2885 (const :tag "Use Default mhl Format" t)
2886 (file :tag "Specify an mhl Format File"))
2887 :group 'mh-show
2888 :package-version '(MH-E . "8.0"))
2890 (defcustom-mh mh-mime-save-parts-default-directory t
2891 "Default directory to use for \\<mh-folder-mode-map>\\[mh-mime-save-parts].
2893 The default value for this option is \"Prompt Always\" so that
2894 you are always prompted for the directory in which to save the
2895 attachments. However, if you usually use the same directory
2896 within a session, then you can set this option to \"Prompt the
2897 First Time\" to avoid the prompt each time. you can make this
2898 directory permanent by choosing \"Directory\" and entering the
2899 directory's name."
2900 :type '(choice (const :tag "Prompt the First Time" nil)
2901 (const :tag "Prompt Always" t)
2902 directory)
2903 :group 'mh-show
2904 :package-version '(MH-E . "7.0"))
2906 (defcustom-mh mh-print-background-flag nil
2907 "*Non-nil means messages should be printed in the background\\<mh-folder-mode-map>.
2909 Normally messages are printed in the foreground. If this is slow on
2910 your system, you may elect to turn off this option to print in the
2911 background.
2913 WARNING: If you do this, do not delete the message until it is printed
2914 or else the output may be truncated.
2916 This option is not used by the commands \\[mh-ps-print-msg] or
2917 \\[mh-ps-print-msg-file]."
2918 :type 'boolean
2919 :group 'mh-show
2920 :package-version '(MH-E . "7.0"))
2922 (defcustom-mh mh-show-maximum-size 0
2923 "*Maximum size of message (in bytes) to display automatically.
2925 This option provides an opportunity to skip over large messages
2926 which may be slow to load. The default value of 0 means that all
2927 message are shown regardless of size."
2928 :type 'integer
2929 :group 'mh-show
2930 :package-version '(MH-E . "8.0"))
2932 (defcustom-mh mh-show-use-xface-flag (>= emacs-major-version 21)
2933 "*Non-nil means display face images in MH-show buffers.
2935 MH-E can display the content of \"Face:\", \"X-Face:\", and
2936 \"X-Image-URL:\" header fields. If any of these fields occur in the
2937 header of your message, the sender's face will appear in the \"From:\"
2938 header field. If more than one of these fields appear, then the first
2939 field found in the order \"Face:\", \"X-Face:\", and \"X-Image-URL:\"
2940 will be used.
2942 The option `mh-show-use-xface-flag' is used to turn this feature on
2943 and off. This feature will be turned on by default if your system
2944 supports it.
2946 The first header field used, if present, is the Gnus-specific
2947 \"Face:\" field. The \"Face:\" field appeared in GNU Emacs 21 and
2948 XEmacs. For more information, see URL
2949 `http://quimby.gnus.org/circus/face/'. Next is the traditional
2950 \"X-Face:\" header field. The display of this field requires the
2951 \"uncompface\" program (see URL
2952 `ftp://ftp.cs.indiana.edu/pub/faces/compface/compface.tar.z'). Recent
2953 versions of XEmacs have internal support for \"X-Face:\" images. If
2954 your version of XEmacs does not, then you'll need both \"uncompface\"
2955 and the x-face package (see URL `ftp://ftp.jpl.org/pub/elisp/').
2957 Finally, MH-E will display images referenced by the \"X-Image-URL:\"
2958 header field if neither the \"Face:\" nor the \"X-Face:\" fields are
2959 present. The display of the images requires \"wget\" (see URL
2960 `http://www.gnu.org/software/wget/wget.html'), \"fetch\", or \"curl\"
2961 to fetch the image and the \"convert\" program from the ImageMagick
2962 suite (see URL `http://www.imagemagick.org/'). Of the three header
2963 fields this is the most efficient in terms of network usage since the
2964 image doesn't need to be transmitted with every single mail.
2966 The option `mh-fetch-x-image-url' controls the fetching of the
2967 \"X-Image-URL:\" header field image."
2968 :type 'boolean
2969 :group 'mh-show
2970 :package-version '(MH-E . "7.0"))
2972 (defcustom-mh mh-store-default-directory nil
2973 "*Default directory for \\<mh-folder-mode-map>\\[mh-store-msg].
2975 If you would like to change the initial default directory,
2976 customize this option, change the value from \"Current\" to
2977 \"Directory\", and then enter the name of the directory for storing
2978 the content of these messages."
2979 :type '(choice (const :tag "Current" nil)
2980 directory)
2981 :group 'mh-show
2982 :package-version '(MH-E . "6.0"))
2984 (defcustom-mh mh-summary-height nil
2985 "*Number of lines in MH-Folder buffer (including the mode line).
2987 The default value of this option is \"Automatic\" which means
2988 that the MH-Folder buffer will maintain the same proportional
2989 size if the frame is resized. If you'd prefer a fixed height,
2990 then choose the \"Fixed Size\" option and enter the number of
2991 lines you'd like to see."
2992 :type '(choice (const :tag "Automatic" nil)
2993 (integer :tag "Fixed Size"))
2994 :group 'mh-show
2995 :package-version '(MH-E . "7.4"))
2997 ;;; The Speedbar (:group 'mh-speedbar)
2999 (defcustom-mh mh-speed-update-interval 60
3000 "Time between speedbar updates in seconds.
3001 Set to 0 to disable automatic update."
3002 :type 'integer
3003 :group 'mh-speedbar
3004 :package-version '(MH-E . "8.0"))
3006 ;;; Threading (:group 'mh-thread)
3008 (defcustom-mh mh-show-threads-flag nil
3009 "*Non-nil means new folders start in threaded mode.
3011 Threading large number of messages can be time consuming so this
3012 option is turned off by default. If you turn this option on, then
3013 threading will be done only if the number of messages being
3014 threaded is less than `mh-large-folder'."
3015 :type 'boolean
3016 :group 'mh-thread
3017 :package-version '(MH-E . "7.1"))
3019 ;;; The Tool Bar (:group 'mh-tool-bar)
3021 ;; mh-tool-bar-folder-buttons and mh-tool-bar-letter-buttons defined
3022 ;; dynamically in mh-tool-bar.el.
3024 (defcustom-mh mh-tool-bar-search-function 'mh-search
3025 "*Function called by the tool bar search button.
3027 By default, this is set to `mh-search'. You can also choose
3028 \"Other Function\" from the \"Value Menu\" and enter a function
3029 of your own choosing."
3030 :type '(choice (const mh-search)
3031 (function :tag "Other Function"))
3032 :group 'mh-tool-bar
3033 :package-version '(MH-E . "7.0"))
3035 ;; XEmacs has a couple of extra customizations...
3036 (mh-do-in-xemacs
3037 (defcustom-mh mh-xemacs-use-tool-bar-flag mh-xemacs-has-tool-bar-flag
3038 "*If non-nil, use tool bar.
3040 This option controls whether to show the MH-E icons at all. By
3041 default, this option is turned on if the window system supports
3042 tool bars. If your system doesn't support tool bars, then you
3043 won't be able to turn on this option."
3044 :type 'boolean
3045 :group 'mh-tool-bar
3046 :set (lambda (symbol value)
3047 (if (and (eq value t)
3048 (not mh-xemacs-has-tool-bar-flag))
3049 (error "Tool bar not supported"))
3050 (set-default symbol value))
3051 :package-version '(MH-E . "7.3"))
3053 (defcustom-mh mh-xemacs-tool-bar-position nil
3054 "*Tool bar location.
3056 This option controls the placement of the tool bar along the four
3057 edges of the frame. You can choose from one of \"Same As Default
3058 Tool Bar\", \"Top\", \"Bottom\", \"Left\", or \"Right\". If this
3059 variable is set to anything other than \"Same As Default Tool
3060 Bar\" and the default tool bar is in a different location, then
3061 two tool bars will be displayed: the MH-E tool bar and the
3062 default tool bar."
3063 :type '(radio (const :tag "Same As Default Tool Bar" :value nil)
3064 (const :tag "Top" :value top)
3065 (const :tag "Bottom" :value bottom)
3066 (const :tag "Left" :value left)
3067 (const :tag "Right" :value right))
3068 :group 'mh-tool-bar
3069 :package-version '(MH-E . "7.3")))
3073 ;;; Hooks (:group 'mh-hooks + group where hook described)
3075 (defcustom-mh mh-after-commands-processed-hook nil
3076 "Hook run by \\<mh-folder-mode-map>\\[mh-execute-commands] after performing outstanding refile and delete requests.
3078 Variables that are useful in this hook include
3079 `mh-folders-changed', which lists which folders were affected by
3080 deletes and refiles. This list will always include the current
3081 folder, which is also available in `mh-current-folder'."
3082 :type 'hook
3083 :group 'mh-hooks
3084 :group 'mh-folder
3085 :package-version '(MH-E . "8.0"))
3087 (defcustom-mh mh-alias-reloaded-hook nil
3088 "Hook run by `mh-alias-reload' after loading aliases."
3089 :type 'hook
3090 :group 'mh-hooks
3091 :group 'mh-alias
3092 :package-version '(MH-E . "8.0"))
3094 (defcustom-mh mh-annotate-msg-hook nil
3095 "Hook run whenever a message is sent and after the scan lines and message are annotated.
3096 Hook functions can access the current folder name with
3097 `mh-current-folder' and obtain the message numbers of the
3098 annotated messages with `mh-annotate-list'."
3099 :type 'hook
3100 :group 'mh-hooks
3101 :group 'mh-sending-mail
3102 :package-version '(MH-E . "8.1"))
3104 (defcustom-mh mh-before-commands-processed-hook nil
3105 "Hook run by \\<mh-folder-mode-map>\\[mh-execute-commands] before performing outstanding refile and delete requests.
3107 Variables that are useful in this hook include `mh-delete-list'
3108 and `mh-refile-list' which can be used to see which changes will
3109 be made to the current folder, `mh-current-folder'."
3110 :type 'hook
3111 :group 'mh-hooks
3112 :group 'mh-folder
3113 :package-version '(MH-E . "8.0"))
3115 (defcustom-mh mh-before-quit-hook nil
3116 "Hook run by \\<mh-folder-mode-map>\\[mh-quit] before quitting MH-E.
3118 This hook is called before the quit occurs, so you might use it
3119 to perform any MH-E operations; you could perform some query and
3120 abort the quit or call `mh-execute-commands', for example.
3122 See also `mh-quit-hook'."
3123 :type 'hook
3124 :group 'mh-hooks
3125 :group 'mh-folder
3126 :package-version '(MH-E . "6.0"))
3128 (defcustom-mh mh-before-send-letter-hook nil
3129 "Hook run at the beginning of the \\<mh-letter-mode-map>\\[mh-send-letter] command.
3131 For example, if you want to check your spelling in your message
3132 before sending, add the `ispell-message' function."
3133 :type 'hook
3134 :options '(ispell-message)
3135 :group 'mh-hooks
3136 :group 'mh-letter
3137 :package-version '(MH-E . "6.0"))
3139 (defcustom-mh mh-delete-msg-hook nil
3140 "Hook run by \\<mh-letter-mode-map>\\[mh-delete-msg] after marking each message for deletion.
3142 For example, a past maintainer of MH-E used this once when he
3143 kept statistics on his mail usage."
3144 :type 'hook
3145 :group 'mh-hooks
3146 :group 'mh-show
3147 :package-version '(MH-E . "6.0"))
3149 (defcustom-mh mh-find-path-hook nil
3150 "Hook run by `mh-find-path' after reading the user's MH profile.
3152 This hook can be used the change the value of the variables that
3153 `mh-find-path' sets if you need to run with different values
3154 between MH and MH-E."
3155 :type 'hook
3156 :group 'mh-hooks
3157 :group 'mh-e
3158 :package-version '(MH-E . "7.0"))
3160 (defcustom-mh mh-folder-mode-hook nil
3161 "Hook run by `mh-folder-mode' when visiting a new folder."
3162 :type 'hook
3163 :group 'mh-hooks
3164 :group 'mh-folder
3165 :package-version '(MH-E . "6.0"))
3167 (defcustom-mh mh-forward-hook nil
3168 "Hook run by `mh-forward' on a forwarded letter."
3169 :type 'hook
3170 :group 'mh-hooks
3171 :group 'mh-sending-mail
3172 :package-version '(MH-E . "8.0"))
3174 (defcustom-mh mh-inc-folder-hook nil
3175 "Hook run by \\<mh-folder-mode-map>\\[mh-inc-folder] after incorporating mail into a folder."
3176 :type 'hook
3177 :group 'mh-hooks
3178 :group 'mh-inc
3179 :package-version '(MH-E . "6.0"))
3181 (defcustom-mh mh-insert-signature-hook nil
3182 "Hook run by \\<mh-letter-mode-map>\\[mh-insert-signature] after signature has been inserted.
3184 Hook functions may access the actual name of the file or the
3185 function used to insert the signature with
3186 `mh-signature-file-name'."
3187 :type 'hook
3188 :group 'mh-hooks
3189 :group 'mh-letter
3190 :package-version '(MH-E . "8.0"))
3192 (defcustom-mh mh-kill-folder-suppress-prompt-hooks '(mh-search-p)
3193 "Abnormal hook run at the beginning of \\<mh-folder-mode-map>\\[mh-kill-folder].
3195 The hook functions are called with no arguments and should return
3196 a non-nil value to suppress the normal prompt when you remove a
3197 folder. This is useful for folders that are easily regenerated.
3199 The default value of `mh-search-p' suppresses the prompt on
3200 folders generated by searching.
3202 WARNING: Use this hook with care. If there is a bug in your hook
3203 which returns t on \"+inbox\" and you hit \\[mh-kill-folder] by
3204 accident in the \"+inbox\" folder, you will not be happy."
3205 :type 'hook
3206 :group 'mh-hooks
3207 :group 'mh-folder
3208 :package-version '(MH-E . "7.4"))
3210 (defcustom-mh mh-letter-mode-hook nil
3211 "Hook run by `mh-letter-mode' on a new letter.
3213 This hook allows you to do some processing before editing a
3214 letter. For example, you may wish to modify the header after
3215 \"repl\" has done its work, or you may have a complicated
3216 \"components\" file and need to tell MH-E where the cursor should
3217 go."
3218 :type 'hook
3219 :group 'mh-hooks
3220 :group 'mh-sending-mail
3221 :package-version '(MH-E . "6.0"))
3223 (defcustom-mh mh-mh-to-mime-hook nil
3224 "Hook run on the formatted letter by \\<mh-letter-mode-map>\\[mh-mh-to-mime]."
3225 :type 'hook
3226 :group 'mh-hooks
3227 :group 'mh-letter
3228 :package-version '(MH-E . "8.0"))
3230 (defcustom-mh mh-search-mode-hook nil
3231 "Hook run upon entry to `mh-search-mode'\\<mh-folder-mode-map>.
3233 If you find that you do the same thing over and over when editing
3234 the search template, you may wish to bind some shortcuts to keys.
3235 This can be done with this hook which is called when
3236 \\[mh-search] is run on a new pattern."
3237 :type 'hook
3238 :group 'mh-hooks
3239 :group 'mh-search
3240 :package-version '(MH-E . "8.0"))
3242 (defcustom-mh mh-pack-folder-hook nil
3243 "Hook run by \\<mh-folder-mode-map>\\[mh-pack-folder] after renumbering the messages.
3244 Hook functions can access the current folder name with `mh-current-folder'."
3245 :type 'hook
3246 :group 'mh-hooks
3247 :group 'mh-folder
3248 :package-version '(MH-E . "8.2"))
3250 (defcustom-mh mh-quit-hook nil
3251 "Hook run by \\<mh-folder-mode-map>\\[mh-quit] after quitting MH-E.
3253 This hook is not run in an MH-E context, so you might use it to
3254 modify the window setup.
3256 See also `mh-before-quit-hook'."
3257 :type 'hook
3258 :group 'mh-hooks
3259 :group 'mh-folder
3260 :package-version '(MH-E . "6.0"))
3262 (defcustom-mh mh-refile-msg-hook nil
3263 "Hook run by \\<mh-folder-mode-map>\\[mh-refile-msg] after marking each message for refiling."
3264 :type 'hook
3265 :group 'mh-hooks
3266 :group 'mh-folder
3267 :package-version '(MH-E . "6.0"))
3269 (defcustom-mh mh-show-hook nil
3270 "Hook run after \\<mh-folder-mode-map>\\[mh-show] shows a message.
3272 It is the last thing called after messages are displayed. It's
3273 used to affect the behavior of MH-E in general or when
3274 `mh-show-mode-hook' is too early. See `mh-show-mode-hook'."
3275 :type 'hook
3276 :group 'mh-hooks
3277 :group 'mh-show
3278 :package-version '(MH-E . "6.0"))
3280 (defcustom-mh mh-show-mode-hook nil
3281 "Hook run upon entry to `mh-show-mode'.
3283 This hook is called early on in the process of the message
3284 display. It is usually used to perform some action on the
3285 message's content. See `mh-show-hook'."
3286 :type 'hook
3287 :group 'mh-hooks
3288 :group 'mh-show
3289 :package-version '(MH-E . "6.0"))
3291 (defcustom-mh mh-unseen-updated-hook nil
3292 "Hook run after the unseen sequence has been updated.
3294 The variable `mh-seen-list' can be used by this hook to obtain
3295 the list of messages which were removed from the unseen
3296 sequence."
3297 :type 'hook
3298 :group 'mh-hooks
3299 :group 'mh-sequences
3300 :package-version '(MH-E . "6.0"))
3304 ;;; Faces (:group 'mh-faces + group where faces described)
3306 (if (boundp 'facemenu-unlisted-faces)
3307 (add-to-list 'facemenu-unlisted-faces "^mh-"))
3309 ;; To add a new face:
3310 ;; 1. Add entry to variable mh-face-data.
3311 ;; 2. Create face using defface-mh (which removes min-color spec and
3312 ;; :package-version keyword where these are not supported),
3313 ;; accessing face data with function mh-face-data.
3314 ;; 3. Add inherit argument to function mh-face-data if applicable.
3315 (defvar mh-face-data
3316 '((mh-folder-followup
3317 ((((class color) (background light))
3318 (:foreground "blue3"))
3319 (((class color) (background dark))
3320 (:foreground "LightGoldenRod"))
3322 (:bold t))))
3323 (mh-folder-msg-number
3324 ((((class color) (min-colors 64) (background light))
3325 (:foreground "snow4"))
3326 (((class color) (min-colors 64) (background dark))
3327 (:foreground "snow3"))
3328 (((class color) (background light))
3329 (:foreground "purple"))
3330 (((class color) (background dark))
3331 (:foreground "cyan"))))
3332 (mh-folder-refiled
3333 ((((class color) (min-colors 64) (background light))
3334 (:foreground "DarkGoldenrod"))
3335 (((class color) (min-colors 64) (background dark))
3336 (:foreground "LightGoldenrod"))
3337 (((class color))
3338 (:foreground "yellow" :weight light))
3339 (((class grayscale) (background light))
3340 (:foreground "Gray90" :bold t :italic t))
3341 (((class grayscale) (background dark))
3342 (:foreground "DimGray" :bold t :italic t))
3344 (:bold t :italic t))))
3345 (mh-folder-subject
3346 ((((class color) (background light))
3347 (:foreground "blue4"))
3348 (((class color) (background dark))
3349 (:foreground "yellow"))
3351 (:bold t))))
3352 (mh-folder-tick
3353 ((((class color) (background light))
3354 (:background "#dddf7e"))
3355 (((class color) (background dark))
3356 (:background "#dddf7e"))
3358 (:underline t))))
3359 (mh-folder-to
3360 ((((class color) (min-colors 64) (background light))
3361 (:foreground "RosyBrown"))
3362 (((class color) (min-colors 64) (background dark))
3363 (:foreground "LightSalmon"))
3364 (((class color))
3365 (:foreground "green"))
3366 (((class grayscale) (background light))
3367 (:foreground "DimGray" :italic t))
3368 (((class grayscale) (background dark))
3369 (:foreground "LightGray" :italic t))
3371 (:italic t))))
3372 (mh-letter-header-field
3373 ((((class color) (background light))
3374 (:background "gray90"))
3375 (((class color) (background dark))
3376 (:background "gray10"))
3378 (:bold t))))
3379 (mh-search-folder
3380 ((((class color) (background light))
3381 (:foreground "dark green" :bold t))
3382 (((class color) (background dark))
3383 (:foreground "indian red" :bold t))
3385 (:bold t))))
3386 (mh-show-cc
3387 ((((class color) (min-colors 64) (background light))
3388 (:foreground "DarkGoldenrod"))
3389 (((class color) (min-colors 64) (background dark))
3390 (:foreground "LightGoldenrod"))
3391 (((class color))
3392 (:foreground "yellow" :weight light))
3393 (((class grayscale) (background light))
3394 (:foreground "Gray90" :bold t :italic t))
3395 (((class grayscale) (background dark))
3396 (:foreground "DimGray" :bold t :italic t))
3398 (:bold t :italic t))))
3399 (mh-show-date
3400 ((((class color) (min-colors 64) (background light))
3401 (:foreground "ForestGreen"))
3402 (((class color) (min-colors 64) (background dark))
3403 (:foreground "PaleGreen"))
3404 (((class color))
3405 (:foreground "green"))
3406 (((class grayscale) (background light))
3407 (:foreground "Gray90" :bold t))
3408 (((class grayscale) (background dark))
3409 (:foreground "DimGray" :bold t))
3411 (:bold t :underline t))))
3412 (mh-show-from
3413 ((((class color) (background light))
3414 (:foreground "red3"))
3415 (((class color) (background dark))
3416 (:foreground "cyan"))
3418 (:bold t))))
3419 (mh-show-header
3420 ((((class color) (min-colors 64) (background light))
3421 (:foreground "RosyBrown"))
3422 (((class color) (min-colors 64) (background dark))
3423 (:foreground "LightSalmon"))
3424 (((class color))
3425 (:foreground "green"))
3426 (((class grayscale) (background light))
3427 (:foreground "DimGray" :italic t))
3428 (((class grayscale) (background dark))
3429 (:foreground "LightGray" :italic t))
3431 (:italic t))))
3432 (mh-show-pgg-bad ((t (:bold t :foreground "DeepPink1"))))
3433 (mh-show-pgg-good ((t (:bold t :foreground "LimeGreen"))))
3434 (mh-show-pgg-unknown ((t (:bold t :foreground "DarkGoldenrod2"))))
3435 (mh-show-signature ((t (:italic t))))
3436 (mh-show-to
3437 ((((class color) (background light))
3438 (:foreground "SaddleBrown"))
3439 (((class color) (background dark))
3440 (:foreground "burlywood"))
3441 (((class grayscale) (background light))
3442 (:foreground "DimGray" :underline t))
3443 (((class grayscale) (background dark))
3444 (:foreground "LightGray" :underline t))
3445 (t (:underline t))))
3446 (mh-speedbar-folder
3447 ((((class color) (background light))
3448 (:foreground "blue4"))
3449 (((class color) (background dark))
3450 (:foreground "light blue"))))
3451 (mh-speedbar-selected-folder
3452 ((((class color) (background light))
3453 (:foreground "red1" :underline t))
3454 (((class color) (background dark))
3455 (:foreground "red1" :underline t))
3457 (:underline t)))))
3458 "MH-E face data.
3459 Used by function `mh-face-data' which returns spec that is
3460 consumed by `defface-mh'.")
3462 (require 'cus-face)
3464 (defvar mh-inherit-face-flag (assq :inherit custom-face-attributes)
3465 "Non-nil means that the `defface' :inherit keyword is available.
3466 The :inherit keyword is available on all supported versions of
3467 GNU Emacs and XEmacs from at least 21.5.23 on.")
3469 (defvar mh-min-colors-defined-flag (and (not (featurep 'xemacs))
3470 (>= emacs-major-version 22))
3471 "Non-nil means `defface' supports min-colors display requirement.")
3473 (defun mh-face-data (face &optional inherit)
3474 "Return spec for FACE.
3475 See `defface' for the spec definition.
3477 If INHERIT is non-nil and `defface' supports the :inherit
3478 keyword, return INHERIT literally; otherwise, return spec for
3479 FACE from the variable `mh-face-data'. This isn't a perfect
3480 implementation. In the case that the :inherit keyword is not
3481 supported, any additional attributes in the inherit parameter are
3482 not added to the returned spec.
3484 Furthermore, when `mh-min-colors-defined-flag' is nil, this
3485 function finds display entries with \"min-colors\" requirements
3486 and either removes the \"min-colors\" requirement or strips the
3487 display entirely if the display does not support the number of
3488 specified colors."
3489 (let ((spec
3490 (if (and inherit mh-inherit-face-flag)
3491 inherit
3492 (or (cadr (assq face mh-face-data))
3493 (error "Could not find %s in mh-face-data" face)))))
3495 (if mh-min-colors-defined-flag
3496 spec
3497 (let ((cells (mh-display-color-cells))
3498 new-spec)
3499 ;; Remove entries with min-colors, or delete them if we have
3500 ;; fewer colors than they specify.
3501 (loop for entry in (reverse spec) do
3502 (let ((requirement (if (eq (car entry) t)
3504 (assq 'min-colors (car entry)))))
3505 (if requirement
3506 (when (>= cells (nth 1 requirement))
3507 (setq new-spec (cons (cons (delq requirement (car entry))
3508 (cdr entry))
3509 new-spec)))
3510 (setq new-spec (cons entry new-spec)))))
3511 new-spec))))
3513 (defface-mh mh-folder-address
3514 (mh-face-data 'mh-folder-subject '((t (:inherit mh-folder-subject))))
3515 "Recipient face."
3516 :group 'mh-faces
3517 :group 'mh-folder
3518 :package-version '(MH-E . "8.0"))
3520 (defface-mh mh-folder-body
3521 (mh-face-data 'mh-folder-msg-number
3522 '((((class color))
3523 (:inherit mh-folder-msg-number))
3525 (:inherit mh-folder-msg-number :italic t))))
3526 "Body text face."
3527 :group 'mh-faces
3528 :group 'mh-folder
3529 :package-version '(MH-E . "8.0"))
3531 (defface-mh mh-folder-cur-msg-number
3532 (mh-face-data 'mh-folder-msg-number
3533 '((t (:inherit mh-folder-msg-number :bold t))))
3534 "Current message number face."
3535 :group 'mh-faces
3536 :group 'mh-folder
3537 :package-version '(MH-E . "8.0"))
3539 (defface-mh mh-folder-date
3540 (mh-face-data 'mh-folder-msg-number '((t (:inherit mh-folder-msg-number))))
3541 "Date face."
3542 :group 'mh-faces
3543 :group 'mh-folder
3544 :package-version '(MH-E . "8.0"))
3546 (defface-mh mh-folder-deleted
3547 (mh-face-data 'mh-folder-msg-number '((t (:inherit mh-folder-msg-number))))
3548 "Deleted message face."
3549 :group 'mh-faces
3550 :group 'mh-folder
3551 :package-version '(MH-E . "8.0"))
3553 (defface-mh mh-folder-followup (mh-face-data 'mh-folder-followup)
3554 "\"Re:\" face."
3555 :group 'mh-faces
3556 :group 'mh-folder
3557 :package-version '(MH-E . "8.0"))
3559 (defface-mh mh-folder-msg-number (mh-face-data 'mh-folder-msg-number)
3560 "Message number face."
3561 :group 'mh-faces
3562 :group 'mh-folder
3563 :package-version '(MH-E . "8.0"))
3565 (defface-mh mh-folder-refiled (mh-face-data 'mh-folder-refiled)
3566 "Refiled message face."
3567 :group 'mh-faces
3568 :group 'mh-folder
3569 :package-version '(MH-E . "8.0"))
3571 (defface-mh mh-folder-sent-to-me-hint
3572 (mh-face-data 'mh-folder-msg-number '((t (:inherit mh-folder-date))))
3573 "Fontification hint face in messages sent directly to us.
3574 The detection of messages sent to us is governed by the scan
3575 format `mh-scan-format-nmh' and the regular expression
3576 `mh-scan-sent-to-me-sender-regexp'."
3577 :group 'mh-faces
3578 :group 'mh-folder
3579 :package-version '(MH-E . "8.0"))
3581 (defface-mh mh-folder-sent-to-me-sender
3582 (mh-face-data 'mh-folder-followup '((t (:inherit mh-folder-followup))))
3583 "Sender face in messages sent directly to us.
3584 The detection of messages sent to us is governed by the scan
3585 format `mh-scan-format-nmh' and the regular expression
3586 `mh-scan-sent-to-me-sender-regexp'."
3587 :group 'mh-faces
3588 :group 'mh-folder
3589 :package-version '(MH-E . "8.0"))
3591 (defface-mh mh-folder-subject (mh-face-data 'mh-folder-subject)
3592 "Subject face."
3593 :group 'mh-faces
3594 :group 'mh-folder
3595 :package-version '(MH-E . "8.0"))
3597 (defface-mh mh-folder-tick (mh-face-data 'mh-folder-tick)
3598 "Ticked message face."
3599 :group 'mh-faces
3600 :group 'mh-folder
3601 :package-version '(MH-E . "8.0"))
3603 (defface-mh mh-folder-to (mh-face-data 'mh-folder-to)
3604 "\"To:\" face."
3605 :group 'mh-faces
3606 :group 'mh-folder
3607 :package-version '(MH-E . "8.0"))
3609 (defface-mh mh-letter-header-field (mh-face-data 'mh-letter-header-field)
3610 "Editable header field value face in draft buffers."
3611 :group 'mh-faces
3612 :group 'mh-letter
3613 :package-version '(MH-E . "8.0"))
3615 (defface-mh mh-search-folder (mh-face-data 'mh-search-folder)
3616 "Folder heading face in MH-Folder buffers created by searches."
3617 :group 'mh-faces
3618 :group 'mh-search
3619 :package-version '(MH-E . "8.0"))
3621 (defface-mh mh-show-cc (mh-face-data 'mh-show-cc)
3622 "Face used to highlight \"cc:\" header fields."
3623 :group 'mh-faces
3624 :group 'mh-show
3625 :package-version '(MH-E . "8.0"))
3627 (defface-mh mh-show-date (mh-face-data 'mh-show-date)
3628 "Face used to highlight \"Date:\" header fields."
3629 :group 'mh-faces
3630 :group 'mh-show
3631 :package-version '(MH-E . "8.0"))
3633 (defface-mh mh-show-from (mh-face-data 'mh-show-from)
3634 "Face used to highlight \"From:\" header fields."
3635 :group 'mh-faces
3636 :group 'mh-show
3637 :package-version '(MH-E . "8.0"))
3639 (defface-mh mh-show-header (mh-face-data 'mh-show-header)
3640 "Face used to deemphasize less interesting header fields."
3641 :group 'mh-faces
3642 :group 'mh-show
3643 :package-version '(MH-E . "8.0"))
3645 (defface-mh mh-show-pgg-bad (mh-face-data 'mh-show-pgg-bad)
3646 "Bad PGG signature face."
3647 :group 'mh-faces
3648 :group 'mh-show
3649 :package-version '(MH-E . "8.0"))
3651 (defface-mh mh-show-pgg-good (mh-face-data 'mh-show-pgg-good)
3652 "Good PGG signature face."
3653 :group 'mh-faces
3654 :group 'mh-show
3655 :package-version '(MH-E . "8.0"))
3657 (defface-mh mh-show-pgg-unknown (mh-face-data 'mh-show-pgg-unknown)
3658 "Unknown or untrusted PGG signature face."
3659 :group 'mh-faces
3660 :group 'mh-show
3661 :package-version '(MH-E . "8.0"))
3663 (defface-mh mh-show-signature (mh-face-data 'mh-show-signature)
3664 "Signature face."
3665 :group 'mh-faces
3666 :group 'mh-show
3667 :package-version '(MH-E . "8.0"))
3669 (defface-mh mh-show-subject
3670 (mh-face-data 'mh-folder-subject '((t (:inherit mh-folder-subject))))
3671 "Face used to highlight \"Subject:\" header fields."
3672 :group 'mh-faces
3673 :group 'mh-show
3674 :package-version '(MH-E . "8.0"))
3676 (defface-mh mh-show-to (mh-face-data 'mh-show-to)
3677 "Face used to highlight \"To:\" header fields."
3678 :group 'mh-faces
3679 :group 'mh-show
3680 :package-version '(MH-E . "8.0"))
3682 (defface-mh mh-show-xface
3683 (mh-face-data 'mh-show-from '((t (:inherit (mh-show-from highlight)))))
3684 "X-Face image face.
3685 The background and foreground are used in the image."
3686 :group 'mh-faces
3687 :group 'mh-show
3688 :package-version '(MH-E . "8.0"))
3690 (defface-mh mh-speedbar-folder (mh-face-data 'mh-speedbar-folder)
3691 "Basic folder face."
3692 :group 'mh-faces
3693 :group 'mh-speedbar
3694 :package-version '(MH-E . "8.0"))
3696 (defface-mh mh-speedbar-folder-with-unseen-messages
3697 (mh-face-data 'mh-speedbar-folder
3698 '((t (:inherit mh-speedbar-folder :bold t))))
3699 "Folder face when folder contains unread messages."
3700 :group 'mh-faces
3701 :group 'mh-speedbar
3702 :package-version '(MH-E . "8.0"))
3704 (defface-mh mh-speedbar-selected-folder
3705 (mh-face-data 'mh-speedbar-selected-folder)
3706 "Selected folder face."
3707 :group 'mh-faces
3708 :group 'mh-speedbar
3709 :package-version '(MH-E . "8.0"))
3711 (defface-mh mh-speedbar-selected-folder-with-unseen-messages
3712 (mh-face-data 'mh-speedbar-selected-folder
3713 '((t (:inherit mh-speedbar-selected-folder :bold t))))
3714 "Selected folder face when folder contains unread messages."
3715 :group 'mh-faces
3716 :group 'mh-speedbar
3717 :package-version '(MH-E . "8.0"))
3719 (provide 'mh-e)
3721 ;; Local Variables:
3722 ;; indent-tabs-mode: nil
3723 ;; sentence-end-double-space: nil
3724 ;; End:
3726 ;;; mh-e.el ends here