1 ;;; org-wl.el --- Support for links to Wanderlust messages from within Org-mode
3 ;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
5 ;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp>
6 ;; David Maus <dmaus at ictsoc dot de>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; 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 Wanderlust 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'.
37 "Options concerning the Wanderlust link."
41 (defcustom org-wl-link-to-refile-destination t
42 "Create a link to the refile destination if the message is marked as refile."
46 (defcustom org-wl-link-remove-filter nil
47 "Remove filter condition if message is filter folder."
52 (defcustom org-wl-shimbun-prefer-web-links nil
53 "If non-nil create web links for shimbun messages."
58 (defcustom org-wl-nntp-prefer-web-links nil
59 "If non-nil create web links for nntp messages.
60 When folder name contains string \"gmane\" link to gmane,
61 googlegroups otherwise."
66 (defcustom org-wl-disable-folder-check t
67 "Disable check for new messages when open a link."
72 (defcustom org-wl-namazu-default-index nil
73 "Default namazu search index."
78 ;; Declare external functions and variables
79 (declare-function elmo-folder-exists-p
"ext:elmo" (folder) t
)
80 (declare-function elmo-message-entity-field
"ext:elmo-msgdb"
81 (entity field
&optional type
))
82 (declare-function elmo-message-field
"ext:elmo"
83 (folder number field
&optional type
) t
)
84 (declare-function elmo-msgdb-overview-get-entity
"ext:elmo" (id msgdb
) t
)
85 ;; Backward compatibility to old version of wl
86 (declare-function wl
"ext:wl" () t
)
87 (declare-function wl-summary-buffer-msgdb
"ext:wl-folder" () t
)
88 (declare-function wl-summary-jump-to-msg-by-message-id
"ext:wl-summary"
90 (declare-function wl-summary-jump-to-msg
"ext:wl-summary"
91 (&optional number beg end
))
92 (declare-function wl-summary-line-from
"ext:wl-summary" ())
93 (declare-function wl-summary-line-subject
"ext:wl-summary" ())
94 (declare-function wl-summary-message-number
"ext:wl-summary" ())
95 (declare-function wl-summary-redisplay
"ext:wl-summary" (&optional arg
))
96 (declare-function wl-summary-registered-temp-mark
"ext:wl-action" (number))
97 (declare-function wl-folder-goto-folder-subr
"ext:wl-folder"
98 (&optional folder sticky
))
99 (declare-function wl-folder-get-petname
"ext:wl-folder" (name))
100 (declare-function wl-folder-get-entity-from-buffer
"ext:wl-folder"
102 (declare-function wl-folder-buffer-group-p
"ext:wl-folder")
104 (defvar wl-summary-buffer-elmo-folder
)
105 (defvar wl-summary-buffer-folder-name
)
106 (defvar wl-folder-group-regexp
)
107 (defvar wl-auto-check-folder-name
)
108 (defvar elmo-nntp-default-server
)
110 (defconst org-wl-folder-types
111 '(("%" . imap
) ("-" . nntp
) ("+" . mh
) ("=" . spool
)
112 ("$" . archive
) ("&" . pop
) ("@" . shimbun
) ("[" . search
)
113 ("*" . multi
) ("/" . filter
) ("|" . pipe
) ("'" . internal
))
114 "List of folder indicators. See Wanderlust manual, section 3.")
116 ;; Install the link type
117 (org-add-link-type "wl" 'org-wl-open
)
118 (add-hook 'org-store-link-functions
'org-wl-store-link
)
122 (defun org-wl-folder-type (folder)
123 "Return symbol that indicates the type of FOLDER.
124 FOLDER is the wanderlust folder name. The first character of the
125 folder name determines the folder type."
126 (let* ((indicator (substring folder
0 1))
127 (type (cdr (assoc indicator org-wl-folder-types
))))
128 ;; maybe access or file folder
132 ((and (>= (length folder
) 5)
133 (string= (substring folder
0 5) "file:"))
135 ((and (>= (length folder
) 7)
136 (string= (substring folder
0 7) "access:"))
142 (defun org-wl-message-field (field entity
)
143 "Return content of FIELD in ENTITY.
144 FIELD is a symbol of a rfc822 message header field.
145 ENTITY is a message entity."
146 (let ((content (elmo-message-entity-field entity field
'string
)))
147 (if (listp content
) (car content
) content
)))
149 (defun org-wl-store-link ()
150 "Store a link to a WL message or folder."
153 ((memq major-mode
'(wl-summary-mode mime-view-mode
))
154 (org-wl-store-link-message))
155 ((eq major-mode
'wl-folder-mode
)
156 (org-wl-store-link-folder))
160 (defun org-wl-store-link-folder ()
161 "Store a link to a WL folder."
162 (let* ((folder (wl-folder-get-entity-from-buffer))
163 (petname (wl-folder-get-petname folder
))
164 (link (org-make-link "wl:" folder
)))
167 (unless (and (wl-folder-buffer-group-p)
168 (looking-at wl-folder-group-regexp
))
169 (org-store-link-props :type
"wl" :description petname
173 (defun org-wl-store-link-message ()
174 "Store a link to a WL message."
176 (let ((buf (if (eq major-mode
'wl-summary-mode
)
178 (and (boundp 'wl-message-buffer-cur-summary-buffer
)
179 wl-message-buffer-cur-summary-buffer
))))
181 (with-current-buffer buf
182 (let* ((msgnum (wl-summary-message-number))
183 (mark-info (wl-summary-registered-temp-mark msgnum
))
185 (if (and org-wl-link-to-refile-destination
187 (equal (nth 1 mark-info
) "o")) ; marked as refile
189 wl-summary-buffer-folder-name
))
190 (folder-type (org-wl-folder-type folder-name
))
192 (if (fboundp 'elmo-message-entity
)
194 wl-summary-buffer-elmo-folder msgnum
)
195 (elmo-msgdb-overview-get-entity
196 msgnum
(wl-summary-buffer-msgdb))))
198 (org-wl-message-field 'message-id wl-message-entity
))
199 (message-id-no-brackets
200 (org-remove-angle-brackets message-id
))
201 (from (org-wl-message-field 'from wl-message-entity
))
202 (to (org-wl-message-field 'to wl-message-entity
))
203 (xref (org-wl-message-field 'xref wl-message-entity
))
204 (subject (org-wl-message-field 'subject wl-message-entity
))
205 (date (org-wl-message-field 'date wl-message-entity
))
206 (date-ts (and date
(format-time-string
207 (org-time-stamp-format t
)
208 (date-to-time date
))))
209 (date-ts-ia (and date
(format-time-string
210 (org-time-stamp-format t t
)
211 (date-to-time date
))))
214 ;; remove text properties of subject string to avoid possible bug
215 ;; when formatting the subject
216 ;; (Emacs bug #5306, fixed)
217 (set-text-properties 0 (length subject
) nil subject
)
219 ;; maybe remove filter condition
220 (when (and (eq folder-type
'filter
) org-wl-link-remove-filter
)
221 (while (eq (org-wl-folder-type folder-name
) 'filter
)
223 (replace-regexp-in-string "^/[^/]+/" "" folder-name
))))
225 ;; maybe create http link
227 ((and (eq folder-type
'shimbun
)
228 org-wl-shimbun-prefer-web-links xref
)
229 (org-store-link-props :type
"http" :link xref
:description subject
230 :from from
:to to
:message-id message-id
231 :message-id-no-brackets message-id-no-brackets
233 ((and (eq folder-type
'nntp
) org-wl-nntp-prefer-web-links
)
236 (if (string-match "gmane\\." folder-name
)
237 "http://mid.gmane.org/%s"
238 "http://groups.google.com/groups/search?as_umsgid=%s")
239 (org-fixup-message-id-for-http message-id
)))
240 (org-store-link-props :type
"http" :link link
:description subject
241 :from from
:to to
:message-id message-id
242 :message-id-no-brackets message-id-no-brackets
245 (org-store-link-props :type
"wl" :from from
:to to
246 :subject subject
:message-id message-id
247 :message-id-no-brackets message-id-no-brackets
)
248 (setq desc
(org-email-link-description))
249 (setq link
(org-make-link "wl:" folder-name
"#" message-id-no-brackets
))
250 (org-add-link-props :link link
:description desc
)))
252 (org-add-link-props :date date
:date-timestamp date-ts
253 :date-timestamp-inactive date-ts-ia
))
256 (defun org-wl-open-nntp (path)
257 "Follow the nntp: link specified by PATH."
258 (let* ((spec (split-string path
"/"))
259 (server (split-string (nth 2 spec
) "@"))
261 (article (nth 4 spec
)))
263 (concat "-" group
":" (if (cdr server
)
264 (car (split-string (car server
) ":"))
266 (if (string= elmo-nntp-default-server
(nth 2 spec
))
268 (concat "@" (or (cdr server
) (car server
))))
269 (if article
(concat "#" article
) "")))))
271 (defun org-wl-open (path)
272 "Follow the WL message link specified by PATH.
273 When called with one prefix, open message in namazu search folder
274 with `org-wl-namazu-default-index' as search index. When called
275 with two prefixes or `org-wl-namazu-default-index' is nil, ask
278 (let ((wl-auto-check-folder-name
279 (if org-wl-disable-folder-check
281 wl-auto-check-folder-name
)))
282 (unless wl-init
(wl))
283 ;; XXX: The imap-uw's MH folder names start with "%#".
284 (if (not (string-match "\\`\\(\\(?:%#\\)?[^#]+\\)\\(#\\(.*\\)\\)?" path
))
285 (error "Error in Wanderlust link"))
286 (let ((folder (match-string 1 path
))
287 (article (match-string 3 path
)))
288 ;; maybe open message in namazu search folder
289 (when current-prefix-arg
290 (setq folder
(concat "[" article
"]"
291 (if (and (equal current-prefix-arg
'(4))
292 org-wl-namazu-default-index
)
293 org-wl-namazu-default-index
294 (read-directory-name "Namazu index: ")))))
295 (if (not (elmo-folder-exists-p (org-no-warnings
296 (wl-folder-get-elmo-folder folder
))))
297 (error "No such folder: %s" folder
))
298 (let ((old-buf (current-buffer))
299 (old-point (point-marker)))
300 (wl-folder-goto-folder-subr folder
)
301 (with-current-buffer old-buf
302 ;; XXX: `wl-folder-goto-folder-subr' moves point to the
303 ;; beginning of the current line. So, restore the point
304 ;; in the old buffer.
305 (goto-char old-point
))
307 (if (org-string-match-p "@" article
)
308 (wl-summary-jump-to-msg-by-message-id (org-add-angle-brackets
310 (or (wl-summary-jump-to-msg (string-to-number article
))
311 (error "No such message: %s" article
)))
312 (wl-summary-redisplay))))))
316 ;;; org-wl.el ends here