emacs: add email config

This commit is contained in:
Jeremy Baxter 2024-06-11 06:57:17 +12:00
parent 574a82f7c7
commit 7b2b9cda8d
2 changed files with 30 additions and 0 deletions

View file

@ -270,6 +270,35 @@ One will be created if none exist."
(add-hook 'after-init-hook 'dashboard-initialize) (add-hook 'after-init-hook 'dashboard-initialize)
(dashboard-setup-startup-hook) (dashboard-setup-startup-hook)
;; mu4e
(let
((mu4e-path
(concat (getenv "HOME") "/.nix-profile/share/emacs/site-lisp/mu4e/")))
(unless (file-exists-p mu4e-path)
(throw 'mu4e-load-path "cannot locate mu4e load path"))
(add-to-list 'load-path mu4e-path))
(require 'mu4e)
(setq mu4e-maildir "~/mail"
mu4e-get-mail-command "mbsync -a"
mu4e-update-interval (* 5 60) ; 5 minutes
mu4e-change-filenames-when-moving t ; prevent mail syncing issues with mbsync
mu4e-refile-folder "/Archive"
mu4e-drafts-folder "/Drafts"
mu4e-sent-folder "/Sent"
mu4e-trash-folder "/Trash"
mu4e-maildir-shortcuts '(("/Inbox" . ?i)
("/Archive" . ?a)
("/Drafts" . ?d)))
(global-set-key (kbd "C-c m") 'mu4e)
;; smtp
(setq message-send-mail-function 'smtpmail-send-it
user-mail-address "jeremy@baxters.nz"
user-full-name "Jeremy Baxter"
smtpmail-smtp-server "smtp.migadu.com"
smtpmail-smtp-service 465
smtpmail-stream-type 'ssl)
;; misc ;; misc
;; guess the major mode from file name ;; guess the major mode from file name

View file

@ -7,6 +7,7 @@ cd "$(dirname $0)"
cp "$HOME"/.gitconfig . cp "$HOME"/.gitconfig .
cp "$HOME"/.gitignore . cp "$HOME"/.gitignore .
cp "$HOME"/.kshrc . cp "$HOME"/.kshrc .
cp "$HOME"/.mbsyncrc .
cp "$HOME"/.profile . cp "$HOME"/.profile .
mkdir -p .emacs.d/ mkdir -p .emacs.d/