Evie Litherland-Smith
5c959f8bf5
Set package priority manually rather than using crafted-early-init-config Copy crafted-defaults-config to custom-defaults-config instead Move some things out of init.el into relevant custom config files Add some new packages (to be configured)
28 lines
1.3 KiB
EmacsLisp
28 lines
1.3 KiB
EmacsLisp
(setq mail-user-agent 'notmuch-user-agent
|
|
sendmail-program (executable-find "msmtp")
|
|
send-mail-function #'smtpmail-send-it
|
|
message-sendmail-f-is-evil t
|
|
message-sendmail-extra-arguments '("--read-envelope-from")
|
|
message-send-mail-function #'message-send-mail-with-sendmail
|
|
message-kill-buffer-on-exit t
|
|
notmuch-search-oldest-first nil
|
|
notmuch-show-logo nil
|
|
notmuch-hello-thousands-separator ","
|
|
notmuch-archive-tags '("-inbox" "+archive")
|
|
notmuch-fcc-dirs '((".*@xenia.me.uk" . "Proton/Sent")
|
|
(".*@proton.me" . "Proton/Sent")
|
|
(".*@litherlandsmith.slmail.me" . "Proton/Sent")
|
|
(".*@icloud.com" . "iCloud/Sent")
|
|
(".*@ukaea.uk" . "Outlook/Sent")
|
|
(".*@jet.uk" . "Outlook/Sent"))
|
|
notmuch-indicator-args '((:terms "tag:unread and tag:inbox" :label " "))
|
|
notmuch-indicator-force-refresh-commands '(notmuch-refresh-this-buffer
|
|
notmuch-refresh-all-buffers
|
|
notmuch-poll-and-refresh-this-buffer))
|
|
|
|
(when (require 'notmuch nil :noerror)
|
|
(require 'notmuch-indicator)
|
|
(notmuch-indicator-mode +1))
|
|
|
|
(provide 'custom-email-config)
|