summaryrefslogtreecommitdiffstats
path: root/lisp/ravi-init-mu.el
diff options
context:
space:
mode:
authorRavi R Kiran <aine.marina@gmail.com>2015-10-23 18:57:59 (GMT)
committerRavi R Kiran <aine.marina@gmail.com>2015-10-23 18:57:59 (GMT)
commitcd1924466152177ea06b17c843f256463c1b91b8 (patch)
treeaf90afe028e5e392f242a3ea36302aafe1c1769d /lisp/ravi-init-mu.el
parent5561df232cfa49822f322196d98170f95aa1139e (diff)
parent74c319ef12dd3130f6afc17abc59404b59d601d1 (diff)
downloaddotemacs-cd1924466152177ea06b17c843f256463c1b91b8.zip
dotemacs-cd1924466152177ea06b17c843f256463c1b91b8.tar.gz
dotemacs-cd1924466152177ea06b17c843f256463c1b91b8.tar.bz2
Merge branch 'master' into rtags-attempt
* master: (139 commits) Add pdf-tools as a nicer replacement for doc-view Add pdf-tools submodule Fix maildir data with correct path Add desktop notifications for email Potential use for modes without repls Attach files more easily in mu Update to newest version of mu Please remove tooltips after a while, please ace-window gets confused when tooltips are present Sometimes the dispatch list does come in handy Pre-populate searches Succumb to muscle memory of control keys Remove ropemacs due to disuse Do not let company-quickhelp steal a global key Manage word navigation Use proper helm function to replace completing-read Electric operators on python mode Use which-key in preference to guide-key Navigate easier Simplify config with magit 2.1.0 ...
Diffstat (limited to 'lisp/ravi-init-mu.el')
-rw-r--r--lisp/ravi-init-mu.el218
1 files changed, 218 insertions, 0 deletions
diff --git a/lisp/ravi-init-mu.el b/lisp/ravi-init-mu.el
new file mode 100644
index 0000000..2f21a0b
--- /dev/null
+++ b/lisp/ravi-init-mu.el
@@ -0,0 +1,218 @@
+;;; ravi-init-mu.el --- mail
+
+;; Copyright (C) 2014
+
+;; Author: <ravi@nero.lan>
+;; Keywords:
+
+;; This program 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.
+
+;; This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Set up mu4e conditionally
+;; - actual account information should be in local.el
+;; - requires definitions of ravi/mu4e-account-alist
+
+;;; Code:
+
+(defvar ravi/use-mu-for-email nil
+ "Use mu for email")
+(defvar ravi/mu4e-account-alist nil
+ "An alist containing account information for all accounts")
+(defvar ravi/mu4e-update-interval 1800 ; 30 minutes
+ "Basic update interval; all other update intervals are multiples")
+
+(setq message-citation-line-format "On %a %Y-%m-%d %l:%M:%S%p %Z, %f wrote:"
+ message-citation-line-function 'message-insert-formatted-citation-line)
+
+(when ravi/use-mu-for-email
+ (use-package mu4e
+ :load-path (lambda () (ravi/emacs-file "site-lisp/mu/mu4e"))
+ :commands mu4e
+ :init
+ (progn
+ (add-to-list 'Info-additional-directory-list (ravi/emacs-file "site-lisp/mu/mu4e"))
+ (unless ravi/mu4e-account-alist (error "Email account list not found"))
+ (defun ravi/switch-to-mu4e ()
+ (interactive)
+ (let ((buf (or (and (boundp 'mu4e~headers-buffer-name)
+ (get-buffer mu4e~headers-buffer-name))
+ (get-buffer "*mu4e-main*"))))
+ (if buf
+ (if (get-buffer-window buf t)
+ (select-window (get-buffer-window buf t))
+ (switch-to-buffer buf))
+ (mu4e))))
+ (bind-key "C-'" 'ravi/switch-to-mu4e)
+ )
+ :config
+ (progn
+
+ ;; Basic identity for sending mail
+ (require 'smtpmail)
+ (setq send-mail-function 'smtpmail-send-it)
+ (setq message-send-mail-function 'smtpmail-send-it)
+
+ ;; Set up defaults from first account on the list
+ ;; user-full-name
+ ;; smtp-local-domain
+ ;; user-mail-address
+ ;; smtpmail-smtp-user
+ ;; smtpmail-smtp-server
+ ;; mu4e-sent-folder
+ ;; mu4e-trash-folder
+ ;; mu4e-refile-folder
+ (let* ((account (caar ravi/mu4e-account-alist))
+ (account-vars (cdr (assoc account ravi/mu4e-account-alist))))
+ (if account-vars
+ (mapc #'(lambda (var)
+ (set (car var) (cadr var)))
+ account-vars)
+ (error "No email account found")))
+
+ ;; Choose correct SMTP identity wisely
+ (defun ravi/mu4e-set-account ()
+ "Set the account for composing a message."
+ (let* ((account
+ (if mu4e-compose-parent-message
+ (let ((maildir (mu4e-message-field mu4e-compose-parent-message :maildir)))
+ (string-match "/\\(.*?\\)/" maildir)
+ (match-string 1 maildir))
+ (if (= (length ravi/mu4e-account-alist) 1)
+ (caar ravi/mu4e-account-alist)
+ (completing-read (format "Compose with account: (%s) "
+ (mapconcat #'(lambda (var) (car var))
+ ravi/mu4e-account-alist "/"))
+ (mapcar #'(lambda (var) (car var)) ravi/mu4e-account-alist)
+ nil t nil nil (caar ravi/mu4e-account-alist)))))
+ (account-vars (cdr (assoc account ravi/mu4e-account-alist))))
+ (if account-vars
+ (mapc #'(lambda (var)
+ (set (car var) (cadr var)))
+ account-vars)
+ (error "No email account found"))))
+ (add-hook 'mu4e-compose-pre-hook 'ravi/mu4e-set-account)
+
+ (setq mu4e-compose-dont-reply-to-self t)
+ (defun ravi/set-self-addresses ()
+ (setq mu4e-user-mail-address-list (list user-mail-address)))
+ (add-hook 'mu4e-compose-pre-hook 'ravi/set-self-addresses)
+
+ ;; Use async method of sending email, if possible
+ (use-package async
+ :config
+ (progn
+ (require 'smtpmail-async)
+ (setq send-mail-function 'async-smtpmail-send-it)
+ (setq message-send-mail-function 'async-smtpmail-send-it)
+ )
+ :ensure t
+ )
+
+ ;; Basic mu4e configuration parameters
+ (setq mu4e-mu-binary (ravi/emacs-file "site-lisp/mu/mu/mu"))
+ (setq mu4e-maildir "~/.mail")
+
+ ;; Poll accounts only as often as necessary
+ (defvar ravi/mu4e-get-mail-attempts 0
+ "Number of attempts so far to get mail")
+ (defun ravi/check-whether-to-get-mail-for-account (account-info)
+ (let* ((account-interval (assq 'ravi/account-update-interval account-info))
+ (account-update-interval (if account-interval (cadr account-interval) 1)))
+ (if (= (% ravi/mu4e-get-mail-attempts account-update-interval) 0)
+ (concat " " (car account-info))
+ "")))
+ (defun ravi/get-mu4e-get-mail-command ()
+ "Figure out arguments to mbsync"
+ (let ((ravi/all-channels (mapconcat 'ravi/check-whether-to-get-mail-for-account
+ ravi/mu4e-account-alist "")))
+ (setq ravi/mu4e-get-mail-attempts (1+ ravi/mu4e-get-mail-attempts))
+ (if (= (length ravi/all-channels) 0)
+ "true" ;; do nothing command
+ (concat (ravi/emacs-file "site-lisp/isync/src/mbsync") " -q -q" ravi/all-channels)
+ )))
+ (add-hook 'mu4e-update-pre-hook
+ (lambda ()
+ (setq mu4e-get-mail-command (ravi/get-mu4e-get-mail-command))))
+ ;(message "%d: '%s'" ravi/mu4e-get-mail-attempts (ravi/get-mu4e-get-mail-command))
+ ;; Default update command if something goes wrong
+ (setq mu4e-get-mail-command (concat (ravi/emacs-file "site-lisp/isync/src/mbsync") " -a -q -q"))
+ (setq mu4e-update-interval ravi/mu4e-update-interval)
+ (setq mu4e-change-filenames-when-moving t)
+
+ ;; User interface
+ (setq mu4e-html-renderer 'w3m)
+ (setq mu4e-html2text-command "w3m -T text/html")
+ (setq mu4e-view-show-images t)
+ (setq mu4e-view-show-addresses t)
+ (when (boundp 'ravi/mu4e-maildir-shortcuts)
+ (setq mu4e-maildir-shortcuts ravi/mu4e-maildir-shortcuts))
+
+ (add-to-list 'mu4e-view-actions
+ '("ViewInBrowser" . mu4e-action-view-in-browser) t)
+
+ ;; Show summary of all folders
+ (use-package mu4e-maildirs-extension
+ :config
+ (progn
+ (setq mu4e-maildirs-extension-count-command-format
+ (concat mu4e-mu-binary " find %s maildir:%s --fields 'i' | wc -l"))
+ (mu4e-maildirs-extension))
+ :ensure t)
+
+ ;; Display desktop notifications
+ (use-package mu4e-alert
+ :config
+ (progn
+ (mu4e-alert-set-default-style 'libnotify)
+ (mu4e-alert-disable-mode-line-display)
+ (mu4e-alert-enable-notifications))
+ :ensure t)
+
+ (setq message-citation-line-function 'message-insert-formatted-citation-line)
+ (setq message-kill-buffer-on-exit t)
+ (setq mu4e-compose-signature-auto-include nil)
+ (bind-key "C-c C-d" 'ravi/erase-from-point mu4e-compose-mode-map)
+
+ ;; Allow attaching files from dired
+ (require 'gnus-dired)
+ ;; make the `gnus-dired-mail-buffers' function also work on
+ ;; message-mode derived modes, such as mu4e-compose-mode
+ (defun gnus-dired-mail-buffers ()
+ "Return a list of active message buffers."
+ (let (buffers)
+ (save-current-buffer
+ (dolist (buffer (buffer-list t))
+ (set-buffer buffer)
+ (when (and (derived-mode-p 'message-mode)
+ (null message-sent-message-via))
+ (push (buffer-name buffer) buffers))))
+ (nreverse buffers)))
+ (setq gnus-dired-mail-mode 'mu4e-user-agent)
+ (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)
+
+ (when ravi/use-helm-instead-of-ido
+ (add-to-list 'helm-find-files-actions
+ '("Attach files for mu4e" . helm-mu4e-attach) t)
+
+ (defun helm-mu4e-attach (_file)
+ (gnus-dired-attach (helm-marked-candidates))))
+
+ (imagemagick-register-types)
+ )
+ )
+ )
+
+(provide 'ravi-init-mu)
+;;; ravi-init-mu.el ends here