--- /dev/null
+Return-Path: <tomi.ollila@iki.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by olra.theworths.org (Postfix) with ESMTP id AF50A431FAF\r
+ for <notmuch@notmuchmail.org>; Sun, 15 Sep 2013 01:29:06 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+ autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+ by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id D7xCySRSMzgD for <notmuch@notmuchmail.org>;\r
+ Sun, 15 Sep 2013 01:29:02 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by olra.theworths.org (Postfix) with ESMTP id 609BB431FAE\r
+ for <notmuch@notmuchmail.org>; Sun, 15 Sep 2013 01:29:02 -0700 (PDT)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+ by guru.guru-group.fi (Postfix) with ESMTP id A77791000B2;\r
+ Sun, 15 Sep 2013 11:28:57 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: Gregor Zattler <telegraph@gmx.net>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH] emacs: distinguish tag `flagged' on terminal\r
+In-Reply-To: <20130904170655.GA13154@boo.workgroup>\r
+References: <20130904170655.GA13154@boo.workgroup>\r
+User-Agent: Notmuch/0.16+77~g2561895 (http://notmuchmail.org) Emacs/24.3.1\r
+ (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+ $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+ !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Sun, 15 Sep 2013 11:28:57 +0300\r
+Message-ID: <m2txhmmqt2.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain; charset=utf-8\r
+Content-Transfer-Encoding: quoted-printable\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 15 Sep 2013 08:29:06 -0000\r
+\r
+On Wed, Sep 04 2013, Gregor Zattler <telegraph@gmx.net> wrote:\r
+\r
+> Change foreground color to `blue' like lines representing threads\r
+> with flagged messages in notmuch-search. Before tag `flagged' was\r
+> shown in notmuch-show buffers as image star on graphical frames while\r
+> there was no visible distinction to other flags on terminal frames.\r
+> ---\r
+\r
+This patch Looks Good =E2=84=A2 and works fine.\r
+\r
+> With this patch applied tag `unread' is now shown with foreground\r
+> `red' while tag `flagged' is shown in `blue'. IMHO this should be\r
+> the other way around as flagged messages should be flagged more\r
+> prominently than mere unread ones.=20=20\r
+\r
+Probably so. I just (normally (*)) have 0 email with tag 'flagged' and many\r
+with 'unread'. I've tried to go away re-tagging messages w/ unread but...\r
+Anyway now I have 'flagged' with blue and other tags (sans unread) with\r
+dark blue foreground ;D\r
+\r
+(*) added 'flagged' tag to this message to test this feature.\r
+\r
+> Sorry, did not find git-send-mail on my debian jessie box!?\r
+\r
+Well, you managed to make perfectly good email out of it...\r
+(without risks realized, that is :)\r
+\r
+Tomi\r
+\r
+> emacs/notmuch-tag.el | 3 ++-\r
+> 1 file changed, 2 insertions(+), 1 deletion(-)\r
+>\r
+> diff --git a/emacs/notmuch-tag.el b/emacs/notmuch-tag.el\r
+> index 064cfa8..5c50ade 100644\r
+> --- a/emacs/notmuch-tag.el\r
+> +++ b/emacs/notmuch-tag.el\r
+> @@ -30,7 +30,8 @@\r
+>=20=20\r
+> (defcustom notmuch-tag-formats\r
+> '(("unread" (propertize tag 'face '(:foreground "red")))\r
+> - ("flagged" (notmuch-tag-format-image-data tag (notmuch-tag-star-icon=\r
+))))\r
+> + ("flagged" (propertize tag 'face '(:foreground "blue"))\r
+> + (notmuch-tag-format-image-data tag (notmuch-tag-star-icon))))\r
+> "Custom formats for individual tags.\r
+>=20=20\r
+> This gives a list that maps from tag names to lists of formatting\r
+> --=20\r
+> 1.8.4.rc3\r
+> _______________________________________________\r
+> notmuch mailing list\r
+> notmuch@notmuchmail.org\r
+> http://notmuchmail.org/mailman/listinfo/notmuch\r