Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 53DB240DBE3 for ; Sun, 14 Nov 2010 14:21:43 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -1.9 X-Spam-Level: X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fK++kpRcT7Ss for ; Sun, 14 Nov 2010 14:21:29 -0800 (PST) Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36]) by olra.theworths.org (Postfix) with ESMTP id A438E40DBC8 for ; Sun, 14 Nov 2010 14:21:29 -0800 (PST) Received: from localhost (unknown [192.168.200.4]) by max.feld.cvut.cz (Postfix) with ESMTP id EC7E219F3342; Sun, 14 Nov 2010 23:21:28 +0100 (CET) X-Virus-Scanned: IMAP AMAVIS Received: from max.feld.cvut.cz ([192.168.200.1]) by localhost (styx.feld.cvut.cz [192.168.200.4]) (amavisd-new, port 10044) with ESMTP id ceJHj74Zaaqs; Sun, 14 Nov 2010 23:21:27 +0100 (CET) Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34]) by max.feld.cvut.cz (Postfix) with ESMTP id 56B3519F331D; Sun, 14 Nov 2010 23:21:27 +0100 (CET) Received: from steelpick.2x.cz (unknown [213.29.198.144]) (Authenticated sender: sojkam1) by imap.feld.cvut.cz (Postfix) with ESMTPSA id EDD39FA004; Sun, 14 Nov 2010 23:21:26 +0100 (CET) Received: from wsh by steelpick.2x.cz with local (Exim 4.72) (envelope-from ) id 1PHkww-0002WH-Io; Sun, 14 Nov 2010 23:21:26 +0100 From: Michal Sojka To: Carl Worth , Scott Henson , notmuch Subject: Web archive (was: Combining threads) In-Reply-To: <87mxpe81t9.fsf@yoom.home.cworth.org> References: <87mxpe81t9.fsf@yoom.home.cworth.org> User-Agent: Notmuch/0.5-11-g48b5e00 (http://notmuchmail.org) Emacs/23.2.1 (x86_64-pc-linux-gnu) Date: Sun, 14 Nov 2010 23:21:26 +0100 Message-ID: <87eianr1g9.fsf@steelpick.2x.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Nov 2010 22:21:43 -0000 On Sat, 13 Nov 2010, Carl Worth wrote: > That was in this email: > > id:87vd4k6956.fsf@yoom.home.cworth.org > > And since we don't yet have a good web-based archive that lets you just > plug in message IDs, I'll quote my reply here: Gmane is not good? I'm quite satisfied with the following in my .emacs: (defun notmuch-show-stash-gmane () "Copy a link to gmane archive of the current message to kill-ring." (interactive) (notmuch-common-do-stash (concat "http://mid.gmane.org/" (replace-regexp-in-string "^id:\"\\(.*\\)\"$" "\\1" (notmuch-show-get-message-id)))))) (add-hook 'notmuch-show-hook (lambda () (define-key notmuch-show-stash-map "g" 'notmuch-show-stash-gmane))) -Michal