From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: mailto link problem Date: Thu, 29 Dec 2011 17:42:46 -0500 Message-ID: <19951.1325198566@alphaville.dokosmarshall.org> References: <4EFCE398.4040407@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54971) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RgOgV-00008w-Kt for emacs-orgmode@gnu.org; Thu, 29 Dec 2011 17:42:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RgOgU-0006sj-B6 for emacs-orgmode@gnu.org; Thu, 29 Dec 2011 17:42:51 -0500 Received: from g1t0027.austin.hp.com ([15.216.28.34]:43059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RgOgT-0006sd-Tu for emacs-orgmode@gnu.org; Thu, 29 Dec 2011 17:42:50 -0500 In-Reply-To: Message from Scott Randby of "Thu, 29 Dec 2011 17:03:04 EST." <4EFCE398.4040407@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Scott Randby Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Scott Randby wrote: > ... > On my new system (Xubuntu 11.10, Emacs 24.0.92.1, Org-Mode 7.8.02, > default browser Firefox, default mail client Thunderbird), an Emacs > window in message-mode is opened when I click on a mailto link in an > org-mode file. This is not what I want, I want the behavior to be like > it was in my old system. > So what is the value of org-link-mailto-program? Mine says ,---- | org-link-mailto-program is a variable defined in `org.el'. | Its value is (browse-url "mailto:%a?subject=%s") `---- and if that's the case for you as well, then org is off the hook: you have to look downstream from browse-url to figure out where it's going off the rails. In particular, check if browse-url-mailto-function is set: if it is, try setting it to nil and see if that gets things back on track (not tested, not guaranteed). Nick