diff options
author | fpi | 2022-02-20 18:33:15 +0100 |
---|---|---|
committer | fpi | 2022-03-17 14:31:38 +0100 |
commit | f9179aa6bd96155d101ad89977c2006a39bf508f (patch) | |
tree | c5c7926998edda59e0b8f5aff737a44aed15d62a | |
parent | Keep temporary score rules for longer (diff) |
BCC self and use general search syntax
Also remove fix for old gnus-cloud bug
-rw-r--r-- | gnus.org | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -94,6 +94,11 @@ Load only groups with level < 2 for faster startup. (setq gnus-activate-level 2) #+end_src **** Message related +Bcc self to archive sent messages & ensure proper sending +#+begin_src emacs-lisp +(setq message-default-mail-headers + (format "Bcc: %s\n" user-mail-address)) +#+end_src Sent mails are read. #+begin_src emacs-lisp (setq gnus-gcc-mark-as-read t) @@ -140,6 +145,11 @@ Setup for fancy mail splitting. Also see the parameters in ~gnus-select-method~. (setq nnmail-cache-accepted-message-ids t) (setq nnmail-message-id-cache-length 10000) #+end_src +**** Search +Use gnus search language. See [[info:gnus#Search Queries][gnus#Search Queries]] for info. +#+begin_src emacs-lisp +(setq gnus-search-use-parsed-queries t) +#+end_src **** Demon Background fetching for gnus. See the manual and [[https://www.emacswiki.org/emacs/GnusDemon][emacswiki]]. #+begin_src emacs-lisp @@ -616,10 +626,6 @@ contains new messages")) ;;; gnus-notify.el ends here #+end_src *** Misc -Workaround for bug with ~gnus-cloud-method~ and ~custom-variable-recalc-variable~ upon reloading the =spacemacs-*= theme. -#+begin_src emacs-lisp -(setq server "nnimap:imsmail") -#+end_src **** nnreddit #+begin_src emacs-lisp (use-package nnreddit |