; Since I use gnus primarily for mail and not for reading News, I ; make my IMAP setting the default method for gnus. (setq gnus-select-method '(nnimap "rednsx.org" (nnimap-address "localhost") (nnimap-stream undecided))) ;; Fetch only part of the article if we can. I saw this in someone ;; else's .gnus (setq gnus-read-active-file 'some) ;; Tree view for groups. I like the organisational feel this has. (add-hook 'gnus-group-mode-hook 'gnus-topic-mode) ;; Threads! I hate reading un-threaded email -- especially mailing ;; lists. This helps a ton! (setq gnus-summary-thread-gathering-function 'gnus-gather-threads-by-subject) ;; Also, I prefer to see only the top level message. If a message has ;; several replies or is part of a thread, only show the first ;; message. 'gnus-thread-ignore-subject' will ignore the subject and ;; look at 'In-Reply-To:' and 'References:' headers. (setq gnus-thread-hide-subtree t) (setq gnus-thread-ignore-subject t) ;; Change email address for work folder. This is one of the most ;; interesting features of Gnus. I plan on adding custom .sigs soon ;; for different mailing lists. (setq gnus-posting-styles '((".*" (name "Sketch") (address "ed@rednsx.org")) ("work" (name "Ed Byrne") (address "ebyrne@mochotrading.com")) ("Ed Byrne" (name "Ed Byrne") (address "ed@rednsx.org"))))