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 6023D40BFD3 for ; Wed, 13 Oct 2010 13:34:50 -0700 (PDT) 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 sRf-D+f9VmqI for ; Wed, 13 Oct 2010 13:34:38 -0700 (PDT) Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36]) by olra.theworths.org (Postfix) with ESMTP id 334C640BDA7 for ; Wed, 13 Oct 2010 13:34:38 -0700 (PDT) Received: from localhost (unknown [192.168.200.4]) by max.feld.cvut.cz (Postfix) with ESMTP id 40CC93CFE7A; Wed, 13 Oct 2010 22:34:37 +0200 (CEST) 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 AY0VkWWuvrm6; Wed, 13 Oct 2010 22:34:36 +0200 (CEST) Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34]) by max.feld.cvut.cz (Postfix) with ESMTP id 13F4F19F33F4; Wed, 13 Oct 2010 22:34:36 +0200 (CEST) Received: from steelpick.2x.cz (unknown [213.29.198.144]) (Authenticated sender: sojkam1) by imap.feld.cvut.cz (Postfix) with ESMTPSA id 2E59715C086; Wed, 13 Oct 2010 22:34:35 +0200 (CEST) Received: from wsh by steelpick.2x.cz with local (Exim 4.72) (envelope-from ) id 1P681y-0001bI-RU; Wed, 13 Oct 2010 22:34:34 +0200 From: Michal Sojka To: Servilio Afre Puentes Subject: Re: [PATCH 0/4] Maildir synchronization v2 In-Reply-To: References: <1286972038-21064-1-git-send-email-sojkam1@fel.cvut.cz> User-Agent: Notmuch/0.3.1-83-g6fec75f (http://notmuchmail.org) Emacs/23.2.1 (x86_64-pc-linux-gnu) Date: Wed, 13 Oct 2010 22:34:34 +0200 Message-ID: <87r5ftomqt.fsf@steelpick.2x.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: notmuch@notmuchmail.org 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: Wed, 13 Oct 2010 20:34:50 -0000 On Wed, 13 Oct 2010, Servilio Afre Puentes wrote: > On 13 October 2010 08:13, Michal Sojka wrote: > [...] > > THERE IS CURRENTLY ONE KNOWN ISSUE: Viewing/storing of attachments of > > unread messages doesn't work. The reason is that when you view the > > message its unread tag is removed which causes the file to be renamed, > > but Emacs still uses the original name to access the attachment. You can > > workaround this by closing the message and opening it again. This issue > > will be fixed after we (I) implement "notmuch cat" command. With this > > command, emacs would not access the messages by the file name, but by > > running notmuch cat id: which will always give the correct > > content. > > Wouldn't it be more efficient to query notmuch for the filename using > the message ID we store in the DB? When network usage is implemented, > tramp can give us transparent remote file access in emacs. Tramp would not be available in non-emacs GUIs. Also, when notmuch cat is implemented, emacs gui will be usable remotely by simply defining notmuch-command variable to contain the name of the script containing: ssh user@host notmuch "$@" -Michal