Function: gnus-cloud-collect-full-newsrc
gnus-cloud-collect-full-newsrc is a byte-compiled function defined in
gnus-cloud.el.gz.
Signature
(gnus-cloud-collect-full-newsrc)
Documentation
Collect all the Gnus newsrc data in a portable format.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-cloud.el.gz
(defun gnus-cloud-collect-full-newsrc ()
"Collect all the Gnus newsrc data in a portable format."
(let ((infos nil))
(dolist (info (cdr gnus-newsrc-alist))
(when (gnus-cloud-server-p
(gnus-method-to-server
(gnus-find-method-for-group (gnus-info-group info))))
(push `(:type :newsrc-data :name ,(gnus-info-group info) :contents ,info :timestamp ,(gnus-cloud-timestamp nil))
infos)))
infos))