org-mew.el 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ;;; org-mew.el --- Support for links to messages in Mew
  2. ;;
  3. ;; Copyright 2008 Bastien Guerry
  4. ;;
  5. ;; Emacs Lisp Archive Entry
  6. ;; Filename: org-mew.el
  7. ;; Version: 6.00pre-4
  8. ;; Author: Bastien Guerry <bzg AT altern DOT org>
  9. ;; Maintainer: Bastien Guerry <bzg AT altern DOT org>
  10. ;; Keywords: org, mail, Mew
  11. ;;
  12. ;; This program 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, or (at your option)
  15. ;; any later version.
  16. ;;
  17. ;; This program 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.
  21. ;;
  22. ;; You should have received a copy of the GNU General Public License
  23. ;; along with this program; if not, write to the Free Software
  24. ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25. ;;
  26. ;;; Commentary:
  27. ;;
  28. ;; Mew is an Emacs mailer written by Kazu Yamamoto: http://www.mew.org
  29. ;;
  30. ;; This Org add-on provides a way to link to Mew messages.
  31. ;;
  32. ;; PUT this file into your load-path and the following into your ~/.emacs:
  33. ;; (require 'org-mew)
  34. ;;
  35. ;;; Code:
  36. (eval-when-compile
  37. (require 'cl))
  38. (require 'org)
  39. (org-add-link-type "mew" 'org-mew-open)
  40. (add-hook 'org-store-link-functions 'org-mew-store-link)
  41. (defun org-mew-open (mew-link)
  42. "Visit the message targetted at by MEW-LINK."
  43. (when (string-match "\\(+.*\\)+\\+\\([0-9]+\\)" mew-link)
  44. (let ((folder (match-string 1 mew-link))
  45. (msg-num (match-string 2 mew-link)))
  46. (mew-summary-visit-folder folder)
  47. (when (mew-summary-search-msg msg-num)
  48. (if mew-summary-goto-line-then-display
  49. (mew-summary-display))))))
  50. (defun org-mew-store-link ()
  51. "Store a link to a Mew message."
  52. (when (and (fboundp 'mew-summary-p) (mew-summary-p))
  53. (let ((folder (mew-summary-folder-name))
  54. (number (mew-summary-message-number))
  55. (subject (mew-summary-get-subject)))
  56. (org-store-link-props
  57. :type "mew"
  58. :link (concat "mew:" folder "+" number)
  59. :description subject))))
  60. (provide 'org-mew)
  61. ;;; User Options, Variables
  62. ;;; org-mew.el ends here