[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

nnimap 0.112 -> 0.113 released



Index: nnimap/ChangeLog
diff -c nnimap/ChangeLog:1.225 nnimap/ChangeLog:1.227
*** nnimap/ChangeLog:1.225	Thu Jun  3 06:39:52 1999
--- nnimap/ChangeLog	Fri Jun  4 04:34:18 1999
***************
*** 1,3 ****
--- 1,10 ----
+ 1999-06-04  Simon Josefsson  <jas@pdc.kth.se>
+ 
+ 	* nnimap 0.113 released.
+ 
+ 	* nnimap.el (nnimap-find-minmax-uid): Don't fetch if there isn't
+ 	anything to fetch.
+ 
  1999-06-03  Simon Josefsson  <jas@pdc.kth.se>
  
  	* nnimap 0.112 released.
Index: nnimap/nnimap.el
diff -c nnimap/nnimap.el:1.179 nnimap/nnimap.el:1.180
*** nnimap/nnimap.el:1.179	Thu Jun  3 06:39:13 1999
--- nnimap/nnimap.el	Thu Jun  3 17:26:16 1999
***************
*** 99,105 ****
  (gnus-declare-backend "nnimap" 'mail 'address 'prompt-address 
  		      'physical-address)
  
! (defconst nnimap-version "nnimap 0.112")
  
  (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.113")
  
  (defvoo nnimap-address nil
    "Address of physical IMAP server.  If nil, use the virtual server's name.")
***************
*** 311,321 ****
    (with-current-buffer nnimap-server-buffer
      (when (imap-mailbox-select group nil examine)
        (let (minuid maxuid)
! 	(imap-fetch "1,*" "UID" nil 'nouidfetch)
! 	(imap-message-map (lambda (uid Uid)
! 			    (setq minuid (if minuid (min minuid uid) uid)
! 				  maxuid (if maxuid (max maxuid uid) uid)))
! 			  'UID)
  	(list (imap-mailbox-get 'exists) minuid maxuid)))))
    
  (defun nnimap-possibly-change-group (group &optional server)
--- 311,322 ----
    (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)
! 				    maxuid (if maxuid (max maxuid uid) uid)))
! 			    'UID))
  	(list (imap-mailbox-get 'exists) minuid maxuid)))))
    
  (defun nnimap-possibly-change-group (group &optional server)
Get it from http://www.extundo.com/nnimap/nnimap.tar.gz.