gnus-agent.el (gnus-agentize): Only do the auto-agentizing if gnus-agent-auto-agentize-methods is set. Which it isn't.

This commit is contained in:
Lars Magne Ingebrigtsen 2010-11-15 22:12:43 +00:00 committed by Katsumi Yamaoka
parent cca982d001
commit 90eef04725
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
gnus-agent-auto-agentize-methods is set. Which it isn't.
2010-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it

View file

@ -695,7 +695,9 @@ minor mode in all Gnus buffers."
;; If the servers file doesn't exist, auto-agentize some servers and
;; save the servers file so this auto-agentizing isn't invoked
;; again.
(unless (file-exists-p (nnheader-concat gnus-agent-directory "lib/servers"))
(when (and (not (file-exists-p (nnheader-concat
gnus-agent-directory "lib/servers")))
gnus-agent-auto-agentize-methods)
(gnus-message 3 "First time agent user, agentizing remote groups...")
(mapc
(lambda (server-or-method)