discussion and development of piem
 help / color / mirror / code / Atom feed
blob ccb9432700d2f4444cb62581d15ec34ed01c8e50 2518 bytes (raw)
name: piem-rmail.el 	 # note: path name is non-authoritative(*)

 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
 
;;; piem-rmail.el --- Rmail integration for piem  -*- lexical-binding: t; -*-

;; Copyright (C) 2020-2021  all contributors <piem@inbox.kyleam.com>

;; Author: Kyle Meyer <kyle@kyleam.com>
;; Keywords: vc, tools
;; Package-Requires: ((emacs "26.3"))

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

;; This library provides a minor mode, `piem-rmail-mode', that
;; modifies `piem' variables to teach functions like `piem-inbox' how
;; to extract information from Rmail mode buffers.

;;; Code:

(require 'piem)
(require 'rmail)

(defgroup piem-rmail nil
  "Rmail integration for piem."
  :group 'piem)

(defun piem-rmail--call-with-message (fn)
  (when (derived-mode-p 'rmail-mode 'rmail-summary-mode)
    (rmail-apply-in-message
     rmail-current-message
     (lambda ()
       (search-forward "\n\n" nil 'move)
       (narrow-to-region (point-min) (point))
       (funcall fn)))))

(defun piem-rmail-get-inbox ()
  "Return inbox name from an Rmail buffer."
  (piem-rmail--call-with-message #'piem-inbox-by-header-match))

(defun piem-rmail-get-mid ()
  "Return the message ID of an Rmail buffer."
  (when-let ((mid (piem-rmail--call-with-message
                   (lambda () (mail-fetch-field "message-id")))))
    (replace-regexp-in-string "\\`<\\(.*\\)>\\'" "\\1" mid)))

;;;###autoload
(define-minor-mode piem-rmail-mode
  "Toggle Rmail support for piem.
With a prefix argument ARG, enable piem-rmail mode if ARG is
positive, and disable it otherwise.  If called from Lisp, enable
the mode if ARG is omitted or nil."
  :global t
  :init-value nil
  (if piem-rmail-mode
      (progn
        (add-hook 'piem-get-inbox-functions #'piem-rmail-get-inbox)
        (add-hook 'piem-get-mid-functions #'piem-rmail-get-mid))
    (remove-hook 'piem-get-inbox-functions #'piem-rmail-get-inbox)
    (remove-hook 'piem-get-mid-functions #'piem-rmail-get-mid)))

;;; piem-rmail.el ends here
(provide 'piem-rmail)

debug log:

solving ccb9432 ...
found ccb9432 in https://inbox.kyleam.com/piem/20210527213001.5265-1-kyle@kyleam.com/ ||
	https://inbox.kyleam.com/piem/20210527232714.8726-1-kyle@kyleam.com/

applying [1/1] https://inbox.kyleam.com/piem/20210527213001.5265-1-kyle@kyleam.com/
diff --git a/piem-rmail.el b/piem-rmail.el
new file mode 100644
index 0000000..ccb9432

Checking patch piem-rmail.el...
Applied patch piem-rmail.el cleanly.

skipping https://inbox.kyleam.com/piem/20210527232714.8726-1-kyle@kyleam.com/ for ccb9432
index at:
100644 ccb9432700d2f4444cb62581d15ec34ed01c8e50	piem-rmail.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.kyleam.com/piem/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).