(nnimap-request-accept-article): Don't unselect mailbox if no select is selected.
authorSimon Josefsson <jas@extundo.com>
Tue, 16 May 2000 13:52:46 +0000 (13:52 +0000)
committerSimon Josefsson <jas@extundo.com>
Tue, 16 May 2000 13:52:46 +0000 (13:52 +0000)
lisp/ChangeLog
lisp/nnimap.el

index c2ebdfa..ebbd300 100644 (file)
@@ -1,3 +1,8 @@
+2000-05-16  Simon Josefsson  <jas@pdc.kth.se>
+
+       * nnimap.el (nnimap-request-accept-article): Don't unselect
+       mailbox if no select is selected.
+
 2000-05-15  Per Abrahamsen  <abraham@dina.kvl.dk>
 
        * gnus-art.el (gnus-button-url-regexp): Revert earlier change.
index af1de33..1b92f83 100644 (file)
@@ -1061,8 +1061,9 @@ function is generally only called when Gnus is shutting down."
                    (goto-char (point-min))
                    (while (search-forward "\n" nil t)
                      (replace-match "\r\n")))
-                 ;; next line for Cyrus server bug
-                 (imap-mailbox-unselect nnimap-server-buffer)
+                  ;; this 'or' is for Cyrus server bug
+                  (or (null (imap-current-mailbox nnimap-server-buffer))
+                      (imap-mailbox-unselect nnimap-server-buffer))
                  (imap-message-append group (current-buffer) nil nil
                                       nnimap-server-buffer)))
          (cons group (nth 1 uid))