diff options
| author | vin <vin@vineetk.net> | 2025-05-07 18:48:31 -0400 |
|---|---|---|
| committer | vin <vin@vineetk.net> | 2025-05-07 18:48:31 -0400 |
| commit | 3dd949426a220ea5d224b460644d532f9fdda7ce (patch) | |
| tree | fd0ff402abaabf7804df79d251ea369608526656 | |
| parent | 2fc5f322f8d3962a02a8d93e6713e4031e51a5c9 (diff) | |
demiurge, hastur: fix notmuch postNew hook
Didn't realize I had the wrong search tag for unread emails the entire
time.
| -rw-r--r-- | home.nix | 18 |
1 files changed, 9 insertions, 9 deletions
| @@ -426,15 +426,15 @@ in | |||
| 426 | }; | 426 | }; |
| 427 | hooks = { | 427 | hooks = { |
| 428 | postNew = '' | 428 | postNew = '' |
| 429 | notmuch tag +13f0 -- tag:new and to:"*@13f0.net" | 429 | notmuch tag +13f0 -- tag:unread and to:"*@13f0.net" |
| 430 | notmuch tag +vineetk -- tag:new and to:"*@vineetk.net" | 430 | notmuch tag +vineetk -- tag:unread and to:"*@vineetk.net" |
| 431 | notmuch tag +university -- tag:new and to:***REDACTED_EMAIL*** | 431 | notmuch tag +university -- tag:unread and to:***REDACTED_EMAIL*** |
| 432 | notmuch tag +openbsd_announce -inbox -- tag:new and to:announce@openbsd.org | 432 | notmuch tag +openbsd_announce -inbox -- tag:unread and to:announce@openbsd.org |
| 433 | notmuch tag +openbsd_arm -inbox -- tag:new and to:arm@openbsd.org | 433 | notmuch tag +openbsd_arm -inbox -- tag:unread and to:arm@openbsd.org |
| 434 | notmuch tag +openbsd_misc -inbox -- tag:new and to:misc@openbsd.org | 434 | notmuch tag +openbsd_misc -inbox -- tag:unread and to:misc@openbsd.org |
| 435 | notmuch tag +opensmtpd_misc -inbox -- tag:new and to:misc@opensmtpd.org | 435 | notmuch tag +opensmtpd_misc -inbox -- tag:unread and to:misc@opensmtpd.org |
| 436 | notmuch tag +oss_security -inbox -- tag:new and to:oss-security@lists.openwall.com | 436 | notmuch tag +oss_security -inbox -- tag:unread and to:oss-security@lists.openwall.com |
| 437 | notmuch tag +tuhs -inbox -- tag:new and to:tuhs@tuhs.org | 437 | notmuch tag +tuhs -inbox -- tag:unread and to:tuhs@tuhs.org |
| 438 | ''; | 438 | ''; |
| 439 | preNew = "mbsync -a"; | 439 | preNew = "mbsync -a"; |
| 440 | }; | 440 | }; |
