2022-05-26 09:21:54 +02:00
|
|
|
|
;;; oni-notmuch.el --- Notmuch configuration -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
|
|
;; Copyright (C) 2022 Tom Willemse
|
|
|
|
|
|
|
|
|
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
|
|
|
|
;; Keywords: local
|
2023-09-28 08:03:14 +02:00
|
|
|
|
;; Version: 2023.0927.230238
|
|
|
|
|
;; Package-Requires: (oni-sendmail notmuch ol-notmuch olivetti)
|
2022-05-26 09:21:54 +02:00
|
|
|
|
|
|
|
|
|
;; 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 <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Configuration for the notmuch email client.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'notmuch)
|
2023-06-22 07:38:50 +02:00
|
|
|
|
(require 'oni-sendmail)
|
2023-07-21 07:27:41 +02:00
|
|
|
|
(require 'shell)
|
2022-05-26 09:21:54 +02:00
|
|
|
|
|
|
|
|
|
(defun oni-notmuch-search-delete-thread (&optional reverse begin end)
|
|
|
|
|
"Archive and mark all messages in the selected threads for deletion.
|
|
|
|
|
REVERSE means to reverse the operation (unarchive and don't
|
|
|
|
|
delete). BEGIN and END mark the beginning and end of the region
|
|
|
|
|
in which to mark thread."
|
|
|
|
|
(interactive (cons current-prefix-arg (notmuch-interactive-region)))
|
|
|
|
|
(notmuch-search-archive-thread reverse begin end)
|
|
|
|
|
(notmuch-search-tag (notmuch-tag-change-list '("deleted") reverse) begin end))
|
|
|
|
|
|
2023-07-21 07:27:41 +02:00
|
|
|
|
;;; Needs to be available at both run-time and compile-time so that the call to
|
|
|
|
|
;;; the ‘rx’ ‘eval’ construct can evaluate the value at compile-time.
|
|
|
|
|
(eval-and-compile
|
|
|
|
|
(defconst oni-notmuch-notmuch-new-buffer-name "*notmuch-new*"))
|
|
|
|
|
|
|
|
|
|
(defun oni-notmuch-notmuch-new-process-sentinel (process signal)
|
|
|
|
|
"Check the status of PROCESS and close its window if it succeeded.
|
|
|
|
|
Display SIGNAL when the process has finished and refresh the
|
|
|
|
|
‘*notmuch-hello*’ buffer."
|
|
|
|
|
(and-let* ((succeeded (equal (process-status process) 'exit))
|
|
|
|
|
(process-window (get-buffer-window (process-buffer process))))
|
|
|
|
|
(delete-window process-window))
|
|
|
|
|
(when (memq (process-status process) '(exit signal))
|
|
|
|
|
(message "%s: %s"
|
|
|
|
|
(caddr (process-command process))
|
|
|
|
|
(substring signal 0 -1))
|
|
|
|
|
(when-let ((buffer (get-buffer "*notmuch-hello*")))
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(notmuch-refresh-this-buffer)))))
|
|
|
|
|
|
2023-06-23 01:36:26 +02:00
|
|
|
|
(defun oni-notmuch-hello-insert-notmuch-command ()
|
|
|
|
|
"Insert a button to run the notmuch command to synchronize mail."
|
|
|
|
|
(widget-insert "Sync email: ")
|
|
|
|
|
(widget-create 'push-button
|
|
|
|
|
:notify (lambda (&rest _)
|
2023-07-21 07:27:41 +02:00
|
|
|
|
(let ((process (start-process-shell-command "notmuch-new" oni-notmuch-notmuch-new-buffer-name "notmuch new")))
|
|
|
|
|
(with-current-buffer (process-buffer process)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(shell-mode)
|
|
|
|
|
(setq-local mode-line-format nil))
|
|
|
|
|
(set-process-sentinel process #'oni-notmuch-notmuch-new-process-sentinel)
|
|
|
|
|
(set-process-filter process #'comint-output-filter)
|
|
|
|
|
(display-buffer (process-buffer process))))
|
2023-06-23 01:36:26 +02:00
|
|
|
|
"sync")
|
|
|
|
|
(widget-insert "\n"))
|
|
|
|
|
|
2022-11-14 01:59:24 +01:00
|
|
|
|
(add-to-list 'notmuch-search-line-faces
|
|
|
|
|
'("@me" . (:foreground "#90ca82")))
|
2022-11-14 02:04:51 +01:00
|
|
|
|
(add-to-list 'notmuch-search-line-faces
|
|
|
|
|
'("deleted" . (:foreground "#3f4242")))
|
2022-08-17 23:50:41 +02:00
|
|
|
|
|
2023-07-21 07:27:41 +02:00
|
|
|
|
(add-to-list 'display-buffer-alist
|
|
|
|
|
(cons (rx bos (eval oni-notmuch-notmuch-new-buffer-name) eos)
|
|
|
|
|
'(display-buffer-in-side-window
|
|
|
|
|
(side . bottom)
|
|
|
|
|
(slot . 0)
|
|
|
|
|
(window-height . 5))))
|
|
|
|
|
|
2023-06-23 01:36:26 +02:00
|
|
|
|
(setf (cdr notmuch-hello-sections)
|
|
|
|
|
(cons 'oni-notmuch-hello-insert-notmuch-command (cdr notmuch-hello-sections)))
|
|
|
|
|
|
2022-05-26 09:21:54 +02:00
|
|
|
|
(define-key notmuch-search-mode-map (kbd "d") #'oni-notmuch-search-delete-thread)
|
|
|
|
|
|
2023-09-28 08:03:14 +02:00
|
|
|
|
(add-hook 'notmuch-hello-mode-hook 'olivetti-mode)
|
|
|
|
|
(add-hook 'notmuch-show-mode-hook 'olivetti-mode)
|
|
|
|
|
|
2022-05-26 09:21:54 +02:00
|
|
|
|
(provide 'oni-notmuch)
|
|
|
|
|
;;; oni-notmuch.el ends here
|