The very unofficial .emacs home EugeneMorozov.gnus.el
emacs
Sections
home
what is this all about ?
customization basics
special topics
local dotfiles
dotfiles on the web
new and updated pages
useful sites and pages
search locally
EMacro
OS/2 Emacs
Eugene Morozov
EugeneMorozov.emacs
.custom.xemacs.nomule
.custom.xemacs.nomule
.gnus.el
.vm.el

EugeneMorozov.zip
Latest Additions
local files:
John J. Glynn
David Jolley

linked files:


articles:


links:
The Emacs wiki
;; $Id: EugeneMorozov.gnus.el.html,v 1.1.1.1 2003/10/25 21:10:52 ingo Exp $
;;

(add-hook 'gnus-group-mode-hook 'gnus-topic-mode)

;; Hide threads in high-volume groups
(defun hide-threads-in-high-volume-groups ()
  "Hide threads in group if its size exceeds 150 messages"
  (if (> (count-lines (point-min) (point-max)) 150)
      (gnus-summary-hide-all-threads)))

(add-hook 'gnus-summary-prepared-hook 'hide-threads-in-high-volume-groups)

;; mailcrypt support
(add-hook 'gnus-summary-mode-hook 'mc-install-read-mode)
(add-hook 'message-mode-hook 'mc-install-write-mode)
(add-hook 'news-reply-mode-hook 'mc-install-write-mode)

;(gnus-agentize)
All content copyright by the contributors. Website maintained with Emacs , wsmake and html-helper-mode
Emacs community logo by Daniel Lundin Last updated on Sat Jan 22 14:57:07 2005 by Ingo Koch