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

Re: Problem with browsing server



Donald Hunter <dhunter@atlan-tech.com> writes:

> When I try and browse an IMAP server I get an empty list.  I have 
> updated imap-parse-data-list to use the following: 
> 
>     (when (looking-at " NIL\\| \"\\(.*\\)\"")
>                                      ^
>                            Note the extra "*".

I've commited this to 0.124. Thanks for the report!

Index: imap.el
===================================================================
RCS file: /home/radford/src/cvs/nnimap/imap.el,v
retrieving revision 1.158
diff -w -u -u -w -r1.158 imap.el
--- imap.el	1999/07/12 13:20:28	1.158
+++ imap.el	1999/07/17 17:33:54
@@ -1680,7 +1680,7 @@
 (defun imap-parse-data-list (type)
   (let (flags delimiter mailbox)
     (setq flags (imap-parse-flag-list))
-    (when (looking-at " NIL\\| \"\\(.\\)\"")
+    (when (looking-at " NIL\\| \"\\\\?\\(.\\)\"")
       (setq delimiter (match-string 1))
       (goto-char (1+ (match-end 0)))
       (when (setq mailbox (imap-parse-mailbox))