[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
nnimap 0.113 -> 0.114 patches
- To: nnimap@extundo.com
- Subject: nnimap 0.113 -> 0.114 patches
- From: Simon Josefsson <jas@pdc.kth.se>
- Date: 04 Jun 1999 15:49:36 +0200
- User-Agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) Emacs/20.3.10
Index: nnimap/ChangeLog
diff -c nnimap/ChangeLog:1.227 nnimap/ChangeLog:1.228
*** nnimap/ChangeLog:1.227 Fri Jun 4 04:34:18 1999
--- nnimap/ChangeLog Fri Jun 4 06:45:01 1999
***************
*** 1,5 ****
--- 1,9 ----
1999-06-04 Simon Josefsson <jas@pdc.kth.se>
+ * nnimap 0.114 released.
+
+ * nnimap.el (nnimap-find-minmax-uid): Fix.
+
* nnimap 0.113 released.
* nnimap.el (nnimap-find-minmax-uid): Don't fetch if there isn't
Index: nnimap/nnimap.el
diff -c nnimap/nnimap.el:1.180 nnimap/nnimap.el:1.181
*** nnimap/nnimap.el:1.180 Thu Jun 3 17:26:16 1999
--- nnimap/nnimap.el Fri Jun 4 06:44:50 1999
***************
*** 99,105 ****
(gnus-declare-backend "nnimap" 'mail 'address 'prompt-address
'physical-address)
! (defconst nnimap-version "nnimap 0.113")
(defvoo nnimap-address nil
"Address of physical IMAP server. If nil, use the virtual server's name.")
--- 99,105 ----
(gnus-declare-backend "nnimap" 'mail 'address 'prompt-address
'physical-address)
! (defconst nnimap-version "nnimap 0.114")
(defvoo nnimap-address nil
"Address of physical IMAP server. If nil, use the virtual server's name.")
***************
*** 311,317 ****
(with-current-buffer nnimap-server-buffer
(when (imap-mailbox-select group nil examine)
(let (minuid maxuid)
! (when (imap-mailbox-get 'exists)
(imap-fetch "1,*" "UID" nil 'nouidfetch)
(imap-message-map (lambda (uid Uid)
(setq minuid (if minuid (min minuid uid) uid)
--- 311,317 ----
(with-current-buffer nnimap-server-buffer
(when (imap-mailbox-select group nil examine)
(let (minuid maxuid)
! (when (> (imap-mailbox-get 'exists) 0)
(imap-fetch "1,*" "UID" nil 'nouidfetch)
(imap-message-map (lambda (uid Uid)
(setq minuid (if minuid (min minuid uid) uid)