From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Ted Roden: Re: message: links Date: Mon, 05 May 2008 18:57:15 -0400 Message-ID: <3087.1210028235@alphaville.zko.hp.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jt9dn-0007L5-NE for emacs-orgmode@gnu.org; Mon, 05 May 2008 18:58:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jt9dl-0007JK-Od for emacs-orgmode@gnu.org; Mon, 05 May 2008 18:58:39 -0400 Received: from [199.232.76.173] (port=49189 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jt9dl-0007Ii-28 for emacs-orgmode@gnu.org; Mon, 05 May 2008 18:58:37 -0400 Received: from g4t0017.houston.hp.com ([15.201.24.20]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Jt9dk-0000av-Az for emacs-orgmode@gnu.org; Mon, 05 May 2008 18:58:36 -0400 Received: from smtp1.fc.hp.com (smtp1.fc.hp.com [15.15.136.127]) by g4t0017.houston.hp.com (Postfix) with ESMTP id AF47E388D5 for ; Mon, 5 May 2008 22:57:04 +0000 (UTC) Received: from alphaville.zko.hp.com (alphaville.zko.hp.com [16.116.97.9]) by smtp1.fc.hp.com (Postfix) with ESMTP id CD55C1E6562 for ; Mon, 5 May 2008 22:53:22 +0000 (UTC) Received: from alphaville.zko.hp.com (localhost [127.0.0.1]) by alphaville.zko.hp.com (Postfix) with ESMTP id 1E9875DE73 for ; Mon, 5 May 2008 18:57:15 -0400 (EDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Ted seems to have meant to copy the list, but since he didn't, I am taking the liberty of forwarding his message. Nick ------- Forwarded Message Message-Id: <4982BA80-5FF6-4601-A894-84D97445B07A@gmail.com> From: Ted Roden To: nicholas.dokos@hp.com In-Reply-To: <23074.1210022131@alphaville.zko.hp.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v919.2) Subject: Re: [Orgmode] message: links Date: Mon, 5 May 2008 17:57:48 -0400 References: <23074.1210022131@alphaville.zko.hp.com> X-Mailer: Apple Mail (2.919.2) > I think you should read the "Adding hyperlink types" appendix in the > Org > manual. Awesome, thanks for pointing that out. The documentation available inside emacs was for an old installation of org-mode and it doesn't appear to have that section. I was able to find that section on the site though. In case anyone else wants it, I just added the following code to my .emacs file and it works like a charm now. Keep in mind, this will probably only work on a mac (I'm using the "open" command). (require 'org) (org-add-link-type "message" 'org-message-open) (defun org-message-open (path) "Open message:// links in the registered mail reader on a mac." (shell-command (concat "open message:" path))) ------- End of Forwarded Message