Function: nnmairix-group-delete-recreate-this-group
nnmairix-group-delete-recreate-this-group is an interactive and
byte-compiled function defined in nnmairix.el.gz.
Signature
(nnmairix-group-delete-recreate-this-group)
Documentation
Deletes and recreates group on the back end.
You can use this function on nnmairix groups which continuously show wrong article counts.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmairix.el.gz
(defun nnmairix-group-delete-recreate-this-group ()
"Deletes and recreates group on the back end.
You can use this function on nnmairix groups which continuously
show wrong article counts."
(interactive)
(let* ((group (gnus-group-group-name))
(method (gnus-find-method-for-group group)))
(unless (eq (car method) 'nnmairix)
(error "This is not a nnmairix group"))
(when (y-or-n-p
(format "Really recreate group %s on the back end? " group))
(nnmairix-delete-recreate-group group)
(gnus-group-get-new-news-this-group))))