Function: nnml-request-scan

nnml-request-scan is a byte-compiled function defined in nnml.el.gz.

Signature

(nnml-request-scan &optional GROUP SERVER)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnml.el.gz
(deffoo nnml-request-scan (&optional group server)
  (setq nnml-article-file-alist nil)
  (nnml-possibly-change-directory group server)
  (cond
   (group
    (nnmail-get-new-mail 'nnml 'nnml-save-incremental-nov nnml-directory group))
   ((nnmail-get-new-mail-per-group)
    (nnml-request-list)
    (dolist (entry nnml-group-alist)
      (nnml-request-scan (car entry) server)))
   (t
    (nnmail-get-new-mail 'nnml 'nnml-save-incremental-nov nnml-directory nil))))