mu/emacs/mu4e.el

74 lines
2.5 KiB
EmacsLisp
Raw Normal View History

2011-12-13 08:07:38 +01:00
;;; mu4e.el -- part of mu4e, the mu mail user agent
2011-09-12 19:52:32 +02:00
;;
;; Copyright (C) 2011-2012 Dirk-Jan C. Binnema
2011-09-12 19:52:32 +02:00
;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Keywords: email
;; Version: 0.0
;; This file is not part of GNU Emacs.
;;
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(eval-when-compile (require 'cl))
(require 'mu4e-meta) ;; autogenerated file with metadata (version etc.)
2012-03-28 21:23:35 +02:00
(require 'mu4e-hdrs) ;; headers view
(require 'mu4e-view) ;; message view
(require 'mu4e-main) ;; main screen
2012-04-11 21:31:52 +02:00
(require 'mu4e-compose) ;; message composition / sending
2012-03-28 21:23:35 +02:00
(require 'mu4e-proc) ;; communication with backend
(require 'mu4e-utils) ;; utility functions
2012-03-28 21:23:35 +02:00
(require 'mu4e-speedbar) ;; support for speedbar
2012-04-11 21:31:52 +02:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; register our handler functions; these connect server messages to functions
;; to handle them.
2012-04-11 21:31:52 +02:00
;;
;;
;; these are all defined in mu4e-hdrs
(setq mu4e-update-func 'mu4e~hdrs-update-handler)
(setq mu4e-header-func 'mu4e~hdrs-header-handler)
(setq mu4e-found-func 'mu4e~hdrs-found-handler)
(setq mu4e-view-func 'mu4e~hdrs-view-handler)
(setq mu4e-remove-func 'mu4e~hdrs-remove-handler)
(setq mu4e-erase-func 'mu4e~hdrs-clear)
2012-04-11 21:31:52 +02:00
;; these ones are define in mu4e-utils
(setq mu4e-info-func 'mu4e-info-handler)
(setq mu4e-error-func 'mu4e-error-handler)
;; note: mu4e-utils also dynamically (temporarily)
;; registers mu4e-pong func
;; this one is defined in mu4e-compose
(setq mu4e-compose-func 'mu4e~compose-handler)
2012-04-11 21:31:52 +02:00
;; note: mu4e-compose.el dynamically registers mu4e-sent-func
;; we don't do that here, because it's only a local (temporary)
;; handler
;; this one is defined in mu4e-view
(setq mu4e-temp-func 'mu4e~view-temp-handler)
2012-04-11 21:31:52 +02:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2011-12-13 08:07:38 +01:00
(provide 'mu4e)