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 1B582431FD0 for ; Mon, 11 Jul 2011 15:38:16 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.699 X-Spam-Level: X-Spam-Status: No, score=-0.699 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled 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 FSqPRRj03bqk for ; Mon, 11 Jul 2011 15:38:14 -0700 (PDT) Received: from mail-fx0-f46.google.com (mail-fx0-f46.google.com [209.85.161.46]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 28D06431FB6 for ; Mon, 11 Jul 2011 15:38:14 -0700 (PDT) Received: by fxh19 with SMTP id 19so4426485fxh.19 for ; Mon, 11 Jul 2011 15:38:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=IoB5MKBF3FvQ39ci8MYqNHzjj3scSlKTtGIgeQ583/Q=; b=Yrj/6ZmW3SledT0IfLEcaPFiNynuhwcMbBa2ObayyINZlpCKSboSQgviDFEk45Scoz mJJMfqC/4Wajq/dRULd1l2jGTDB/icZNVjplz3pQ+XrtuUkaEjMqKOyQte2aJvaKBHje p7j0QPA0uwbC5Slg6ehypYxOYAJ1XwkMFhU+E= Received: by 10.223.68.22 with SMTP id t22mr8251046fai.145.1310423892619; Mon, 11 Jul 2011 15:38:12 -0700 (PDT) Received: from localdomain ([78.222.14.116]) by mx.google.com with ESMTPS id f15sm8360242fai.46.2011.07.11.15.38.11 (version=SSLv3 cipher=OTHER); Mon, 11 Jul 2011 15:38:11 -0700 (PDT) Sender: Louis Rilling Date: Tue, 12 Jul 2011 00:38:05 +0200 From: Louis Rilling To: Austin Clements Subject: Re: [PATCH 2/2] tags_to_maildir_flags: Don't rename if no flags change Message-ID: <20110711223805.GC3583@localdomain> References: <87d3hzgemi.fsf@yoom.home.cworth.org> <1310394978-11883-3-git-send-email-l.rilling@av7.net> <20110711200712.GB25558@mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110711200712.GB25558@mit.edu> User-Agent: Mutt/1.5.20 (2009-06-14) 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: Mon, 11 Jul 2011 22:38:16 -0000 On 11/07/11 16:07 -0400, Austin Clements wrote: > I worry that this may compound the confusion caused by mutt's handling > of the new flag, but I suppose people aren't likely to manipulate any > of the other maildir-synchronized flags without also marking the > message as seen. Even if they don't mark the message as seen, any flag changed would move the message to cur/. The only buggy behavior would be from mutt, with the bug you mentioned about mutt putting messages with flags back to new/. > At any rate, the change is certainly correct > technically. A few nits below. They should be addressed by the follow-up patch. Just a comment below. > > Quoth Louis Rilling on Jul 11 at 4:36 pm: > > notmuch_message_tags_to_maildir_flags() unconditionally moves messages from > > maildir directory "new/" to maildir directory "cur/", which makes messages lose > > their "new" status in the MUA. However some users want to keep this "new" > > status after, for instance, an auto-tagging of new messages. > > > > However, as Austin mentioned and according to the maildir specification, > > messages living in "new/" are not allowed to have flags, even if mutt allows it > > to happen. For this reason, this patch prevents moving messages from "new/" to > > "cur/", only if no flags have to be changed. It's hopefully enough to satisfy > > mutt (and maybe other MUAs showing the "new" status) users checking the "new" > > status. > > > > Signed-off-by: Louis Rilling > > --- > > lib/message.cc | 12 +++++++++++- > > 1 files changed, 11 insertions(+), 1 deletions(-) > > > > diff --git a/lib/message.cc b/lib/message.cc > > index 64b6cf8..131d99b 100644 > > --- a/lib/message.cc > > +++ b/lib/message.cc > > @@ -1139,7 +1139,7 @@ _get_maildir_flag_actions (notmuch_message_t *message, > > * compute the new maildir filename. > > * > > * If the existing filename is in the directory "new", the new > > - * filename will be in the directory "cur". > > + * filename will be in the directory "cur", unless no flags are changed. > > * > > * After a sequence of ":2," in the filename, any subsequent > > * single-character flags will be added or removed according to the > > @@ -1162,6 +1162,7 @@ _new_maildir_filename (void *ctx, > > char *filename_new, *dir; > > char flag_map[128]; > > int flags_in_map = 0; > > + bool flags_changed = false; > > The convention in notmuch is to use notmuch_bool_t, TRUE, and FALSE > (though, admittedly, I don't know why; avoiding C99-isms?) And bool is already used at another place in message.cc: struct maildir_flag_tag { char flag; const char *tag; bool inverse; }; IIUC it should be changed to notmuch_bool_t too. > > > unsigned int i; > > char *s; > > > > @@ -1202,6 +1203,7 @@ _new_maildir_filename (void *ctx, > > if (flag_map[flag] == 0) { > > flag_map[flag] = 1; > > flags_in_map++; > > + flags_changed = true; > > } > > } > > > > @@ -1210,9 +1212,17 @@ _new_maildir_filename (void *ctx, > > if (flag_map[flag]) { > > flag_map[flag] = 0; > > flags_in_map--; > > + flags_changed = true; > > } > > } > > > > + /* No need to rename. Messages in new/ can be kept in new/. > > + * Note: We don't even try to fix buggy messages having flags and living in > > + * new/. It's not our business. > > + */ > > + if (!flags_changed) > > + return NULL; > > + > > NULL generally indicates an error in notmuch and is currently used > that way in _new_maildir_filename, so even though the caller currently > doesn't really care, I'd lean against overloading it to indicate that > the filename doesn't need to change. Despite the slight inefficiency, > I would recommend returning talloc_strdup (ctx, filename). Ok. Thanks, Louis > > > filename_new = (char *) talloc_size (ctx, > > info - filename + > > strlen (":2,") + flags_in_map + 1);