[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
nnimap 0.103 -> 0.104 patches
- To: nnimap@extundo.com
- Subject: nnimap 0.103 -> 0.104 patches
- From: Simon Josefsson <jas@pdc.kth.se>
- Date: 20 May 1999 02:35:19 +0200
- User-Agent: Gnus/5.070083 (Pterodactyl Gnus v0.83) Emacs/20.3.9
Index: nnimap/ChangeLog
diff -c nnimap/ChangeLog:1.206 nnimap/ChangeLog:1.207
*** nnimap/ChangeLog:1.206 Tue May 18 04:39:02 1999
--- nnimap/ChangeLog Wed May 19 17:29:54 1999
***************
*** 1,3 ****
--- 1,9 ----
+ 1999-05-20 Simon Josefsson <jas@pdc.kth.se>
+
+ * nnimap 0.104 released.
+
+ * imap.el (imap-parse-address-list): Tolerate whitespace.
+
1999-05-18 Simon Josefsson <jas@pdc.kth.se>
* nnimap 0.103 released.
Index: nnimap/imap.el
diff -c nnimap/imap.el:1.132 nnimap/imap.el:1.133
*** nnimap/imap.el:1.132 Mon May 17 13:41:04 1999
--- nnimap/imap.el Wed May 19 17:29:13 1999
***************
*** 1321,1326 ****
--- 1321,1328 ----
(let (address addresses)
(imap-forward)
(while (and (not (eq (char-after) ?\)))
+ ;; next line for MS Exchange bug
+ (progn (and (eq (char-after) ? ) (imap-forward)) t)
(setq address (imap-parse-address)))
(setq addresses (cons address addresses)))
(when (eq (char-after) ?\))
Index: nnimap/nnimap.el
diff -c nnimap/nnimap.el:1.158 nnimap/nnimap.el:1.159
*** nnimap/nnimap.el:1.158 Tue May 18 04:41:15 1999
--- nnimap/nnimap.el Wed May 19 17:29:32 1999
***************
*** 99,105 ****
(gnus-declare-backend "nnimap" 'mail 'address 'prompt-address
'physical-address)
! (defconst nnimap-version "nnimap 0.103")
(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.104")
(defvoo nnimap-address nil
"Address of physical IMAP server. If nil, use the virtual server's name.")