2023-10-24 18:15:21 +01:00
|
|
|
(require 'notmuch)
|
2023-10-24 08:06:35 +01:00
|
|
|
(notmuch-indicator-mode)
|
2023-10-24 18:15:21 +01:00
|
|
|
(setq mail-user-agent 'notmuch-user-agent
|
|
|
|
notmuch-search-oldest-first nil
|
2023-10-24 08:06:35 +01:00
|
|
|
notmuch-show-logo nil
|
2023-10-24 18:15:21 +01:00
|
|
|
notmuch-hello-thousands-separator ","
|
|
|
|
notmuch-archive-tags '("-inbox" "+archive")
|
2023-10-24 18:20:48 +01:00
|
|
|
notmuch-fcc-dirs '((".*@xenia.me.uk" . "Proton/Sent")
|
|
|
|
(".*@proton.me" . "Proton/Sent")
|
|
|
|
(".*@litherlandsmith.slmail.me" . "Proton/Sent")
|
2023-10-24 18:15:21 +01:00
|
|
|
(".*@icloud.com" . "iCloud/Sent")
|
2023-10-24 18:20:48 +01:00
|
|
|
(".*@ukaea.uk" . "Outlook/Sent")
|
|
|
|
(".*@jet.uk" . "Outlook/Sent"))
|
2023-10-24 18:15:21 +01:00
|
|
|
notmuch-saved-searches '((:name "inbox" :query "tag:inbox" :key [105] :sort-order nil :search-type tree)
|
|
|
|
(:name "unread" :query "tag:unread" :key [117] :sort-order nil :search-type tree)
|
|
|
|
(:name "flagged" :query "tag:flagged" :key [102] :sort-order nil :search-type tree)
|
|
|
|
(:name "sent" :query "tag:sent" :key [116] :sort-order nil :search-type tree)
|
|
|
|
(:name "drafts" :query "tag:draft" :key [100] :sort-order nil :search-type tree)
|
|
|
|
(:name "all mail" :query "*" :key [97] :sort-order nil :search-type tree))
|
2023-10-24 10:06:55 +01:00
|
|
|
notmuch-indicator-refresh-count 60
|
2023-10-24 18:15:21 +01:00
|
|
|
notmuch-indicator-args '((:terms "tag:unread and tag:inbox" :label " ")))
|
2023-10-24 08:06:35 +01:00
|
|
|
|
|
|
|
(provide 'custom-email-config)
|