Changes committed gnus/lisp (ChangeLog nnimap.el)
"Ted Zlatanov" <[email protected]>
| Newsgroups | gmane.emacs.gnus.commits |
|---|---|
| Message-ID | <[email protected]> |
Modified: ChangeLog nnimap.el (nnimap-find-minmax-uid): Tiny fix for Exchange 2007 IMAP problem. Reported by Michael Harnois <[email protected]>. Index: ChangeLog diff -u gnus/lisp/ChangeLog:7.1817 gnus/lisp/ChangeLog:7.1818 --- ChangeLog:7.1817 Mon Mar 24 20:38:12 2008 +++ ChangeLog Fri Mar 28 15:36:45 2008 @@ -1,3 +1,8 @@ +2008-03-28 Teodor Zlatanov <[email protected]> + + * nnimap.el (nnimap-find-minmax-uid): Tiny fix for Exchange 2007 IMAP + problem. Reported by Michael Harnois <[email protected]>. + 2008-03-24 Reiner Steib <[email protected]> * message.el (message-signature-separator): Change default. Improve Index: nnimap.el diff -u gnus/lisp/nnimap.el:7.42 gnus/lisp/nnimap.el:7.43 --- nnimap.el:7.42 Thu Feb 7 18:36:36 2008 +++ nnimap.el Fri Mar 28 15:36:45 2008 @@ -555,7 +555,7 @@ (imap-mailbox-select group examine)) (let (minuid maxuid) (when (> (imap-mailbox-get 'exists) 0) - (imap-fetch "1,*" "UID" nil 'nouidfetch) + (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)))