mu/mu4e/mu4e-main.el

169 lines
5.8 KiB
EmacsLisp
Raw Normal View History

2012-04-01 11:29:24 +02:00
;;; mu4e-main.el -- part of mu4e, the mu mail user agent
2011-12-04 22:49:15 +01:00
;;
2012-03-31 16:20:28 +02:00
;; Copyright (C) 2011-2012 Dirk-Jan C. Binnema
2011-12-04 22:49:15 +01:00
;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
2012-04-01 11:29:24 +02:00
2011-12-04 22:49:15 +01:00
;; 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:
2012-04-09 10:52:33 +02:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2012-08-14 09:20:27 +02:00
(require 'smtpmail) ;; the queing stuff (silence elint)
2012-04-09 10:52:33 +02:00
(require 'mu4e-utils) ;; utility functions
2011-12-04 22:49:15 +01:00
2012-08-14 09:20:27 +02:00
(defconst mu4e~main-buffer-name " *mu4e-main*"
2012-04-01 11:29:24 +02:00
"*internal* Name of the mu4e main view buffer.")
2011-12-13 08:07:38 +01:00
(defvar mu4e-main-mode-map
2011-12-04 22:49:15 +01:00
(let ((map (make-sparse-keymap)))
2012-05-01 21:45:54 +02:00
(define-key map "b" 'mu4e-headers-search-bookmark)
(define-key map "B" 'mu4e-headers-search-bookmark-edit)
2012-05-01 21:45:54 +02:00
(define-key map "s" 'mu4e-headers-search)
2011-12-15 20:47:01 +01:00
(define-key map "q" 'mu4e-quit)
2012-05-01 21:45:54 +02:00
(define-key map "j" 'mu4e~headers-jump-to-maildir)
(define-key map "C" 'mu4e-compose-new)
2011-12-04 22:49:15 +01:00
(define-key map "m" 'mu4e~main-toggle-mail-sending-mode)
2011-12-04 22:49:15 +01:00
(define-key map "f" 'smtpmail-send-queued-mail)
;;
(define-key map "U" 'mu4e-update-mail-and-index)
(define-key map (kbd "C-S-u") 'mu4e-update-mail-and-index)
(define-key map "$" 'mu4e-show-log)
(define-key map "A" 'mu4e-about)
(define-key map "H" 'mu4e-display-manual)
2011-12-04 22:49:15 +01:00
map)
2011-12-14 08:13:10 +01:00
"Keymap for the *mu4e-main* buffer.")
2011-12-13 08:07:38 +01:00
(fset 'mu4e-main-mode-map mu4e-main-mode-map)
2011-12-04 22:49:15 +01:00
2012-08-14 09:20:27 +02:00
(defvar mu4e-main-mode-abbrev-table nil)
(define-derived-mode mu4e-main-mode special-mode "mu4e:main"
"Major mode for the mu4e main screen.
\\{mu4e-main-mode-map}."
2011-12-13 08:07:38 +01:00
(use-local-map mu4e-main-mode-map)
2011-12-04 22:49:15 +01:00
(setq
truncate-lines t
overwrite-mode 'overwrite-mode-binary))
(defun mu4e~main-action-str (str &optional func-or-shortcut)
"Highlight the first occurence of [..] in STR. If
FUNC-OR-SHORTCUT is non-nil and if it is a function, call it when
STR is clicked (using RET or mouse-2); if FUNC-OR-SHORTCUT is a
string, execute the corresponding keyboard action when it is
clicked."
(let ((newstr
(replace-regexp-in-string
"\\[\\(\\w+\\)\\]"
(lambda(m)
(format "[%s]"
(propertize (match-string 1 str) 'face 'mu4e-highlight-face)))
str))
(map (make-sparse-keymap))
(func (if (functionp func-or-shortcut)
func-or-shortcut
(if (stringp func-or-shortcut)
(lexical-let ((macro func-or-shortcut))
(lambda()(interactive)
(execute-kbd-macro macro)))))))
(define-key map [mouse-2] func)
(define-key map (kbd "RET") func)
2011-12-26 11:17:28 +01:00
(put-text-property 0 (length newstr) 'keymap map newstr)
(put-text-property (string-match "\\w" newstr)
(- (length newstr) 1) 'mouse-face 'highlight newstr) newstr))
(defun mu4e~main-view ()
2012-04-01 11:29:24 +02:00
"Show the mu4e main view."
(let ((buf (get-buffer-create mu4e~main-buffer-name))
2011-12-04 22:49:15 +01:00
(inhibit-read-only t))
(with-current-buffer buf
(erase-buffer)
(insert
2011-12-04 22:49:15 +01:00
"* "
2011-12-13 08:07:38 +01:00
(propertize "mu4e - mu for emacs version " 'face 'mu4e-title-face)
(propertize mu4e-mu-version 'face 'mu4e-view-header-key-face)
;; show some server properties; in this case; a big C when there's
2012-10-17 22:36:35 +02:00
;; crypto support, a big G when there's Guile support
" "
2012-10-17 22:36:35 +02:00
(propertize
(concat
(when (plist-get mu4e~server-props :crypto) "C")
(when (plist-get mu4e~server-props :guile) "G"))
'face 'mu4e-title-face)
"\n\n"
2011-12-13 08:07:38 +01:00
(propertize " Basics\n\n" 'face 'mu4e-title-face)
(mu4e~main-action-str "\t* [j]ump to some maildir\n" 'mu4e-jump-to-maildir)
(mu4e~main-action-str "\t* enter a [s]earch query\n" 'mu4e-search)
(mu4e~main-action-str "\t* [C]ompose a new message\n" 'mu4e-compose-new)
"\n"
2011-12-13 08:07:38 +01:00
(propertize " Bookmarks\n\n" 'face 'mu4e-title-face)
;; TODO: it's a bit uncool to hard-code the "b" shortcut...
(mapconcat
(lambda (bm)
(let* ((query (nth 0 bm)) (title (nth 1 bm)) (key (nth 2 bm)))
(mu4e~main-action-str
(concat "\t* [b" (make-string 1 key) "] " title)
(concat "b" (make-string 1 key)))))
2011-12-13 08:07:38 +01:00
mu4e-bookmarks "\n")
2012-05-08 13:31:16 +02:00
"\n\n"
2011-12-13 08:07:38 +01:00
(propertize " Misc\n\n" 'face 'mu4e-title-face)
(mu4e~main-action-str "\t* [U]pdate email & database\n"
'mu4e-update-mail-show-window)
;; show the queue functions if `smtpmail-queue-dir' is defined
(if (file-directory-p smtpmail-queue-dir)
(concat
(mu4e~main-action-str "\t* toggle [m]ail sending mode "
'mu4e~main-toggle-mail-sending-mode)
"(" (propertize (if smtpmail-queue-mail "queued" "direct")
'face 'mu4e-view-header-key-face) ")\n"
(mu4e~main-action-str "\t* [f]lush queued mail\n"
'smtpmail-send-queued-mail))
"")
"\n"
(mu4e~main-action-str "\t* [A]bout mu4e\n" 'mu4e-about)
(mu4e~main-action-str "\t* [H]elp\n" 'mu4e-display-manual)
(mu4e~main-action-str "\t* [q]uit\n" 'mu4e-quit))
2011-12-13 08:07:38 +01:00
(mu4e-main-mode)
(switch-to-buffer buf))))
2011-12-04 22:49:15 +01:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Interactive functions
(defun mu4e~main-toggle-mail-sending-mode ()
2011-12-04 22:49:15 +01:00
"Toggle sending mail mode, either queued or direct."
(interactive)
(unless (file-directory-p smtpmail-queue-dir)
2012-07-10 11:11:06 +02:00
(mu4e-error "`smtp-queue-dir' does not exist"))
2011-12-04 22:49:15 +01:00
(setq smtpmail-queue-mail (not smtpmail-queue-mail))
(message
(concat "Outgoing mail will now be "
(if smtpmail-queue-mail "queued" "sent directly")))
(mu4e~main-view))
2011-12-13 08:07:38 +01:00
(provide 'mu4e-main)