1 ;;; mh-inc.el --- MH-E `inc' and separate mail spool handling
3 ;; Copyright (C) 2003, 2004 Free Software Foundation, Inc.
5 ;; Author: Peter S. Galbraith <psg@debian.org>
6 ;; Maintainer: Bill Wohler <wohler@newt.com>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
29 ;; Support for inc. In addition to reading from the system mailbox, inc can
30 ;; also be used to incorporate mail from multiple spool files into separate
31 ;; folders. See `C-h v mh-inc-spool-list'.
37 (eval-when-compile (require 'mh-acros
))
40 (defvar mh-inc-spool-map
(make-sparse-keymap)
41 "Keymap for MH-E's mh-inc-spool commands.")
43 (defvar mh-inc-spool-map-help nil
44 "Help text to for `mh-inc-spool-map'.")
46 (define-key mh-inc-spool-map
"?"
49 (if mh-inc-spool-map-help
50 (let ((mh-help-messages (list (list nil mh-inc-spool-map-help
))))
53 "There are no keys defined yet. Customize `mh-inc-spool-list'"))))
55 (defun mh-inc-spool-generator (folder spool
)
56 "Create a command to inc into FOLDER from SPOOL file."
57 (let ((folder1 (make-symbol "folder"))
58 (spool1 (make-symbol "spool")))
61 (setf (symbol-function (intern (concat "mh-inc-spool-" folder
)))
63 ,(format "Inc spool file %s into folder %s" spool folder
)
65 (mh-inc-folder ,spool1
(concat "+" ,folder1
))))))
67 (defun mh-inc-spool-def-key (key folder
)
68 "Define a KEY in `mh-inc-spool-map' to inc FOLDER and collect help string."
70 (define-key mh-inc-spool-map
(format "%c" key
)
71 (intern (concat "mh-inc-spool-" folder
)))
72 (setq mh-inc-spool-map-help
(concat mh-inc-spool-map-help
"["
74 "] inc " folder
" folder\n"))))
76 ;; Avoid compiler warning
77 (defvar mh-inc-spool-list
)
79 (defun mh-inc-spool-make ()
80 "Make all commands and defines keys for contents of `mh-inc-spool-list'."
81 (when mh-inc-spool-list
82 (setq mh-inc-spool-map-help nil
)
83 (loop for elem in mh-inc-spool-list
84 do
(let ((spool (nth 0 elem
))
88 (mh-inc-spool-generator folder spool
)
89 (mh-inc-spool-def-key key folder
))))))
92 (defun mh-inc-spool-list-set (symbol value
)
93 "Set-default SYMBOL to VALUE to update the `mh-inc-spool-list' variable.
94 Also rebuilds the user commands.
95 This is called after 'customize is used to alter `mh-inc-spool-list'."
96 (set-default symbol value
)
102 ;; indent-tabs-mode: nil
103 ;; sentence-end-double-space: nil
106 ;; arch-tag: 3713cf2a-6082-4cb4-8ce2-99d9acaba835
107 ;;; mh-inc.el ends here