unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 2ad4b45f49b872e7f141083908989e91fb3eb017 2092 bytes (raw)
name: emacs/notmuch-print.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
 
;; notmuch-print.el --- printing messages from notmuch.
;;
;; Copyright © David Edmondson
;;
;; This file is part of Notmuch.
;;
;; Notmuch 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.
;;
;; Notmuch 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 Notmuch.  If not, see <http://www.gnu.org/licenses/>.
;;
;; Authors: David Edmondson <dme@dme.org>

(defcustom notmuch-print-mechanism 'lpr
  "How should printing be done?"
  :group 'notmuch
  :type '(choice
	  (const :tag "Use lpr" lpr)
	  (const :tag "Use ps-print" ps-print)
	  (const :tag "Use muttprint" muttprint)
	  (function :tag "Using a custom function")))

(defvar notmuch-print-mechanism-map
  '((lpr . notmuch-print-lpr)
    (ps-print . notmuch-print-ps-print)
    (muttprint . notmuch-print-muttprint)))

(defmacro notmuch-print-with-file (filename &rest body)
  `(with-temp-buffer
     (insert-file-contents ,filename)
     (setq buffer-modified-p nil)
     ,@body))

(defun notmuch-print-lpr (filename)
  (notmuch-print-with-file filename
			   (lpr-buffer)))

(defun notmuch-print-ps-print (filename)
  (notmuch-print-with-file filename
			   (ps-print-buffer)))

(defun notmuch-print-muttprint (filename)
  (shell-command
   (concat "cat " (shell-quote-argument filename) " | muttprint")))

(defun notmuch-print-message (filename)
  (let ((fn
	 (cond
	  ((functionp 'notmuch-print-mechanism)
	   'notmuch-print-mechanism)
	  ((assoc notmuch-print-mechanism notmuch-print-mechanism-map)
	   (cdr (assoc notmuch-print-mechanism notmuch-print-mechanism-map)))
	  (t
	   (error "No printing mechanism found")))))
    (funcall fn filename)))

;;

(provide 'notmuch-print)

debug log:

solving 2ad4b45 ...
found 2ad4b45 in https://yhetil.org/notmuch/87sjz8yq5a.fsf@ut.hh.sledj.net/

applying [1/1] https://yhetil.org/notmuch/87sjz8yq5a.fsf@ut.hh.sledj.net/
diff --git a/emacs/notmuch-print.el b/emacs/notmuch-print.el
new file mode 100644
index 0000000..2ad4b45

Checking patch emacs/notmuch-print.el...
Applied patch emacs/notmuch-print.el cleanly.

index at:
100644 2ad4b45f49b872e7f141083908989e91fb3eb017	emacs/notmuch-print.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://yhetil.org/notmuch.git/

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