commit 3dd949426a220ea5d224b460644d532f9fdda7ce parent 2fc5f322f8d3962a02a8d93e6713e4031e51a5c9 Author: vin <vin@vineetk.net> Date: Wed, 7 May 2025 18:48:31 -0400 demiurge, hastur: fix notmuch postNew hook Didn't realize I had the wrong search tag for unread emails the entire time. Diffstat:
| M | home.nix | | | 18 | +++++++++--------- |
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/home.nix b/home.nix @@ -426,15 +426,15 @@ in }; hooks = { postNew = '' - notmuch tag +13f0 -- tag:new and to:"*@13f0.net" - notmuch tag +vineetk -- tag:new and to:"*@vineetk.net" - notmuch tag +university -- tag:new and to:***REDACTED_EMAIL*** - notmuch tag +openbsd_announce -inbox -- tag:new and to:announce@openbsd.org - notmuch tag +openbsd_arm -inbox -- tag:new and to:arm@openbsd.org - notmuch tag +openbsd_misc -inbox -- tag:new and to:misc@openbsd.org - notmuch tag +opensmtpd_misc -inbox -- tag:new and to:misc@opensmtpd.org - notmuch tag +oss_security -inbox -- tag:new and to:oss-security@lists.openwall.com - notmuch tag +tuhs -inbox -- tag:new and to:tuhs@tuhs.org + notmuch tag +13f0 -- tag:unread and to:"*@13f0.net" + notmuch tag +vineetk -- tag:unread and to:"*@vineetk.net" + notmuch tag +university -- tag:unread and to:***REDACTED_EMAIL*** + notmuch tag +openbsd_announce -inbox -- tag:unread and to:announce@openbsd.org + notmuch tag +openbsd_arm -inbox -- tag:unread and to:arm@openbsd.org + notmuch tag +openbsd_misc -inbox -- tag:unread and to:misc@openbsd.org + notmuch tag +opensmtpd_misc -inbox -- tag:unread and to:misc@opensmtpd.org + notmuch tag +oss_security -inbox -- tag:unread and to:oss-security@lists.openwall.com + notmuch tag +tuhs -inbox -- tag:unread and to:tuhs@tuhs.org ''; preNew = "mbsync -a"; };