summaryrefslogtreecommitdiff
path: root/emacs/.config/emacs-kj/lisp/kj-email.el
blob: 2ab75f4b1d5a43fc6d5cdd53f5a7da70c28bf651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; -*- lexical-binding: t; -*-

(setq kj/fastmail-maildir (expand-file-name "~/Maildir/fastmail"))

(when (file-exists-p kj/fastmail-maildir)
  (use-package notmuch)

  (setq message-mail-user-agent 'message-user-agent
        message-kill-buffer-on-exit t
        message-send-mail-function 'message-send-mail-with-sendmail)

  (setq sendmail-program "mujmap"
        message-sendmail-extra-arguments (list "-C" kj/fastmail-maildir "send")))

(provide 'kj-email)