1 ;;; org-rmail.el --- Support for links to Rmail messages from within Org-mode
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28 ;; This file implements links to Rmail messages from within Org-mode.
29 ;; Org-mode loads this module by default - if this is not what you want,
30 ;; configure the variable `org-modules'.
36 ;; Declare external functions and variables
37 (declare-function rmail-narrow-to-non-pruned-header
"rmail" ())
38 (declare-function rmail-show-message
"rmail" (&optional n no-summary
))
39 (declare-function rmail-what-message
"rmail" ())
40 (defvar rmail-current-message
)
42 ;; Install the link type
43 (org-add-link-type "rmail" 'org-rmail-open
)
44 (add-hook 'org-store-link-functions
'org-rmail-store-link
)
47 (defun org-rmail-store-link ()
48 "Store a link to an Rmail folder or message."
49 (when (or (eq major-mode
'rmail-mode
)
50 (eq major-mode
'rmail-summary-mode
))
51 (save-window-excursion
53 (when (eq major-mode
'rmail-summary-mode
)
54 (rmail-show-message rmail-current-message
))
55 (rmail-narrow-to-non-pruned-header)
56 (let* ((folder buffer-file-name
)
57 (message-id (mail-fetch-field "message-id"))
58 (from (mail-fetch-field "from"))
59 (to (mail-fetch-field "to"))
60 (subject (mail-fetch-field "subject"))
63 :type
"rmail" :from from
:to to
64 :subject subject
:message-id message-id
)
65 (setq message-id
(org-remove-angle-brackets message-id
))
66 (setq desc
(org-email-link-description))
67 (setq link
(org-make-link "rmail:" folder
"#" message-id
))
68 (org-add-link-props :link link
:description desc
)
69 (rmail-show-message rmail-current-message
)
72 (defun org-rmail-open (path)
73 "Follow an Rmail message link to the specified PATH."
75 (if (not (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path
))
76 (error "Error in Rmail link"))
77 (setq folder
(match-string 1 path
)
78 article
(match-string 3 path
))
79 (org-rmail-follow-link folder article
)))
81 (defun org-rmail-follow-link (folder article
)
82 "Follow an Rmail link to FOLDER and ARTICLE."
84 (setq article
(org-add-angle-brackets article
))
87 (save-window-excursion
88 (rmail (if (string= folder
"RMAIL") rmail-file-name folder
))
92 (goto-char (point-max))
93 (if (re-search-backward
94 (concat "^Message-ID:\\s-+" (regexp-quote
97 (rmail-what-message))))))
100 (rmail (if (string= folder
"RMAIL") rmail-file-name folder
))
101 (rmail-show-message message-number
)
103 (error "Message not found"))))
107 ;; arch-tag: c6cf4a8b-6639-4b7f-821f-bdf10746b173
109 ;;; org-rmail.el ends here