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 67E26431FAF for ; Thu, 19 Jan 2012 11:21:03 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[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 nIF+CPc0iWO6 for ; Thu, 19 Jan 2012 11:21:02 -0800 (PST) Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id ADE04431FAE for ; Thu, 19 Jan 2012 11:21:02 -0800 (PST) Received: by werp13 with SMTP id p13so279138wer.26 for ; Thu, 19 Jan 2012 11:21:01 -0800 (PST) Received: by 10.180.83.72 with SMTP id o8mr40993494wiy.22.1327000861417; Thu, 19 Jan 2012 11:21:01 -0800 (PST) Received: from localhost ([109.131.97.13]) by mx.google.com with ESMTPS id dr7sm26565783wib.3.2012.01.19.11.20.59 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 19 Jan 2012 11:21:00 -0800 (PST) From: Pieter Praet To: Austin Clements Subject: Re: [PATCH v3 2/2] search: Support automatic tag exclusions Date: Thu, 19 Jan 2012 20:19:00 +0100 Message-Id: <1327000744-25463-1-git-send-email-pieter@praet.org> X-Mailer: git-send-email 1.7.8.1 In-Reply-To: <1326586654-16840-3-git-send-email-amdragon@mit.edu> References: <1326586654-16840-3-git-send-email-amdragon@mit.edu> Cc: Notmuch Mail 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: Thu, 19 Jan 2012 19:21:03 -0000 Nice feature! I won't be using it myself, but I can imagine it being *very* useful for those who still feel the need to "delete" email :). Nitpicking: - All other config-related functions and args include the section title in their name [1], so for the sake of consistency, we might want to mirror that. Also, the "auto"matic part is pretty much a given. So I'd like to suggest replacing all occurences of "auto_exclude_tags" with "search_exclude_tags" (and simply "exclude_tags" in the args to `_config_get_list' and `_config_set_list', of course). Unfortunately, this would also partially invalidate your recent NEWS submission [2]. - If the 'search.exclude_tags' option is missing from the config file, its value is automatically set to "deleted;spam;", which probably isn't a sane default. Luckily, you've already provided the solution [3]. - To make new users aware of the config option's existence, we should prompt them to configure it during setup. Patches follow. Peace [1] Eg. `notmuch_config_get_user_name', `notmuch_config_get_new_tags', `notmuch_config_get_maildir_synchronize_flags', ... [2] id:"1326920330-31496-1-git-send-email-amdragon@mit.edu" [3] id:"20120117203211.GQ16740@mit.edu"