[Date Prev][Date Next] [Chronological] [Thread] [Top]

nnimap 0.104 -> 0.105 patches



Index: nnimap/ChangeLog
diff -c nnimap/ChangeLog:1.207 nnimap/ChangeLog:1.208
*** nnimap/ChangeLog:1.207	Wed May 19 17:29:54 1999
--- nnimap/ChangeLog	Fri May 21 06:59:20 1999
***************
*** 1,3 ****
--- 1,9 ----
+ 1999-05-21  Simon Josefsson  <jas@pdc.kth.se>
+ 
+ 	* nnimap 0.105 released.
+ 
+ 	* imap.el (imap-read-passwd): Try better to find a function.
+ 
  1999-05-20  Simon Josefsson  <jas@pdc.kth.se>
  
  	* nnimap 0.104 released.
Index: nnimap/imap.el
diff -c nnimap/imap.el:1.133 nnimap/imap.el:1.134
*** nnimap/imap.el:1.133	Wed May 19 17:29:13 1999
--- nnimap/imap.el	Fri May 21 06:58:47 1999
***************
*** 311,320 ****
  		    (apply 'format prompt args)
  		  prompt)))
      (funcall (if (or (fboundp 'read-passwd)
! 		     (load "subr" t)
! 		     (load "passwd" t))
  		 'read-passwd
! 	       'ange-ftp-read-passwd) prompt)))
  
  (defsubst imap-ok-p (status)
    (if (eq status 'OK)
--- 311,324 ----
  		    (apply 'format prompt args)
  		  prompt)))
      (funcall (if (or (fboundp 'read-passwd)
! 		     (and (load "subr" t)
! 			  (fboundp 'read-passwd))
! 		     (and (load "passwd" t)
! 			  (fboundp 'read-passwd)))
  		 'read-passwd
! 	       (autoload 'ange-ftp-read-passwd "ange-ftp")
! 	       'ange-ftp-read-passwd)
! 	     prompt)))
  
  (defsubst imap-ok-p (status)
    (if (eq status 'OK)
Index: nnimap/nnimap.el
diff -c nnimap/nnimap.el:1.159 nnimap/nnimap.el:1.160
*** nnimap/nnimap.el:1.159	Wed May 19 17:29:32 1999
--- nnimap/nnimap.el	Fri May 21 06:59:02 1999
***************
*** 99,105 ****
  (gnus-declare-backend "nnimap" 'mail 'address 'prompt-address 
  		      'physical-address)
  
! (defconst nnimap-version "nnimap 0.104")
  
  (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.105")
  
  (defvoo nnimap-address nil
    "Address of physical IMAP server.  If nil, use the virtual server's name.")