summaryrefslogtreecommitdiff
path: root/gnus.el
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-05-26 19:38:05 -0500
committerMarc Coquand <marc@mccd.space>2024-05-26 19:38:05 -0500
commit0d859c8d32b8ce7dc59623a388ca7a119644f65a (patch)
treee66d24183455b7bb775e8d8cf92a6c3f9b18e350 /gnus.el
parent150032106873d938428c9ebc14bcd517cabe042f (diff)
downloadrcm-0d859c8d32b8ce7dc59623a388ca7a119644f65a.tar.gz
rcm-0d859c8d32b8ce7dc59623a388ca7a119644f65a.tar.bz2
rcm-0d859c8d32b8ce7dc59623a388ca7a119644f65a.zip
Remove emacs
Diffstat (limited to 'gnus.el')
-rw-r--r--gnus.el60
1 files changed, 0 insertions, 60 deletions
diff --git a/gnus.el b/gnus.el
deleted file mode 100644
index 5b59efa..0000000
--- a/gnus.el
+++ /dev/null
@@ -1,60 +0,0 @@
-(setq gnus-select-method '(nnnil))
-(defun my-gnus-group-list-subscribed-groups ()
- "List all subscribed groups with or without un-read messages"
- (interactive)
- (gnus-group-list-all-groups 5))
-
-(add-hook 'gnus-group-mode-hook 'gnus-topic-mode)
-(define-key gnus-group-mode-map
- ;; list all the subscribed groups even they contain zero un-read messages
- (kbd "o") 'my-gnus-group-list-subscribed-groups)
-
-(setq gnus-secondary-select-methods
- '((nnmaildir "personal"
- (nnmail-expiry-target "nnmaildir+personal:Trash")
- (directory "~/mail-home"))
- (nnmaildir "work"
- (nnmail-expiry-target "nnmaildir+work:[Gmail]+Bin")
- (directory "~/mail-work"))))
-
-(setq gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]"
- nnmail-expiry-wait 'immediate
- message-sendmail-f-is-evil 't
- message-sendmail-extra-arguments '("--read-envelope-from")
- message-send-mail-function 'message-send-mail-with-sendmail
- sendmail-program "msmtp"
- mail-host-address "mccd.space"
- user-full-name "Marc Coquand"
- user-mail-address "marc@mccd.space")
-
-(setq gnus-topic-topology '(("Gnus" visible)
- (("personal" visible))
- (("misc" hidden))
- (("work" visible nil nil))
- ))
-(setq gnus-topic-alist '(("personal" ; the key of topic
- "nnmaildir+personal:INBOX"
- "nnmaildir+personal:INBOX+Forums"
- "nnmaildir+personal:Archive"
- "nnmaildir+personal:Archive+Support"
- )
- ("misc"
- "nnfolder+archive:sent.2024-04"
- "nnmaildir+personal:Archive+Receipt"
- "nnmaildir+personal:Archive+WCIG"
- "nnmaildir+personal:Spam"
- "nnmaildir+personal:Sent"
- )
- ("work" ; the key of topic
- "nnmaildir+work:INBOX"
- "nnmaildir+work:[Gmail]+Sent Mail"
- "nnmaildir+work:[Gmail]+Trash"
- )
- ("Gnus")))
-
-
-(setq gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
-(setq nnheader-file-name-translation-alist '((?[ . ?_) (?] . ?_)) )
-(setq gnus-summary-thread-gathering-function 'gnus-gather-threads-by-subject)
-(setq gnus-thread-hide-subtree t)
-(setq gnus-thread-ignore-subject t)