mu4e: don't auto-update current headers view on index

This commit is contained in:
Evie Litherland-Smith 2023-11-29 11:27:47 +00:00
parent a072fa5eec
commit 846f724cf1
2 changed files with 5 additions and 7 deletions

View file

@ -588,9 +588,7 @@
lisp-data-mode lisp-data-mode
rust-mode)) rust-mode))
(setq gnus-select-method '(nnnil "") (setq gnus-select-method '(nnrss "http://www.fsf.org/static/fsforg/rss/news.xml"))
gnus-secondary-select-methods
'((nnrss "http://www.fsf.org/static/fsforg/rss/news.xml")))
(setq sendmail-program (executable-find "msmtp") (setq sendmail-program (executable-find "msmtp")
send-mail-function #'smtpmail-send-it send-mail-function #'smtpmail-send-it
@ -610,6 +608,7 @@
(mu4e-attachment-dir "~/Downloads") (mu4e-attachment-dir "~/Downloads")
(mu4e-get-mail-command "mbsync -a") (mu4e-get-mail-command "mbsync -a")
(mu4e-update-interval (* 5 60)) ; Every 5 minutes (mu4e-update-interval (* 5 60)) ; Every 5 minutes
(mu4e-headers-auto-update nil)
(mu4e-sent-messages-behavior 'sent) (mu4e-sent-messages-behavior 'sent)
(mu4e-change-filenames-when-moving t) (mu4e-change-filenames-when-moving t)
(mu4e-context-policy 'ask-if-none) (mu4e-context-policy 'ask-if-none)

View file

@ -706,11 +706,9 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
** TODO Gnus ** TODO Gnus
#+begin_src emacs-lisp :tangle yes #+begin_src emacs-lisp :tangle yes
(setq gnus-select-method '(nnnil "") (setq gnus-select-method '(nnrss "http://www.fsf.org/static/fsforg/rss/news.xml"))
gnus-secondary-select-methods
'((nnrss "http://www.fsf.org/static/fsforg/rss/news.xml")))
#+end_src #+end_src
** TODO Email ** Email
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq sendmail-program (executable-find "msmtp") (setq sendmail-program (executable-find "msmtp")
send-mail-function #'smtpmail-send-it 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-attachment-dir "~/Downloads")
(mu4e-get-mail-command "mbsync -a") (mu4e-get-mail-command "mbsync -a")
(mu4e-update-interval (* 5 60)) ; Every 5 minutes (mu4e-update-interval (* 5 60)) ; Every 5 minutes
(mu4e-headers-auto-update nil)
(mu4e-sent-messages-behavior 'sent) (mu4e-sent-messages-behavior 'sent)
(mu4e-change-filenames-when-moving t) (mu4e-change-filenames-when-moving t)
(mu4e-context-policy 'ask-if-none) (mu4e-context-policy 'ask-if-none)