diff --git a/home/emacs/init.el b/home/emacs/init.el index 100f24e3..c3240c0c 100644 --- a/home/emacs/init.el +++ b/home/emacs/init.el @@ -588,9 +588,7 @@ lisp-data-mode rust-mode)) -(setq gnus-select-method '(nnnil "") - gnus-secondary-select-methods - '((nnrss "http://www.fsf.org/static/fsforg/rss/news.xml"))) +(setq gnus-select-method '(nnrss "http://www.fsf.org/static/fsforg/rss/news.xml")) (setq sendmail-program (executable-find "msmtp") send-mail-function #'smtpmail-send-it @@ -610,6 +608,7 @@ (mu4e-attachment-dir "~/Downloads") (mu4e-get-mail-command "mbsync -a") (mu4e-update-interval (* 5 60)) ; Every 5 minutes + (mu4e-headers-auto-update nil) (mu4e-sent-messages-behavior 'sent) (mu4e-change-filenames-when-moving t) (mu4e-context-policy 'ask-if-none) diff --git a/home/emacs/init.org b/home/emacs/init.org index 623ded4d..efa36e1d 100644 --- a/home/emacs/init.org +++ b/home/emacs/init.org @@ -706,11 +706,9 @@ For reference information, see [[https://orgmode.com][Org-mode website]] ** TODO Gnus #+begin_src emacs-lisp :tangle yes - (setq gnus-select-method '(nnnil "") - gnus-secondary-select-methods - '((nnrss "http://www.fsf.org/static/fsforg/rss/news.xml"))) + (setq gnus-select-method '(nnrss "http://www.fsf.org/static/fsforg/rss/news.xml")) #+end_src -** TODO Email +** Email #+BEGIN_SRC emacs-lisp (setq sendmail-program (executable-find "msmtp") send-mail-function #'smtpmail-send-it @@ -730,6 +728,7 @@ For reference information, see [[https://orgmode.com][Org-mode website]] (mu4e-attachment-dir "~/Downloads") (mu4e-get-mail-command "mbsync -a") (mu4e-update-interval (* 5 60)) ; Every 5 minutes + (mu4e-headers-auto-update nil) (mu4e-sent-messages-behavior 'sent) (mu4e-change-filenames-when-moving t) (mu4e-context-policy 'ask-if-none)