Emacs: Update email configuration.

This commit is contained in:
tastytea 2020-03-31 16:26:32 +02:00
parent a460a2e286
commit 1bdb1ef830
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;;; package-management.el --- Initialize package management -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-31T02:03:50+0200>
;; Time-stamp: <2020-03-30T00:21:50+0200>
;;; Commentary:
;; * Set up straight

View File

@ -1,6 +1,6 @@
;;; email.el --- Email setup -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-31T16:16:58+0200>
;; Time-stamp: <2020-03-31T16:26:01+0200>
;;; Commentary:
@ -22,7 +22,7 @@
(mu4e-trash-folder "/Trash")
(mu4e-sent-folder "/Sent")
(mu4e-drafts-folder "/Drafts")
(mu4e-refile-folder "/keep")
(mu4e-refile-folder "/Keep")
(mu4e-get-mail-command "mbsync -c ~/.config/mbsync/config tzend")
(mu4e-update-interval (* 60 10))
(mu4e-use-fancy-chars t)
@ -39,6 +39,10 @@
(when (file-exists-p "~/.maildir")
(custom-set-variables
'(mu4e-maildir "~/.maildir")
'(mu4e-trash-folder "/.Trash")
'(mu4e-sent-folder "/.Sent")
'(mu4e-drafts-folder "/.Drafts")
'(mu4e-refile-folder "/.Keep")
'(mu4e-get-mail-command "true")
'(mu4e-update-interval nil)))