summaryrefslogtreecommitdiffhomepage
path: root/attic/notmuch.org
blob: 59d9a0646b2b58495b6f463d066bac5365c0fe78 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
#+title: notmuch configuration
#+property: header-args :tangle no :comments no :results silent :shebang "#!/bin/bash"
#+auto_tangle: t

* notmuch
*** jumping from/to index
    #+begin_src emacs-lisp
      (defvar-local jao-notmuch--tree-buffer nil)

      (defun jao-notmuch-goto-message-buffer (&optional and-click)
        (interactive "P")
        (when (window-live-p notmuch-tree-message-window)
          (let ((b (current-buffer)))
            (select-window notmuch-tree-message-window)
            (setq-local jao-notmuch--tree-buffer b)
            (when (and and-click (button-at (point)))
              (push-button))
            t)))

      (defun jao-notmuch-goto-message-buffer* ()
        (interactive)
        (save-window-excursion (jao-notmuch-goto-message-buffer t)))

      (defun jao-notmuch-goto-index-buffer ()
        (interactive)
        (if (buffer-live-p jao-notmuch--tree-buffer)
            (pop-to-buffer jao-notmuch--tree-buffer)
          (user-error "No index for this buffer")))

      (defun jao-notmuch-browse-urls ()
        (interactive)
        (when (or (derived-mode-p 'notmuch-show-mode)
                  (jao-notmuch-goto-message-buffer))
          (notmuch-show-browse-urls)))

      (defun jao-notmuch-toggle-mime-parts ()
        (interactive)
        (when (jao-notmuch-goto-message-buffer)
         (goto-char (point-min))
         (let ((notmuch-show-text/html-blocked-images nil)
               (shr-inhibit-images nil)
               (shr-blocked-images nil))
           (save-excursion
             (when (re-search-forward "\\[ multipart/alternative \\]" nil t)
               (while (forward-button 1 nil nil t)
                 (notmuch-show-toggle-part-invisibility)))))
         (jao-notmuch-goto-index-buffer)))

      (defun jao-notmuch-toggle-images ()
        (interactive)
        (save-window-excursion
          (jao-notmuch-goto-message-buffer)
          (when (derived-mode-p 'notmuch-show-mode)
            (let ((notmuch-show-text/html-blocked-images nil)
                  (shr-inhibit-images nil)
                  (shr-blocked-images nil))
              (notmuch-refresh-this-buffer)))))

    #+end_src
*** shared commands
    #+begin_src emacs-lisp
      (defun jao-notmuch-tag-jump (reverse)
        "Create a jump menu for tagging operations, ensuring minibuffer can grow."
        (interactive "P")
        (let ((resize-mini-windows t)) (notmuch-tag-jump reverse)))

      (defun jao-notmuch-tree-by-tag (&optional new)
        "Jump to a tag tree search, using its key, and ensuring minibuffer can grow."
        (interactive "P")
        (when-let (tag (notmuch-select-tag-with-completion "Forest of tag: "))
          (notmuch-tree (concat "tag:" tag) (when new "tag:/unread|new/"))))

      (defun jao-notmuch-tree--tag-next (tags reverse &optional thread)
        (if thread
            (notmuch-tree-tag-thread (notmuch-tag-change-list tags reverse))
          (notmuch-tree-tag (notmuch-tag-change-list tags reverse)))
        (if thread
            (notmuch-tree-next-thread)
          (notmuch-tree-next-matching-message))
        (notmuch-tree-show-message nil))

      (defun jao-notmuch-tree-flagged-next (reverse)
        (interactive "P")
        (jao-notmuch-tree--tag-next '("+flagged") reverse))

      (defun jao-notmuch-follow-link (&optional external)
        (interactive "P")
        (with-current-notmuch-show-message
         (goto-char (point-min))
         (if (not (or (search-forward-regexp "\\bVia: " nil t)
                      (search-forward-regexp "\\bURL: " nil t)
                      (and (search-forward-regexp "\\bLink$" nil t)
                           (not (beginning-of-line)))))
             (user-error "No standard Via/URL/Link")
           (re-search-forward "https?://" nil t)
           (if external
               (jao-browse-with-external-browser)
             (browse-url (jao-url-around-point))))))

      (defun jao-notmuch-open-enclosure (add)
        (interactive "P")
        (with-current-notmuch-show-message
         (goto-char (point-min))
         (if (not (search-forward "Enclosure:" nil t))
             (user-error "No enclosure in message body")
           (re-search-forward "https?://" nil t)
           (if-let (url (thing-at-point-url-at-point))
               (progn
                 (message "%s %s ..." (if add "Adding" "Playing") url)
                 (if add
                     (emms-add-url url)
                   (emms-play-url url)
                   (sit-for 1)
                   (jao-emms-echo)))
             (error "Found an enclosure, but not a link!")))))
    #+end_src
*** minibuffer notifications
    #+begin_src emacs-lisp
      (defvar jao-notmuch-minibuffer-string "")

      (defvar jao-notmuch-minibuffer-queries
        '((:name "" :query "tag:new" :face jao-themes-f00)
          (:name "B" :query "tag:new and tag:bigml and tag:inbox")
          (:name "b" :query "tag:new and tag:bigml and tag:bugs"
                 :face jao-themes-error)
          (:name "S" :query "tag:new and tag:bigml and tag:support")
          (:name "W" :query "tag:new and tag:bigml" :face jao-themes-dimm)
          (:name "I" :query "tag:new and tag:jao and tag:inbox")
          (:name "J" :query "tag:new and tag:jao" :face jao-themes-dimm)
          (:name "E" :query "tag:new and tag:feeds and tag:emacs"
                 :face jao-themes-dimm)
          (:name "F" :query "tag:new and tag:feeds and not tag:emacs"
                 :face jao-themes-dimm)))

      (defun jao-notmuch-update-minibuffer ()
        (let ((cnts (notmuch-hello-query-counts jao-notmuch-minibuffer-queries)))
          (setq jao-notmuch-minibuffer-string
                (mapconcat (lambda (c)
                             (propertize (format "%s%s"
                                                 (plist-get c :name)
                                                 (plist-get c :count))
                                         'face (or (plist-get c :face) 'default)))
                           cnts
                           " "))
          (jao-minibuffer-refresh)))

      (when (eq jao-afio-mail-function 'notmuch)
        (jao-minibuffer-add-variable 'jao-notmuch-minibuffer-string -20))
    #+end_src
*** searches
    #+begin_src emacs-lisp
      (defun jao-notmuch--and (frags)
        (when frags (mapconcat #'identity frags " AND ")))

      (defvar jao-notmuch-alt-searches '())

      (defun jao-notmuch-saved-search-jump ()
        "Jump to a saved search, using its key, for the alt list."
        (interactive)
        (let ((resize-mini-windows t)
              (notmuch-saved-searches jao-notmuch-alt-searches))
          (notmuch-jump-search)))

      (defun jao-notmuch--q-base (d0 d1 k q)
        (list :name (concat d0 (when d1 "/") d1)
              :search-type 'tree :key k :query q
              :sort-order 'oldest-first))

      (defun jao-notmuch--q (d0 d1 &optional k qs)
        (when (null qs)
          (add-to-list 'jao-notmuch-alt-searches
                       (jao-notmuch--q-base d0 d1 k
                                            (format "folder:%s/%s" d0 d1))
                       t))
        (let ((q (or (jao-notmuch--and qs)
                     (format "folder:%s/%s and tag:unread" d0 d1))))
          (jao-notmuch--q-base d0 d1 nil q)))

      (defun jao-notmuch--mboxes-search (box &rest excluded)
        (let ((ms (seq-difference (jao-list-mailboxes box) excluded))
              (bp (substring box 0 1)))
          (mapcar `(lambda (m)
                     (jao-notmuch--q ,box (car m) (concat ,bp (cdr m))))
                  (shorten-strings (sort ms #'string<)))))

      (setq notmuch-saved-searches
            `(,(jao-notmuch--q "bigml" "inbox" "bi")
              ,@(jao-notmuch--mboxes-search "bigml" "inbox" "deploys")
              ,(jao-notmuch--q "jao" "inbox" "ji")
              ,@(jao-notmuch--mboxes-search "jao" "inbox")
              ,@(jao-notmuch--mboxes-search "feeds")
              ,(jao-notmuch--q "bml/today" nil "tb" '("tag:bigml" "date:1d.."))
              ,(jao-notmuch--q "jao/today" nil "tj" '("tag:jao" "date:1d.."))
              ,(jao-notmuch--q "flagged" nil "r" '("tag:flagged"))
              ,(jao-notmuch--q "new" nil "n" '("tag:new"))
              ,(jao-notmuch--q "draft" nil "d" '("tag:draft"))))
    #+end_src
*** hello
    #+begin_src emacs-lisp
      (use-package notmuch-hello
        :init
        (setq notmuch-hello-sections '(notmuch-hello-insert-saved-searches
                                       notmuch-hello-insert-alltags
                                       ;; notmuch-hello-insert-recent-searches
                                       notmuch-hello-insert-header)
              notmuch-hello-thousands-separator ","
              notmuch-hello-recent-searches-max 5
              notmuch-show-all-tags-list t
              notmuch-show-logo nil
              notmuch-show-empty-saved-searches nil)
        (defun jao--refresh-agenda () (save-window-excursion (org-agenda-list)))

        (defun jao-notmuch-refresh-hello ()
          (interactive)
          (notmuch-refresh-this-buffer)
          (let ((inhibit-message t))
            (beginning-of-buffer)
            (widget-forward 2)))

        :config

        (with-eval-after-load "consult-notmuch"
          (define-key notmuch-hello-mode-map "S" #'consult-notmuch))

        :hook ((notmuch-hello-refresh . jao-notmuch-update-minibuffer)
               (notmuch-hello-refresh . jao--refresh-agenda))

        :bind (:map notmuch-hello-mode-map
               (("g" . jao-notmuch-refresh-hello)
                ("k" . nil)
                ("SPC" . widget-button-press))))

    #+end_src
*** show
    #+begin_src emacs-lisp
      (use-package notmuch-show
        :init
        (setq notmuch-message-headers '("Subject" "To" "Cc" "Date" "List-Id")
              notmuch-show-all-multipart/alternative-parts nil
              notmuch-show-indent-messages-width 0
              notmuch-show-imenu-indent t
              notmuch-show-part-button-default-action 'notmuch-show-view-part
              notmuch-show-only-matching-messages t
              notmuch-wash-signature-lines-max 0
              notmuch-wash-wrap-lines-length 80
              notmuch-wash-citation-lines-prefix 10
              notmuch-wash-citation-lines-suffix 20)

        :config

        (defun jao-mail-clean-address (fun address)
          (let ((address (if (string-match ".+ updates on arXiv.org: \\(.+\\)"
                                           address)
                             (with-temp-buffer
                               (insert (match-string 1 address))
                               (let ((shr-width 1000))
                                 (shr-render-region (point-min) (point-max)))
                               (buffer-string))
                           (replace-regexp-in-string "^ElDiario.es - ElDiario.es"
                                                     "ElDiario.es"
                                                     address))))
            (funcall fun address)))

        (advice-add 'notmuch-clean-address :around #'jao-mail-clean-address)

        :bind (:map notmuch-show-mode-map
               (("h" . jao-notmuch-goto-index-buffer)
                ("i" . jao-notmuch-toggle-images)
                ("j" . jao-notmuch-saved-search-jump)
                ("k" . jao-notmuch-tag-jump))))
    #+end_src
*** tree
    #+begin_src emacs-lisp
      (use-package notmuch-tree
        :init
        (setq notmuch-tree-result-format
              '(("date" . "%12s  ")
                ("authors" . "%-35s")
                ((("tree" . "%s ")("subject" . "%s")) . "  %-100s")
                ("tags" . "  (%s)"))
              notmuch-search-result-format
              '(("date" . "%12s ")
                ("count" . "%-7s ")
                ("authors" . "%-35s")
                ("subject" . "%-100s")
                ("tags" . "(%s)"))
              notmuch-unthreaded-result-format notmuch-tree-result-format)

        :config

        (defun jao-notmuch-tree-next (no-exit)
          "Next message in forest or exit if none."
          (interactive "P")
          (notmuch-tree-next-matching-message (not no-exit)))

        (defun jao-notmuch-tree-scroll-or-next ()
          "Scroll or next message in forest or exit if none."
          (interactive)
          (if (notmuch-tree-scroll-message-window)
              (notmuch-tree-next-matching-message t)
            (when (not (window-live-p notmuch-tree-message-window))
              (notmuch-tree-show-message nil))))

        (defun jao-notmuch-tree-show-or-scroll ()
          "Show current message, or scroll it if visible."
          (interactive)
          (if (window-live-p notmuch-tree-message-window)
              (scroll-other-window 1)
            (notmuch-tree-show-message nil)))

        (defun jao-notmuch-tree-delete (reverse &optional next)
          "Mark as deleted current message. Prefix undeletes."
          (interactive "P")
          (notmuch-tree-tag
           (notmuch-tag-change-list '("+deleted" "-unread" "-new") reverse))
          (when next (notmuch-tree-next-message)))

        (defun jao-notmuch-tree-undelete (reverse)
          "Mark as not-deleted current message and move to next."
          (interactive "P")
          (jao-notmuch-tree-delete (not reverse)))

        (defun jao-notmuch-tree-read-thread-next (&optional delete)
          "Mark the current thread as read and move to next one."
          (interactive "P")
          (jao-notmuch-tree--tag-next (if delete
                                          '("+deleted" "-unread" "-new")
                                        '("-unread" "-new"))
                                      nil t))

        (dolist (f '(notmuch-tree-match-tree-face
                     notmuch-tree-no-match-tree-face))
          (set-face-attribute f nil
                              :family "Source Code Pro" :foreground "grey60"))

        (defun jao-notmuch--format-field (fun field &rest args)
          (let ((rs (apply fun field args)))
            (cond ((and (stringp field) (string= field "tree"))
                   (replace-regexp-in-string "►" "" rs))
                  ((not (stringp field)) (truncate-string-to-width rs 100))
                  (t rs))))

        (advice-add 'notmuch-tree-format-field :around #'jao-notmuch--format-field)

        :bind (:map notmuch-tree-mode-map
               (("." . jao-notmuch-toggle-mime-parts)
                ("i" . jao-notmuch-toggle-images)
                ("d" . jao-notmuch-tree-delete)
                ("D" . jao-notmuch-tree-undelete)
                ("h" . jao-notmuch-goto-message-buffer)
                ("H" . jao-notmuch-goto-message-buffer*)
                ("K" . jao-notmuch-tag-jump)
                ("k" . jao-notmuch-tree-read-thread-next)
                ("n" . jao-notmuch-tree-next)
                ("RET" . jao-notmuch-tree-show-or-scroll)
                ("SPC" . jao-notmuch-tree-scroll-or-next))))
    #+end_src
*** message
    #+begin_src emacs-lisp
      (use-package notmuch-message
        :init (setq notmuch-fcc-dirs
                    '((".*@bigml.com" . "bigml/sent +bigml +sent -new")
                      (".*" . "jao/sent +jao +sent -new"))
                    notmuch-maildir-use-notmuch-insert t))

      (when (eq jao-afio-mail-function 'notmuch)
        (setq message-directory "~/var/mail/"
              message-auto-save-directory nil)
        (eval-after-load "notmuch-message"
          '(define-key message-mode-map (kbd "C-c C-d")
             #'notmuch-draft-postpone)))
    #+end_src
*** main
    #+begin_src emacs-lisp
      (use-package notmuch
        :init
        (setq notmuch-crypto-process-mime t
              notmuch-show-mark-read-tags '("-new" "-unread")
              notmuch-archive-tags '("+trove" "-new" "-unread" "-flagged")
              notmuch-tagging-keys
              '(("a" notmuch-archive-tags "Archive")
                ("d" notmuch-show-mark-read-tags "Mark read")
                ("u" ("+new" "+unread") "Mark unread")
                ("f" ("+flagged") "Flag")
                ("x" ("+deleted" "-new" "-flagged" "-unread") "Deleted")))

        :config

        (when (eq 'notmuch jao-afio-mail-function)
          (setq mm-text-html-renderer 'shr))

        :bind (:map notmuch-common-keymap
                    (("B" . jao-notmuch-browse-urls)
                     ("E" . jao-notmuch-open-enclosure)
                     ("M-g" . jao-notmuch-follow-link)
                     ("j" . jao-notmuch-saved-search-jump)
                     ("k" . jao-notmuch-tag-jump)
                     ("s" . notmuch-tree)
                     ("T" . notmuch-search-by-tag)
                     ("t" . jao-notmuch-tree-by-tag)
                     ("u" . jao-notmuch-tree-flagged-next)
                     ("U" . notmuch-unthreaded)
                     ("z" . notmuch-search))))
    #+end_src
*** expire shell script
    #+begin_src bash :tangle ./bin/notmuch-expire.sh :tangle-mode (identity #o755)
      notmuch search --output=files --format=text0 tag:deleted | xargs -r0 rm
      notmuch new > $HOME/var/log/notmuch-expire.log 2>&1
      notmuch compact >> $HOME/var/log/notmuch-expire.log 2>&1
    #+end_src
*** gpgsm.conf (decrypt smime)
    #+begin_src conf :tangle ~/.gnupg/gpgsm.conf :shebang ""
      # needed to avoid remote checks of smime signatures
      # and notmuch-crypto-process-mime to work with them
      disable-crl-checks
    #+end_src