libkookie: emacs: add notmuch filter rules

wip/yesman
Katharina Fey 3 years ago
parent 0a69904ae0
commit 1d8f1df4a3
Signed by: kookie
GPG Key ID: F972AEEA2887D547
  1. 1
      infra/libkookie/overlays/kookie/emacs/default.nix
  2. 52
      infra/libkookie/overlays/kookie/emacs/notmuch-rules/default.el
  3. 4
      infra/libkookie/overlays/kookie/emacs/notmuch-rules/default.nix

@ -9,6 +9,7 @@ pkgs.emacsWithPackages (epkgs:
./move-lines
./multi-cursor
./notmuch
./notmuch-rules
./org
./rust
./theme

@ -0,0 +1,52 @@
;; kookie-rules.el
;; Configure notmuch searches and settings required to send mail
;;
;;
;; This file is part of LIBKOOKIE, a collection of nix expressions.
;; LIBKOOKIE is licensed under the GPL-3.0 (or later) -- see LICENSE
(provide 'kookie-rules)
(require 'notmuch)
(setq mail-host-address "kookie.space")
(setq mml-enable-flowed t)
(setq mml-secure-openpgp-sign-with-sender t)
(setq mml-secure-smime-sign-with-sender t)
(setq notmuch-address-internal-completion '(received nil))
(setq notmuch-draft-save-plaintext nil)
(setq notmuch-fcc-dirs "Sent")
(setq notmuch-identities
[
'("Katharina Sabel <katharina.sabel@mailbox.org>")
'("Katharina Fey <kookie@spacekookie.de")
])
;;; Configure saved searches
;; TODO: make this nicer?
(setq notmuch-saved-searches
'((:name "INBOX" :query "folder:INBOX AND NOT tag:trash" :key "i" :count-query "folder:INBOX AND tag:unread AND NOT tag:trash")
(:name "Sent" :query "folder:Sent OR from:kookie@spacekookie.de OR from:katharina.*@mailbox.org AND NOT tag:trash")
(:name "Kookie" :query "folder:Collection/kookie AND NOT tag:trash" :count-query "folder:Collection/kookie tag:unread")
(:name "Github*" :query "folder:Collection/github" :count-query "folder:Collection/github tag:unread")
(:name "AfRA" :query "folder:Lists/afra" :count-query "folder:Lists/afra tag:unread")
(:name "Hacklab" :query "folder:Lists/hacklab" :count-query "folder:Lists/hacklab tag:unread")
(:name "Misc" :query "folder:Collection/misc AND NOT tag:trash" :count-query "folder:Collection/misc tag:unread")
(:name "qaul-devel" :query "to:~qaul/community@lists.sr.ht AND NOT tag:trash" :count-query "to:~qaul/community@lists.sr.ht tag:unread")
(:name "public-inbox" :query "folder:Lists/public-inbox AND NOT tag:trash" :count-query "folder:Lists/public-inbox AND tag:unread")
(:name "dev-suite" :query "folder:Lists/dev-suite AND NOT tag:trash" :count-query "folder:Lists/dev-suite AND tag:unread")
(:name "rust-cli" :query "folder:Lists/rust/cli-wg AND NOT tag:trash" :count-query "folder:Lists/rust/cli-wg AND tag:unread")
(:name "Shopping" :query "folder:Collection/shopping" :count-query "folder:Collection/shopping AND tag:unread")))
;;; Search result format
(setq notmuch-search-result-format
'(("date" . "%16s ")
("count" . "%-10s ")
("authors" . "%-24s")
("subject" . " %s ")
("tags" . "(%s)")))
(setq notmuch-show-empty-saved-searches t)
(setq notmuch-show-logo nil)
(setq notmuch-wash-wrap-lines-length 80)
(setq send-mail-function 'sendmail-send-it)

@ -0,0 +1,4 @@
{ buildModule, epkgs, pkgs }:
with epkgs; with pkgs;
(buildModule "notmuch-rules" ./. [ notmuch ])
Loading…
Cancel
Save