42 lines
1.1 KiB
EmacsLisp
42 lines
1.1 KiB
EmacsLisp
;;; mu4econfig.el --- Configuration for mu4e.
|
|
;;; Commentary:
|
|
;; Configuration for mu4e.
|
|
;;; Code:
|
|
|
|
(add-to-list 'load-path "/usr/share/emacs/site-lisp/mu4e")
|
|
(require 'mu4e)
|
|
|
|
(setq
|
|
mue4e-headers-skip-duplicates t
|
|
mu4e-view-show-images t
|
|
mu4e-view-show-addresses t
|
|
mu4e-compose-format-flowed nil
|
|
mu4e-date-format "%Y-%m-%d"
|
|
mu4e-headers-date-format "%Y-%m-%d"
|
|
mu4e-change-filenames-when-moving t
|
|
mu4e-attachments-dir "~/Downloads"
|
|
|
|
mu4e-maildir "~/mail" ;; top-level Maildir
|
|
;; note that these folders below must start with /
|
|
;; the paths are relative to maildir root
|
|
mu4e-refile-folder "/Archive"
|
|
mu4e-sent-folder "/Sent"
|
|
mu4e-drafts-folder "/Drafts"
|
|
mu4e-trash-folder "/Trash")
|
|
|
|
;; this setting allows to re-sync and re-index mail
|
|
;; by pressing U
|
|
(setq mu4e-get-mail-command "mbsync -a")
|
|
|
|
(setq
|
|
message-send-mail-function 'smtpmail-send-it
|
|
smtpmail-default-smtp-server "smtp.fastmail.com"
|
|
smtpmail-smtp-server "smtp.fastmail.com")
|
|
|
|
(setq user-full-name "Lucas Sta Maria")
|
|
(setq user-mail-address "lucas@priime.dev")
|
|
(setq smtpmail-smtp-service 587)
|
|
|
|
|
|
(provide 'mu4econfig)
|
|
;;; mu4econfig.el ends here
|