123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- ;;; -*- lexical-binding: t; -*-
- ;;; Config is mostly from https://kkatsuyuki.github.io/notmuch-conf/ aadsa
- ;;; This is all modified from
- ;;; https://github.com/fuxialexander/doom-emacs-private-xfu/
- ;;;; Notmuch
- (use-package! notmuch
- :commands (notmuch
- notmuch-tree
- notmuch-tree-mode
- notmuch-search
- notmuch-search-mode
- notmuch-hello
- notmuch-hello-mode
- notmuch-show
- notmuch-show-mode
- notmuch-message-mode)
- :init
- (map!
- (:leader
- (:prefix "e"
- :desc "Send queued mail" "s" #'smtpmail-send-queued-mail
- :desc "Open (i)nbox" "i" #'=notmuch
- :desc "Open (n)otmuch" "n" #'notmuch
- :desc "(C)ompose mail" "c" #'notmuch-mua-new-mail))))
- (set-evil-initial-state! '(notmuch-hello-mode
- notmuch-show-mode
- notmuch-search-mode
- notmuch-tree-mode
- notmuch-message-mode) 'normal)
- ;; (add-hook 'notmuch-tree-mode-hook '+mail/buffer-face-mode-notmuch)
- ;; (add-hook 'notmuch-search-mode-hook '+mail/buffer-face-mode-notmuch)
- ;; (add-hook 'notmuch-message-mode-hook '+mail/buffer-face-mode-notmuch)
- (add-hook 'notmuch-message-mode-hook (lambda () (set (make-local-variable 'company-backends) '(notmuch-company (company-ispell :with company-yasnippet)))))
- (add-hook 'notmuch-tree-mode-hook (lambda () (setq-local line-spacing nil)))
- ;;(remove-hook 'message-mode-hook #'turn-on-auto-fill)
- ;;(remove-hook 'notmuch-message-mode-hook #'turn-on-auto-fill)
- ;; (push 'notmuch-tree-mode evil-snipe-disabled-modes)
- ;; (push 'notmuch-hello-mode evil-snipe-disabled-modes)
- ;; (push 'notmuch-search-mode evil-snipe-disabled-modes)
- ;; (push 'notmuch-show-mode evil-snipe-disabled-modes)
- (advice-add #'notmuch-start-notmuch-sentinel :override #'+mail/notmuch-start-notmuch-sentinel)
- (advice-add #'notmuch-show :override #'+mail/notmuch-show-reuse-buffer)
- (advice-add #'notmuch-hello-insert-searches :override #'+mail/notmuch-hello-insert-searches)
- (advice-add #'notmuch-hello-insert-saved-searches :override #'+mail/notmuch-hello-insert-saved-searches)
- (advice-add #'notmuch-hello-insert-buttons :override #'+mail/notmuch-hello-insert-buttons)
- ;; (set! :popup "\\*notmuch-hello\\*" '((size . 20) (side . left)) '((quit . t) (modeline . nil)))
- (push (lambda (buf) (string-match-p "^\\*notmuch" (buffer-name buf)))
- doom-real-buffer-functions)
- (map! (:after notmuch
- (:map notmuch-show-mode-map
- :nmv "o" #'ace-link-notmuch-show
- :nmv "i" #'+mail/open-message-with-mail-app-notmuch-show
- :nmv "I" #'notmuch-show-view-all-mime-parts
- :nmv "q" #'notmuch-bury-or-kill-this-buffer
- (:when (featurep! :completion ivy)
- :nmv "s" #'counsel-notmuch)
- (:when (featurep! :completion helm)
- :nmv "s" #'helm-notmuch)
- :nmv "t" #'notmuch-tree-from-show-current-query
- :nmv "N" #'notmuch-mua-new-mail
- :nmv "n" #'notmuch-show-next-thread-show
- :nmv "r" #'notmuch-show-reply
- :nmv "<tab>" #'notmuch-show-toggle-visibility-headers
- :nmv "R" #'notmuch-show-reply-sender
- :nmv "p" #'notmuch-show-previous-thread-show)
- (:map notmuch-hello-mode-map
- :nmv "o" #'ace-link-notmuch-hello
- :nmv "t" #'notmuch-tree
- :nmv "k" #'widget-backward
- :nmv "n" #'notmuch-mua-new-mail
- :nmv "N" #'notmuch-mua-new-mail
- :nmv "j" #'widget-forward
- (:when (featurep! :completion ivy)
- :nmv "s" #'counsel-notmuch)
- (:when (featurep! :completion helm)
- :nmv "s" #'helm-notmuch)
- :nmv "q" #'+mail/quit
- :nmv "r" #'notmuch-hello-update)
- (:map notmuch-search-mode-map
- :nmv "j" #'notmuch-search-next-thread
- :nmv "k" #'notmuch-search-previous-thread
- :nmv "t" #'notmuch-tree-from-search-thread
- ;; :nmv "RET" #'notmuch-tree-from-search-thread
- :nmv "RET" #'notmuch-search-show-thread
- :nmv "N" #'notmuch-mua-new-mail
- :nmv "T" #'notmuch-tree-from-search-current-query
- :nmv ";" #'notmuch-search-tag
- :nmv "," #'notmuch-jump-search
- :nmv "d" #'+mail/notmuch-search-delete
- :nmv "a" #'notmuch-search-archive-thread
- ;; :nmv "q" #'notmuch
- :nmv "q" #'+mail/quit
- :nmv "R" #'notmuch-search-reply-to-thread-sender
- :nmv "r" #'notmuch-search-reply-to-thread
- :nmv "go" #'+notmuch-exec-offlineimap
- (:when (featurep! :completion ivy)
- :nmv "s" #'counsel-notmuch)
- (:when (featurep! :completion helm)
- :nmv "s" #'helm-notmuch)
- :nmv "x" #'+mail/notmuch-search-spam)
- (:map notmuch-tree-mode-map
- :nmv "j" #'notmuch-tree-next-message
- :nmv "k" #'notmuch-tree-prev-message
- :nmv "S" #'notmuch-search-from-tree-current-query
- (:when (featurep! :completion ivy)
- :nmv "s" #'counsel-notmuch)
- (:when (featurep! :completion helm)
- :nmv "s" #'helm-notmuch)
- :nmv "t" #'notmuch-tree
- :nmv ";" #'notmuch-tree-tag
- :nmv "RET" #'notmuch-tree-show-message
- :nmv "q" #'notmuch-tree-quit
- :nmv "s-n" #'notmuch-mua-new-mail
- :nmv "r" #'notmuch-search-reply-to-thread-sender
- :nmv "a" #'notmuch-tree-archive-message-then-next
- :nmv "A" #'notmuch-tree-archive-thread
- :nmv "i" #'+mail/open-message-with-mail-app-notmuch-tree
- :nmv "d" #'+mail/notmuch-tree-delete
- :nmv "x" #'+mail/notmuch-tree-spam)
- (:map notmuch-message-mode-map
- :localleader
- :desc "Send and Exit" doom-localleader-key #'notmuch-mua-send-and-exit
- :desc "Kill Message Buffer" "k" #'notmuch-mua-kill-buffer
- :desc "Save as Draft" "s" #'message-dont-send
- :desc "Attach file" "f" #'mml-attach-file)))
- ; Use w3m to parse HTML email
- (setq mm-text-html-renderer 'w3m)
- (setq w3m-fill-column 72)
- ;;;; counsel-notmuch
- (when (featurep! :completion ivy)
- (use-package! counsel-notmuch
- :commands counsel-notmuch
- :after notmuch))
- ;;;; helm-notmuch
- (when (featurep! :completion helm)
- (use-package! helm-notmuch
- :commands helm-notmuch
- :after notmuch))
- ;;;; org-mime
- (use-package! org-mime
- :after (org notmuch))
- :config (setq org-mime-library 'mml)
- ;;;###autoload
- (defun =mail ()
- "Activate (or switch to) `notmuch' in its workspace."
- (interactive)
- (if-let* ((buf (cl-find-if (lambda (it) (string-match-p "^\\*notmuch" (buffer-name (window-buffer it))))
- (doom-visible-windows))))
- (select-window (get-buffer-window buf))
- (notmuch-search "tag:inbox")))
- ;; (call-interactively 'notmuch-hello-sidebar))
- ;;;###autoload
- (defun +mail/quit ()
- (interactive)
- ;; (+popup/close (get-buffer-window "*notmuch-hello*"))
- (doom-kill-matching-buffers "^\\*notmuch"))
- ;;;###autoload
- (defun +mail/notmuch-search-delete ()
- (interactive)
- (notmuch-search-add-tag
- (list "+deleted" "-inbox" "-unread"))
- (notmuch-search-next-thread))
- ;;;###autoload
- (defun +mail/notmuch-tree-delete ()
- (interactive)
- (notmuch-tree-add-tag
- (list "+trash" "-inbox" "-unread"))
- (notmuch-tree-next-message))
- ;;;###autoload
- (defun +mail/notmuch-search-spam ()
- (interactive)
- (notmuch-search-add-tag
- (list "+spam" "-inbox" "-unread"))
- (notmuch-search-next-thread))
- ;;;###autoload
- (defun +mail/notmuch-tree-spam ()
- (interactive)
- (notmuch-tree-add-tag
- (list "+spam" "-inbox" "-unread"))
- (notmuch-tree-next-message))
- ;;;###autoload
- (defun +mail/open-message-with-mail-app-notmuch-tree ()
- (interactive)
- (let* ((msg-path (car (plist-get (notmuch-tree-get-message-properties) :filename)))
- (temp (make-temp-file "notmuch-message-" nil ".eml")))
- (shell-command-to-string (format "cp '%s' '%s'" msg-path temp))
- (start-process-shell-command "email" nil (format "thunderbird '%s'" temp))))
- ;; Override
- ;;;###autoload
- (defun +mail/notmuch-start-notmuch-sentinel (proc event)
- "Process sentinel function used by `notmuch-start-notmuch'."
- (let* ((err-file (process-get proc 'err-file))
- (err-buffer (or (process-get proc 'err-buffer)
- (find-file-noselect err-file)))
- (err (when (not (zerop (buffer-size err-buffer)))
- (with-current-buffer err-buffer (buffer-string))))
- (sub-sentinel (process-get proc 'sub-sentinel))
- (real-command (process-get proc 'real-command)))
- (condition-case err
- (progn
- ;; Invoke the sub-sentinel, if any
- (when sub-sentinel
- (funcall sub-sentinel proc event))
- ;; Check the exit status. This will signal an error if the
- ;; exit status is non-zero. Don't do this if the process
- ;; buffer is dead since that means Emacs killed the process
- ;; and there's no point in telling the user that (but we
- ;; still check for and report stderr output below).
- (when (buffer-live-p (process-buffer proc))
- (notmuch-check-async-exit-status proc event real-command err))
- ;; If that didn't signal an error, then any error output was
- ;; really warning output. Show warnings, if any.
- (let ((warnings
- (when err
- (with-current-buffer err-buffer
- (goto-char (point-min))
- (end-of-line)
- ;; Show first line; stuff remaining lines in the
- ;; errors buffer.
- (let ((l1 (buffer-substring (point-min) (point))))
- (skip-chars-forward "\n")
- (cons l1 (unless (eobp)
- (buffer-substring (point) (point-max)))))))))
- (when warnings
- (notmuch-logged-error (car warnings) (cdr warnings)))))
- (error
- ;; Emacs behaves strangely if an error escapes from a sentinel,
- ;; so turn errors into messages.
- (message "%s" (error-message-string err))))
- (when err-buffer
- (set-process-query-on-exit-flag (get-buffer-process err-buffer) nil)
- (kill-buffer err-buffer))
- (when err-file (ignore-errors (delete-file err-file)))))
- ;;;###autoload
- (defun +mail/notmuch-show-reuse-buffer (thread-id &optional elide-toggle parent-buffer query-context buffer-name)
- "Run \"notmuch show\" with the given thread ID and display results.
- ELIDE-TOGGLE, if non-nil, inverts the default elide behavior.
- The optional PARENT-BUFFER is the notmuch-search buffer from
- which this notmuch-show command was executed, (so that the
- next thread from that buffer can be show when done with this
- one).
- The optional QUERY-CONTEXT is a notmuch search term. Only
- messages from the thread matching this search term are shown if
- non-nil.
- The optional BUFFER-NAME provides the name of the buffer in
- which the message thread is shown. If it is nil (which occurs
- when the command is called interactively) the argument to the
- function is used.
- Returns the buffer containing the messages, or NIL if no messages
- matched."
- (interactive "sNotmuch show: \nP")
- (let ((buffer-name (generate-new-buffer-name
- (or (concat "*notmuch-" buffer-name "*")
- (concat "*notmuch-" thread-id "*"))))
- ;; We override mm-inline-override-types to stop application/*
- ;; parts from being displayed unless the user has customized
- ;; it themselves.
- (mm-inline-override-types
- (if (equal mm-inline-override-types
- (eval (car (get 'mm-inline-override-types 'standard-value))))
- (cons "application/*" mm-inline-override-types)
- mm-inline-override-types)))
- (switch-to-buffer (get-buffer-create buffer-name))
- ;; No need to track undo information for this buffer.
- (setq buffer-undo-list t)
- (notmuch-show-mode)
- ;; Set various buffer local variables to their appropriate initial
- ;; state. Do this after enabling `notmuch-show-mode' so that they
- ;; aren't wiped out.
- (setq notmuch-show-thread-id thread-id
- notmuch-show-parent-buffer parent-buffer
- notmuch-show-query-context (if (or (string= query-context "")
- (string= query-context "*"))
- nil query-context)
- notmuch-show-process-crypto notmuch-crypto-process-mime
- ;; If `elide-toggle', invert the default value.
- notmuch-show-elide-non-matching-messages
- (if elide-toggle
- (not notmuch-show-only-matching-messages)
- notmuch-show-only-matching-messages))
- (add-hook 'post-command-hook #'notmuch-show-command-hook nil t)
- (jit-lock-register #'notmuch-show-buttonise-links)
- (notmuch-tag-clear-cache)
- (let ((inhibit-read-only t))
- (if (notmuch-show--build-buffer)
- ;; Messages were inserted into the buffer.
- (current-buffer)
- ;; No messages were inserted - presumably none matched the
- ;; query.
- (kill-buffer (current-buffer))
- (ding)
- (message "No messages matched the query!")
- nil))))
- ;;;###autoload
- ;(defun +mail/notmuch-hello-insert-searches (title query-list &rest options)
- ; "Insert a section with TITLE showing a list of buttons made from QUERY-LIST.
- ;QUERY-LIST should ideally be a plist but for backwards
- ;compatibility other forms are also accepted (see
- ;`notmuch-saved-searches' for details). The plist should
- ;contain keys :name and :query; if :count-query is also present
- ;then it specifies an alternate query to be used to generate the
- ;count for the associated search.
- ;Supports the following entries in OPTIONS as a plist:
- ;:initially-hidden - if non-nil, section will be hidden on startup
- ;:show-empty-searches - show buttons with no matching messages
- ;:hide-if-empty - hide if no buttons would be shown
- ; (only makes sense without :show-empty-searches)
- ;:filter - This can be a function that takes the search query as its argument and
- ; returns a filter to be used in conjuction with the query for that search or nil
- ; to hide the element. This can also be a string that is used as a combined with
- ; each query using \"and\".
- ;:filter-count - Separate filter to generate the count displayed each search. Accepts
- ; the same values as :filter. If :filter and :filter-count are specified, this
- ; will be used instead of :filter, not in conjunction with it."
- ; (widget-insert (propertize title 'face 'org-agenda-structure))
- ; (if (and notmuch-hello-first-run (plist-get options :initially-hidden))
- ; (add-to-list 'notmuch-hello-hidden-sections title))
- ; (let ((is-hidden (member title notmuch-hello-hidden-sections))
- ; (widget-push-button-prefix "")
- ; (widget-push-button-suffix "")
- ; (start (point)))
- ; (if is-hidden
- ; (widget-create 'push-button
- ; :notify `(lambda (widget &rest ignore)
- ; (setq notmuch-hello-hidden-sections
- ; (delete ,title notmuch-hello-hidden-sections))
- ; (notmuch-hello-update))
- ; (propertize " +" 'face 'org-agenda-structure))
- ; (widget-create 'push-button
- ; :notify `(lambda (widget &rest ignore)
- ; (add-to-list 'notmuch-hello-hidden-sections
- ; ,title)
- ; (notmuch-hello-update))
- ; " -"))
- ; (widget-insert "\n")
- ; (when (not is-hidden)
- ; (let ((searches (apply 'notmuch-hello-query-counts query-list options)))
- ; (when (or (not (plist-get options :hide-if-empty))
- ; searches)
- ; (widget-insert "\n")
- ; (notmuch-hello-insert-buttons searches)
- ; (indent-rigidly start (point) notmuch-hello-indent))))))
- ;
- ;;;;###autoload
- ;(defun +mail/notmuch-hello-insert-saved-searches ()
- ; "Insert the saved-searches section."
- ; (let ((searches (notmuch-hello-query-counts
- ; (if notmuch-saved-search-sort-function
- ; (funcall notmuch-saved-search-sort-function
- ; notmuch-saved-searches)
- ; notmuch-saved-searches)
- ; :show-empty-searches notmuch-show-empty-saved-searches)))
- ; (when searches
- ; (widget-insert (propertize "Notmuch" 'face 'org-agenda-date-today))
- ; (widget-insert "\n\n")
- ; (widget-insert (propertize "Saved searches" 'face 'org-agenda-structure))
- ; (widget-insert "\n\n")
- ; (let ((start (point)))
- ; (notmuch-hello-insert-buttons searches)
- ; (indent-rigidly start (point) notmuch-hello-indent)))))
- ;
- ;;;;###autoload
- ;(defun +mail/notmuch-hello-insert-buttons (searches)
- ; "Insert buttons for SEARCHES.
- ;SEARCHES must be a list of plists each of which should contain at
- ;least the properties :name NAME :query QUERY and :count COUNT,
- ;where QUERY is the query to start when the button for the
- ;corresponding entry is activated, and COUNT should be the number
- ;of messages matching the query. Such a plist can be computed
- ;with `notmuch-hello-query-counts'."
- ; (let* ((widest (notmuch-hello-longest-label searches))
- ; (tags-and-width (notmuch-hello-tags-per-line widest))
- ; (tags-per-line (car tags-and-width))
- ; (column-width (cdr tags-and-width))
- ; (column-indent 0)
- ; (count 0)
- ; (reordered-list (notmuch-hello-reflect searches tags-per-line))
- ; ;; Hack the display of the buttons used.
- ; (widget-push-button-prefix "")
- ; (widget-push-button-suffix ""))
- ; ;; dme: It feels as though there should be a better way to
- ; ;; implement this loop than using an incrementing counter.
- ; (mapc (lambda (elem)
- ; ;; (not elem) indicates an empty slot in the matrix.
- ; (when elem
- ; (if (> column-indent 0)
- ; (widget-insert (make-string column-indent ? )))
- ; (let* ((name (plist-get elem :name))
- ; (query (plist-get elem :query))
- ; (oldest-first (case (plist-get elem :sort-order)
- ; (newest-first nil)
- ; (oldest-first t)
- ; (otherwise notmuch-search-oldest-first)))
- ; (search-type (eq (plist-get elem :search-type) 'tree))
- ; (msg-count (plist-get elem :count)))
- ; (widget-insert (format "\n%5s "
- ; (notmuch-hello-nice-number msg-count)))
- ; (widget-create 'push-button
- ; :notify #'notmuch-hello-widget-search
- ; :notmuch-search-terms query
- ; :notmuch-search-oldest-first oldest-first
- ; :notmuch-search-type search-type
- ; name)
- ; (setq column-indent
- ; (1+ (max 0 (- column-width (length name)))))))
- ; (setq count (1+ count))
- ; (when (eq (% count tags-per-line) 0)
- ; (setq column-indent 0)
- ; (widget-insert "\n")))
- ; reordered-list)
- ;
- ; ;; If the last line was not full (and hence did not include a
- ; ;; carriage return), insert one now.
- ; (unless (eq (% count tags-per-line) 0)
- ; (widget-insert "\n"))))
- ; Kill email message buffers when you close them
- (setq message-kill-buffer-on-exit t)
- (setq message-default-mail-headers "Cc: \nBcc: \n")
- (setq message-auto-save-directory "~/Mail/colin@unbl.ink/Drafts/")
- (setq message-directory "~/Mail/colin@unbl.ink/")
- ;;; Setup sending email with msmtp
- (setq send-mail-function 'sendmail-send-it
- sendmail-program "/usr/local/bin/msmtp"
- smtpmail-queue-mail t
- mail-specify-envelope-from t
- message-sendmail-f-is-evil t
- message-sendmail-envelope-from 'header
- message-sendmail-extra-arguments '("--read-envelope-from")
- mail-envelope-from 'header)
|