emacs: add email config
This commit is contained in:
parent
574a82f7c7
commit
7b2b9cda8d
2 changed files with 30 additions and 0 deletions
|
@ -270,6 +270,35 @@ One will be created if none exist."
|
|||
(add-hook 'after-init-hook 'dashboard-initialize)
|
||||
(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
|
||||
|
||||
;; guess the major mode from file name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue