From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hans Halvorson" Subject: Re: org-store-link with wanderlust Date: Sat, 29 Dec 2007 14:55:14 -0500 Message-ID: References: <87tzm1obg6.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J8hmB-0002yB-7Y for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 14:55:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J8hm7-0002qL-NX for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 14:55:18 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J8hm7-0002q6-KA for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 14:55:15 -0500 Received: from an-out-0708.google.com ([209.85.132.247]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J8hm7-0002t2-8x for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 14:55:15 -0500 Received: by an-out-0708.google.com with SMTP id c25so653177ana.84 for ; Sat, 29 Dec 2007 11:55:14 -0800 (PST) In-Reply-To: <87tzm1obg6.fsf@bzg.ath.cx> 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: Bastien Cc: emacs-orgmode@gnu.org On Dec 29, 2007 8:52 AM, Bastien wrote: > > > When I try 'M-x org-store-link' in the wanderlust summary buffer, I > > get an error (have tried with many messages). For example: > > > > Debugger entered--Lisp error: (error "Invalid address: (Brad Pitt > > )") > > signal(error ("Invalid address: (Brad Pitt )")) > > error("Invalid address: %s" ("Brad Pitt ")) > > mail-extract-address-components(("Brad Pitt ")) > > org-store-link-props(:type "wl" :from "Jolie, Angelina" :to ("Brad > > Pitt ") :subject "RE: u r hot" :message-id > > "<664F5EF544B264BEFE154B2FE40A770279053@CREXUSER08.foobar.com>") > > org-store-link(nil) > > call-interactively(org-store-link) > > execute-extended-command(nil) > > call-interactively(execute-extended-command) > > > > The address reported in the backtrace has, of course, been changed ... > > but it is structurally original to the original valid address. > > Looks like wl-summary-line-from return a list, not a string. > > Please check the following patch against Org 5.17a. > > > -- > Bastien > > The problem is not with the "from" field, but with the "to" field. I find that it works to change 11766 as follows: (to (car (elmo-message-entity-field wl-message-entity 'to))) -Hans