From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jules Bean Subject: [bug] "message" not present in default value of org-link-types Date: Thu, 16 Sep 2010 16:21:24 +0100 Message-ID: <20100916152123.GQ26017@roobarb.crazydogs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=36421 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OwIFN-0001H5-Pa for emacs-orgmode@gnu.org; Thu, 16 Sep 2010 13:27:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OwGHN-0005mi-0P for emacs-orgmode@gnu.org; Thu, 16 Sep 2010 11:21:41 -0400 Received: from roobarb.crazydogs.org ([93.93.128.87]:58694 helo=roobarb.jellybean.co.uk) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OwGHM-0005iG-S5 for emacs-orgmode@gnu.org; Thu, 16 Sep 2010 11:21:40 -0400 Received: from jules by roobarb.jellybean.co.uk with local (Exim 4.69) (envelope-from ) id 1OwGH6-00015q-3d for emacs-orgmode@gnu.org; Thu, 16 Sep 2010 16:21:24 +0100 Content-Disposition: inline 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 The link-type "message" is one of the ones org handles by default, it is an explicit case in org-open-at-point, much like http and it is handled by the following code: ((member type '("message")) (browse-url (concat type ":" path))) However it is not included in the default value of org-link-types: (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news" "shell" "elisp" "doi")) ...and therefore it doesn't work when clicked/followed. Manually adding it to org-link-types makes it work correctly. For me, anyway. Jules