diff options
Diffstat (limited to 'lisp/gnus/gnus-group.el')
-rw-r--r-- | lisp/gnus/gnus-group.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index 5cc01759a04..36fb9e8343b 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el @@ -1201,7 +1201,7 @@ The following commands are available: (if (eq (car method) 'nnimap) ;; IMAP groups should not be encoded, since they do the encoding ;; in utf7 in the protocol. - nil + 'utf-8 (let ((item (or (assoc method gnus-group-name-charset-method-alist) (and (consp method) (assoc (list (car method) (cadr method)) @@ -4069,7 +4069,7 @@ If DONT-SCAN is non-nil, scan non-activated groups as well." (gnus-group-update-group group nil t)) (if (eq (gnus-server-status (gnus-find-method-for-group group)) 'denied) - (gnus-error 3 "Server denied access") + (gnus-error 3 "Server previously determined to be down; not retrying") (gnus-error 3 "%s error: %s" group (gnus-status-message group))))) (when beg (goto-char beg)) |