From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: mailto:abc@xyz.org Date: Sat, 05 Jun 2010 00:46:48 -0400 Message-ID: <11910.1275713208@gamaville.dokosmarshall.org> References: <871vcml35s.fsf@gmx.de> <10726.1275711085@gamaville.dokosmarshall.org> <87ljauyu9d.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=58162 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OKlHj-000833-91 for emacs-orgmode@gnu.org; Sat, 05 Jun 2010 00:47:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OKlHi-0000sM-4i for emacs-orgmode@gnu.org; Sat, 05 Jun 2010 00:47:03 -0400 Received: from vms173001pub.verizon.net ([206.46.173.1]:49826) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OKlHh-0000sI-VR for emacs-orgmode@gnu.org; Sat, 05 Jun 2010 00:47:02 -0400 Received: from gamaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173001.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0L3I007OIYM0IXG0@vms173001.mailsrvcs.net> for emacs-orgmode@gnu.org; Fri, 04 Jun 2010 23:46:48 -0500 (CDT) In-reply-to: Message from Henri-Paul Indiogine of "Fri, 04 Jun 2010 21:32:14 PDT." <87ljauyu9d.fsf@gmail.com> 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: hindiogine@gmail.com Cc: nicholas.dokos@hp.com, emacs-org Henri-Paul Indiogine wrote: > Hi Nick & Sebastian! > > Nick Dokos writes: > > (setq org-link-mailto-program '(compose-mail "%a" "%s")) > > Thanks, this works. However, probably because I use the latest Ubuntu > Emacs snapshot (v. 24.0.50.1) it gives me a message that now the default > is message-mail. So, using message-mail instead of compose-mail removes > the error message and all is fine. > I'm not sure what you are saying here (e.g. which "it" gives you the message about the message-mail default?). However, if you look at the doc for compose-mail and message-mail, you'll see that compose-mail is a generic interface to a bunch of different mail composition packages (including message-mail): you steer it by setting the value of the variable mail-user-agent. For example, the above setting of org-link-mailto-program together with (setq mail-user-agent 'message-user-agent) is equivalent to (setq org-link-mailto-program '(message-mail "%a" "%s")) HTH, Nick