unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob d4b7ed40bec64e80ad7253e54c629b5c5d7eb5bd 2897 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
68
69
70
71
72
73
74
75
76
77
78
79
 
;; 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 'notmuch-print-lpr
  "How should printing be done?"
  :group 'notmuch
  :type '(choice
	  (function :tag "Use lpr" notmuch-print-lpr)
	  (function :tag "Use ps-print" notmuch-print-ps-print)
	  (function :tag "Use ps-print then evince" notmuch-print-ps-print/evince)
	  (function :tag "Use muttprint" notmuch-print-muttprint)
	  (function :tag "Use muttprint then evince" notmuch-print-muttprint/evince)
	  (function :tag "Using a custom function")))

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

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

(defun notmuch-print-ps-print (filename msg)
  (let ((subject (plist-get (notmuch-show-get-prop :headers msg) :Subject)))
    (notmuch-print-with-file filename
			     (rename-buffer subject t)
			     (ps-print-buffer))))

(defun notmuch-print-ps-print/evince (filename msg)
  (let ((ps-file (make-temp-file "notmuch"))
	(subject (plist-get (notmuch-show-get-prop :headers msg) :Subject)))
    (notmuch-print-with-file filename
			     (rename-buffer subject t)
			     (ps-print-buffer ps-file)
			     (async-shell-command (concat "evince " ps-file)))))

(defun notmuch-print-muttprint (filename msg)
  (shell-command
   (concat "muttprint "
	   "--file " (shell-quote-argument filename) " "
	   ;; Show the tags.
	   "--printed-headers 'Date_To_From_CC_Newsgroups_*Subject*_/Tags/'")))

(defun notmuch-print-muttprint/evince (filename msg)
  (let ((ps-file (make-temp-file "notmuch")))
    (call-process-shell-command
     (concat "muttprint "
	     "--file " (shell-quote-argument filename) " "
	     ;; Show the tags.
	     "--printed-headers 'Date_To_From_CC_Newsgroups_*Subject*_/Tags/' "
	     "--printer 'TO_FILE:" (shell-quote-argument ps-file) "'"))
    (async-shell-command (concat "evince " ps-file))))

(defun notmuch-print-message (filename msg)
  (funcall notmuch-print-mechanism filename msg))

;;

(provide 'notmuch-print)

debug log:

solving d4b7ed4 ...
found d4b7ed4 in https://yhetil.org/notmuch/1325599946-5936-1-git-send-email-dme@dme.org/

applying [1/1] https://yhetil.org/notmuch/1325599946-5936-1-git-send-email-dme@dme.org/
diff --git a/emacs/notmuch-print.el b/emacs/notmuch-print.el
new file mode 100644
index 0000000..d4b7ed4

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

index at:
100644 d4b7ed40bec64e80ad7253e54c629b5c5d7eb5bd	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).