Update copyright years again.
[org-mode.git] / contrib / lisp / org-mew.el
blob4482375006e683c1e94aca99e09f93b884501979
1 ;;; org-mew.el --- Support for links to Mew messages from within Org-mode
3 ;; Copyright (C) 2008-2014 Free Software Foundation, Inc.
5 ;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
9 ;; This file is not part of GNU Emacs.
11 ;; This program is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; This program is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file implements links to Mew messages from within Org-mode.
28 ;; Org-mode loads this module by default - if this is not what you want,
29 ;; configure the variable `org-modules'.
31 ;; Here is an example of workflow:
33 ;; In your ~/.mew.el configuration file:
35 ;; (define-key mew-summary-mode-map "'" 'org-mew-search)
36 ;; (eval-after-load "mew-summary"
37 ;; '(define-key mew-summary-mode-map "\C-o" 'org-mew-capture))
39 ;; 1. In the Mew's inbox folder, take a glance at new messages to find
40 ;; a message that requires any action.
42 ;; 2. If the message is a reply from somebody and associated with the
43 ;; existing orgmode entry, type M-x `org-mew-search' RET (or press
44 ;; the ' key simply) to find the entry. If you can find the entry
45 ;; successfully and think you should start the task right now,
46 ;; start the task by M-x `org-agenda-clock-in' RET.
48 ;; 3. If the message is a new message, type M-x `org-mew-capture' RET,
49 ;; enter the refile folder, and the buffer to capture the message
50 ;; is shown up (without selecting the template by hand). Then you
51 ;; can fill the template and type C-c C-c to complete the capture.
52 ;; Note that you can configure `org-capture-templates' so that the
53 ;; captured entry has a link to the message.
55 ;;; Code:
57 (require 'org)
59 (defgroup org-mew nil
60 "Options concerning the Mew link."
61 :tag "Org Startup"
62 :group 'org-link)
64 (defcustom org-mew-link-to-refile-destination t
65 "Create a link to the refile destination if the message is marked as refile."
66 :group 'org-mew
67 :type 'boolean)
69 (defcustom org-mew-inbox-folder nil
70 "The folder where new messages are incorporated.
71 If `org-mew-inbox-folder' is non-nil, `org-mew-open' locates the message
72 in this inbox folder as well as the folder specified by the link."
73 :group 'org-mew
74 :type 'string)
76 (defcustom org-mew-use-id-db t
77 "Use ID database to locate the message if id.db is created."
78 :group 'org-mew
79 :type 'boolean)
81 (defcustom org-mew-subject-alist
82 (list (cons (concat "^\\(?:\\(?:re\\|fwd?\\): *\\)*"
83 "\\(?:[[(][a-z0-9._-]+[:,]? [0-9]+[])]\\)? *"
84 "\\(?:\\(?:re\\|fwd?\\): *\\)*"
85 "\\(.*\\)[ \t]*")
86 1))
87 "Alist of subject regular expression and matched group number for search."
88 :group 'org-mew
89 :type '(repeat (cons (regexp) (integer))))
91 (defcustom org-mew-capture-inbox-folders nil
92 "List of inbox folders whose messages need refile marked before capture.
93 `org-mew-capture' will ask you to put the refile mark on the
94 message if the message's folder is any of these folders and the
95 message is not marked. Nil means `org-mew-capture' never ask you
96 destination folders before capture."
97 :group 'org-mew
98 :type '(repeat string))
100 (defcustom org-mew-capture-guess-alist nil
101 "Alist of the regular expression of the folder name and the capture
102 template selection keys.
104 For example,
105 '((\"^%emacs-orgmode$\" . \"o\")
106 (\"\" . \"t\"))
107 the messages in \"%emacs-orgmode\" folder will be captured with
108 the capture template associated with \"o\" key, and any other
109 messages will be captured with the capture template associated
110 with \"t\" key."
111 :group 'org-mew
112 :type '(repeat (cons regexp string)))
114 ;; Declare external functions and variables
115 (declare-function mew-cache-hit "ext:mew-cache" (fld msg &optional must-hit))
116 (declare-function mew-case-folder "ext:mew-func" (case folder))
117 (declare-function mew-folder-path-to-folder
118 "ext:mew-func" (path &optional has-proto))
119 (declare-function mew-idstr-to-id-list "ext:mew-header" (idstr &optional rev))
120 (declare-function mew-folder-remotep "ext:mew-func" (folder))
121 (declare-function mew-folder-virtualp "ext:mew-func" (folder))
122 (declare-function mew-header-get-value "ext:mew-header"
123 (field &optional as-list))
124 (declare-function mew-init "ext:mew" ())
125 (declare-function mew-refile-get "ext:mew-refile" (msg))
126 (declare-function mew-sinfo-get-case "ext:mew-summary" ())
127 (declare-function mew-summary-diag-global "ext:mew-thread" (id opt who))
128 (declare-function mew-summary-display "ext:mew-summary2" (&optional redisplay))
129 (declare-function mew-summary-folder-name "ext:mew-syntax" (&optional ext))
130 (declare-function mew-summary-get-mark "ext:mew-mark" ())
131 (declare-function mew-summary-message-number2 "ext:mew-syntax" ())
132 (declare-function mew-summary-pick-with-mewl "ext:mew-pick"
133 (pattern folder src-msgs))
134 (declare-function mew-summary-refile "ext:mew-refile" (&optional report))
135 (declare-function mew-summary-search-msg "ext:mew-const" (msg))
136 (declare-function mew-summary-set-message-buffer "ext:mew-summary3" (fld msg))
137 (declare-function mew-summary-visit-folder "ext:mew-summary4"
138 (folder &optional goend no-ls))
139 (declare-function mew-window-push "ext:mew" ())
140 (declare-function mew-expand-folder "ext:mew-func" (folder))
141 (declare-function mew-case:folder-folder "ext:mew-func" (case:folder))
142 (declare-function mew "ext:mew" (&optional arg))
143 (declare-function mew-message-goto-summary "ext:mew-message" ())
144 (declare-function mew-summary-mode "ext:mew-summary" ())
146 (defvar mew-init-p)
147 (defvar mew-mark-afterstep-spec)
148 (defvar mew-summary-goto-line-then-display)
150 ;; Install the link type
151 (org-add-link-type "mew" 'org-mew-open)
152 (add-hook 'org-store-link-functions 'org-mew-store-link)
154 ;; Implementation
155 (defun org-mew-store-link ()
156 "Store a link to a Mew folder or message."
157 (save-window-excursion
158 (if (eq major-mode 'mew-message-mode)
159 (mew-message-goto-summary))
160 (when (memq major-mode '(mew-summary-mode mew-virtual-mode))
161 (let ((msgnum (mew-summary-message-number2))
162 (folder-name (org-mew-folder-name)))
163 (if (fboundp 'mew-summary-set-message-buffer)
164 (mew-summary-set-message-buffer folder-name msgnum)
165 (set-buffer (mew-cache-hit folder-name msgnum t)))
166 (let* ((message-id (mew-header-get-value "Message-Id:"))
167 (from (mew-header-get-value "From:"))
168 (to (mew-header-get-value "To:"))
169 (date (mew-header-get-value "Date:"))
170 (date-ts (and date (format-time-string
171 (org-time-stamp-format t)
172 (date-to-time date))))
173 (date-ts-ia (and date (format-time-string
174 (org-time-stamp-format t t)
175 (date-to-time date))))
176 (subject (mew-header-get-value "Subject:"))
177 desc link)
178 (org-store-link-props :type "mew" :from from :to to
179 :subject subject :message-id message-id)
180 (when date
181 (org-add-link-props :date date :date-timestamp date-ts
182 :date-timestamp-inactive date-ts-ia))
183 (setq message-id (org-remove-angle-brackets message-id))
184 (setq desc (org-email-link-description))
185 (setq link (concat "mew:" folder-name "#" message-id))
186 (org-add-link-props :link link :description desc)
187 link)))))
189 (defun org-mew-folder-name ()
190 "Return the folder name of the current message."
191 (save-window-excursion
192 (if (eq major-mode 'mew-message-mode)
193 (mew-message-goto-summary))
194 (let* ((msgnum (mew-summary-message-number2))
195 (mark-info (mew-summary-get-mark)))
196 (if (and org-mew-link-to-refile-destination
197 (eq mark-info ?o)) ; marked as refile
198 (mew-case-folder (mew-sinfo-get-case)
199 (nth 1 (mew-refile-get msgnum)))
200 (let ((folder-or-path (mew-summary-folder-name)))
201 (mew-folder-path-to-folder folder-or-path t))))))
203 (defun org-mew-open (path)
204 "Follow the Mew message link specified by PATH."
205 (let (folder message-id)
206 (cond ((string-match "\\`\\(+.*\\)+\\+\\([0-9]+\\)\\'" path) ; for Bastien's
207 (setq folder (match-string 1 path))
208 (setq message-id (match-string 2 path)))
209 ((string-match "\\`\\(\\(%#\\)?[^#]+\\)\\(#\\(.*\\)\\)?" path)
210 (setq folder (match-string 1 path))
211 (setq message-id (match-string 4 path)))
212 ((and org-mew-use-id-db (string-match "\\`#\\(.+\\)" path))
213 (setq folder nil)
214 (setq message-id (match-string 1 path)))
215 (t (error "Error in Mew link")))
216 (require 'mew)
217 (mew-window-push)
218 (unless mew-init-p (mew-init))
219 (if (null folder)
220 (progn
221 (mew t)
222 (org-mew-open-by-message-id message-id))
223 (or (org-mew-follow-link folder message-id)
224 (and org-mew-inbox-folder (not (string= org-mew-inbox-folder folder))
225 (org-mew-follow-link org-mew-inbox-folder message-id))
226 (and org-mew-use-id-db
227 (org-mew-open-by-message-id message-id))
228 (error "Message not found")))))
230 (defun org-mew-follow-link (folder message-id)
231 (unless (org-mew-folder-exists-p folder)
232 (error "No such folder or wrong folder %s" folder))
233 (mew-summary-visit-folder folder)
234 (when message-id
235 (let ((msgnum (org-mew-get-msgnum folder message-id)))
236 (when (mew-summary-search-msg msgnum)
237 (if mew-summary-goto-line-then-display
238 (mew-summary-display))
239 t))))
241 (defun org-mew-folder-exists-p (folder)
242 (let ((dir (mew-expand-folder folder)))
243 (cond
244 ((mew-folder-virtualp folder) (get-buffer folder))
245 ((null dir) nil)
246 ((mew-folder-remotep (mew-case:folder-folder folder)) t)
247 (t (file-directory-p dir)))))
249 (defun org-mew-get-msgnum (folder message-id)
250 (if (string-match "\\`[0-9]+\\'" message-id)
251 message-id
252 (let* ((pattern (concat "message-id=" message-id))
253 (msgs (mew-summary-pick-with-mewl pattern folder nil)))
254 (car msgs))))
256 (defun org-mew-open-by-message-id (message-id)
257 "Open message using ID database."
258 (let ((result (mew-summary-diag-global (format "<%s>" message-id)
259 "-p" "Message")))
260 (unless (eq result t)
261 (error "Message not found"))))
263 ;; In ~/.mew.el, add the following line:
264 ;; (define-key mew-summary-mode-map "'" 'org-mew-search)
265 (defun org-mew-search (&optional arg)
266 "Show all entries related to the message using `org-search-view'.
268 It shows entries which contains the message ID, the reference
269 IDs, or the subject of the message.
271 With C-u prefix, search for the entries that contains the message
272 ID or any of the reference IDs. With C-u C-u prefix, search for
273 the message ID or the last reference ID.
275 The search phase for the subject is extracted with
276 `org-mew-subject-alist', which defines the regular expression of
277 the subject and the group number to extract. You can get rid of
278 \"Re:\" and some other prefix from the subject text."
279 (interactive "P")
280 (when (memq major-mode '(mew-summary-mode mew-virtual-mode))
281 (let ((last-reference-only (equal arg '(16)))
282 (by-subject (null arg))
283 (msgnum (mew-summary-message-number2))
284 (folder-name (mew-summary-folder-name))
285 subject message-id references id-list)
286 (save-window-excursion
287 (if (fboundp 'mew-summary-set-message-buffer)
288 (mew-summary-set-message-buffer folder-name msgnum)
289 (set-buffer (mew-cache-hit folder-name msgnum t)))
290 (setq subject (mew-header-get-value "Subject:"))
291 (setq message-id (mew-header-get-value "Message-Id:"))
292 (setq references (mew-header-get-value "References:")))
293 (setq id-list (mapcar (lambda (id) (org-remove-angle-brackets id))
294 (mew-idstr-to-id-list references)))
295 (if last-reference-only
296 (setq id-list (last id-list))
297 (if message-id
298 (setq id-list (cons (org-remove-angle-brackets message-id)
299 id-list))))
300 (when (and by-subject (stringp subject))
301 (catch 'matched
302 (mapc (lambda (elem)
303 (let ((regexp (car elem))
304 (num (cdr elem)))
305 (when (string-match regexp subject)
306 (setq subject (match-string num subject))
307 (throw 'matched t))))
308 org-mew-subject-alist))
309 (setq id-list (cons subject id-list)))
310 (cond ((null id-list)
311 (error "No message ID to search."))
312 ((equal (length id-list) 1)
313 (org-search-view nil (car id-list)))
315 (org-search-view nil (format "{\\(%s\\)}"
316 (mapconcat 'regexp-quote
317 id-list "\\|"))))))
318 (delete-other-windows)))
320 (defun org-mew-capture (arg)
321 "Guess the capture template from the folder name and invoke `org-capture'.
323 This selects a capture template in `org-capture-templates' by
324 searching for capture template selection keys defined in
325 `org-mew-capture-guess-alist' which are associated with the
326 regular expression that matches the message's folder name, and
327 then invokes `org-capture'.
329 If the message's folder is a inbox folder, you are prompted to
330 put the refile mark on the message and the capture template is
331 guessed from the refile destination folder. You can customize
332 the inbox folders by `org-mew-capture-inbox-folders'.
334 If ARG is non-nil, this does not guess the capture template but
335 asks you to select the capture template."
336 (interactive "P")
337 (or (not (member (org-mew-folder-name)
338 org-mew-capture-inbox-folders))
339 (eq (mew-summary-get-mark) ?o)
340 (save-window-excursion
341 (if (eq major-mode 'mew-message-mode)
342 (mew-message-goto-summary))
343 (let ((mew-mark-afterstep-spec '((?o 0 0 0 0 0 0 0))))
344 (mew-summary-refile)))
345 (error "No refile folder selected."))
346 (let* ((org-mew-link-to-refile-destination t)
347 (folder-name (org-mew-folder-name))
348 (keys (if arg
350 (org-mew-capture-guess-selection-keys folder-name))))
351 (org-capture nil keys)))
353 (defun org-mew-capture-guess-selection-keys (folder-name)
354 (catch 'found
355 (let ((alist org-mew-capture-guess-alist))
356 (while alist
357 (let ((elem (car alist)))
358 (if (string-match (car elem) folder-name)
359 (throw 'found (cdr elem))))
360 (setq alist (cdr alist))))))
362 (provide 'org-mew)
364 ;;; org-mew.el ends here