aboutsummaryrefslogtreecommitdiffstats
path: root/oni-notmuch.el
blob: 4d79edda3b2a3677ec657a1220d7ed8094302d9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
;;; oni-notmuch.el --- Notmuch configuration         -*- lexical-binding: t; -*-

;; Copyright (C) 2022  Tom Willemse

;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2023.0927.230238
;; Package-Requires: (oni-sendmail notmuch ol-notmuch olivetti)

;; 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)
(require 'oni-sendmail)
(require 'shell)

(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))

;;; 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)))))

(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 _)
                           (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))))
                 "sync")
  (widget-insert "\n"))

(add-to-list 'notmuch-search-line-faces
             '("@me" . (:foreground "#90ca82")))
(add-to-list 'notmuch-search-line-faces
             '("deleted" . (:foreground "#3f4242")))

(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))))

(setf (cdr notmuch-hello-sections)
      (cons 'oni-notmuch-hello-insert-notmuch-command (cdr notmuch-hello-sections)))

(define-key notmuch-search-mode-map (kbd "d") #'oni-notmuch-search-delete-thread)

(add-hook 'notmuch-hello-mode-hook 'olivetti-mode)
(add-hook 'notmuch-show-mode-hook 'olivetti-mode)

(provide 'oni-notmuch)
;;; oni-notmuch.el ends here