From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Suckling Subject: Re: keeping track of sent emails in org? Date: Wed, 29 Oct 2008 08:06:28 -0700 Message-ID: <20081029150628.GB1759@rushka.local> References: <871vy3tg9x.fsf@wolfram.com> <4905CE30.7040904@gmx.de> <4905D7AD.2090700@gmx.de> <878ws97vrr.fsf@gmail.com> <87skqhivq8.fsf@wolfram.com> <78FE502B-5C3D-4B7C-96FE-40AC2E17E19B@uva.nl> <87tzav4mn0.fsf@kassiopeya.MSHEIMNETZ> <31447.1225279641@localhost> <730F0A7D-DC99-4522-AAC1-58C6ACF33931@uva.nl> <87zlknk0r6.fsf@katana.lair> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KvCd2-0006MX-Pt for emacs-orgmode@gnu.org; Wed, 29 Oct 2008 11:06:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KvCd1-0006MI-8y for emacs-orgmode@gnu.org; Wed, 29 Oct 2008 11:06:36 -0400 Received: from [199.232.76.173] (port=43202 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KvCd1-0006MF-6w for emacs-orgmode@gnu.org; Wed, 29 Oct 2008 11:06:35 -0400 Received: from yx-out-1718.google.com ([74.125.44.156]:47824) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KvCd0-00076f-MT for emacs-orgmode@gnu.org; Wed, 29 Oct 2008 11:06:34 -0400 Received: by yx-out-1718.google.com with SMTP id 34so10916yxf.66 for ; Wed, 29 Oct 2008 08:06:32 -0700 (PDT) Received: from christopher by localhost with local (Exim 4.69) (envelope-from ) id K9I9YS-0001ZT-2D for emacs-orgmode@gnu.org; Wed, 29 Oct 2008 08:06:28 -0700 Content-Disposition: inline In-Reply-To: <87zlknk0r6.fsf@katana.lair> 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 On Wed, Oct 29, 2008 at 02:07:57PM +0100, Georg C. F. Greve wrote: > > I just saw this thread and believe that > > http://www.emacswiki.org/emacs/org-mairix.el > > might contain parts of the answer, at least. I've been trying to come up > with a better solution, and kept meaning to come back to it, but haven't > managed thus far. > > The fundamental problem of getting the message ID, which is sufficient > for linking to an article through mairix search has been solved, though. > For the very few people who use OS X, mutt, Quicksilver and org-mode, I've got a solution to this at http://claviclaws.net/org/ I use Quicksilver to trigger an AppleScript which send a key command to mutt, triggering the following macro: macro index,pager "I" "/usr/bin/formail -X Message-ID -X Subject | cut -d\">\" -f1 | tr -d \"<\" | ~/.mutt/org-mairix-link.sh\n" This uses formail to pass the Message-ID and Subject to a shell script (available at above site) which in turn formats an org-mairix link and sends it to the Emacs kill-ring. Hope this might be of some use, Christopher