From: David Bremner Date: Tue, 21 Jan 2014 16:27:47 +0000 (+2000) Subject: Re: An Emacs Minor Mode to Mute Email Threads X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5b207799fe6d4c4efb2b328158f714353a6d8e92;p=notmuch-archives.git Re: An Emacs Minor Mode to Mute Email Threads --- diff --git a/12/cf86ffcb797310dbe4966fe7844be26fd10c28 b/12/cf86ffcb797310dbe4966fe7844be26fd10c28 new file mode 100644 index 000000000..f83f4c5ea --- /dev/null +++ b/12/cf86ffcb797310dbe4966fe7844be26fd10c28 @@ -0,0 +1,77 @@ +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 21538431FBD + for ; Tue, 21 Jan 2014 08:28:02 -0800 (PST) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0 +X-Spam-Level: +X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] + 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 IQ4gUJkIVTjJ for ; + Tue, 21 Jan 2014 08:27:54 -0800 (PST) +Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155]) + (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id AB802431FAF + for ; Tue, 21 Jan 2014 08:27:54 -0800 (PST) +Received: from remotemail by yantan.tethera.net with local (Exim 4.80) + (envelope-from ) + id 1W5eB5-00045h-Fv; Tue, 21 Jan 2014 12:27:51 -0400 +Received: (nullmailer pid 25149 invoked by uid 1000); Tue, 21 Jan 2014 + 16:27:47 -0000 +From: David Bremner +To: Amadeusz =?utf-8?B?xbtvxYJub3dza2k=?= +Subject: Re: An Emacs Minor Mode to Mute Email Threads +In-Reply-To: <87bnz5fgzc.fsf@raeviah.aidecoe.name> +References: + + <87iotdfnqy.fsf@raeviah.aidecoe.name> <87sishs9jd.fsf@zancas.localnet> + <87bnz5fgzc.fsf@raeviah.aidecoe.name> +User-Agent: Notmuch/0.17+35~g3b36898 (http://notmuchmail.org) Emacs/24.3.1 + (x86_64-pc-linux-gnu) +Date: Tue, 21 Jan 2014 12:27:47 -0400 +Message-ID: <87fvohs3jw.fsf@zancas.localnet> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: quoted-printable +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: Tue, 21 Jan 2014 16:28:02 -0000 + +Amadeusz =C5=BBo=C5=82nowski writes: + +> +> The question is: should exclude_tags be used in context of killed/mute? +> This is just for skipping =E2=80=9Einbox=E2=80=9D, not for hiding them in= + all search +> results - at least IMHO. +> + +For me I definitely want a muted thread to disappear in all searches. I +have at least three "inboxes" with sometimes overlapping content. But +yeah, if you don't want that, then you need some other approach than +exclude_tags. If I understand correctly, what you ask for also sounds +easily scriptable: + + % notmuch tag -inbox +muted -- $(notmuch search --output=3Dthreads tag:mu= +ted) + +and of course that can be done in a post-new script or equivalent. + +d