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 19A0F40D148 for ; Thu, 21 Oct 2010 22:03:30 -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 i8U7b4WTTW0b for ; Thu, 21 Oct 2010 22:03:18 -0700 (PDT) Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36]) by olra.theworths.org (Postfix) with ESMTP id 5353140D149 for ; Thu, 21 Oct 2010 22:03:18 -0700 (PDT) Received: from localhost (unknown [192.168.200.4]) by max.feld.cvut.cz (Postfix) with ESMTP id 5D4DF19F33CB; Fri, 22 Oct 2010 07:03:17 +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 feHf8ZFF-vAl; Fri, 22 Oct 2010 07:03:16 +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 375EC19F33C0; Fri, 22 Oct 2010 07:03:16 +0200 (CEST) Received: from steelpick.2x.cz (note-sojka.felk.cvut.cz [147.32.86.30]) (Authenticated sender: sojkam1) by imap.feld.cvut.cz (Postfix) with ESMTPSA id 316F1FA006; Fri, 22 Oct 2010 07:03:15 +0200 (CEST) Received: from wsh by steelpick.2x.cz with local (Exim 4.72) (envelope-from ) id 1P99md-0007cW-PT; Fri, 22 Oct 2010 07:03:15 +0200 From: Michal Sojka To: Sebastian Spaeth , notmuch@notmuchmail.org Subject: Re: [PATCH 2/4] Maildir synchronization In-Reply-To: <87k4lmci24.fsf@SSpaeth.de> References: <1286972038-21064-1-git-send-email-sojkam1@fel.cvut.cz> <1286972038-21064-3-git-send-email-sojkam1@fel.cvut.cz> <87k4lmci24.fsf@SSpaeth.de> User-Agent: Notmuch/0.3.1-110-g7be1648 (http://notmuchmail.org) Emacs/23.2.1 (x86_64-pc-linux-gnu) Date: Fri, 22 Oct 2010 07:03:15 +0200 Message-ID: <87zku6keek.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: Fri, 22 Oct 2010 05:03:30 -0000 On Wed, 13 Oct 2010, Sebastian Spaeth wrote: > > +/* ASCII ordered table of Maildir flags and associated tags */ > > +struct maildir_flag_tag flag2tag[] = { > > + { 'D', "draft", false}, > > + { 'F', "flagged", false}, > > + { 'P', "passed", false}, > > + { 'R', "replied", false}, > > + { 'S', "unread", true }, > > + { 'T', "delete", false}, > > +}; > > [...] > > with one caveat: you use the tag "delete" to mark the state "trashed". I > think people have slowly settled on the convention "deleted" which is > also more consistent with a state, such as unread, replied, etc... Hi, I changed "delete" to "deleted" and the updated patch series is reachable by: git pull git://rtime.felk.cvut.cz/notmuch maildir-sync-v3 -Michal