bogus
[org.ibex.mail.git] / src / org / ibex / mail / protocol / IMAP.java
index 9983bf6..a354445 100644 (file)
@@ -2,7 +2,6 @@ package org.ibex.mail.protocol;
 import org.ibex.io.*;
 import org.ibex.jinetd.Listener;
 import org.ibex.jinetd.Worker;
-import org.ibex.net.*;
 import org.ibex.mail.*;
 import org.ibex.util.*;
 import org.ibex.mail.target.*;
@@ -286,6 +285,7 @@ public class IMAP {
                         String response = "";
                         for(int i=0; i<list.length; i++) {
                             String s = list[i].atom().toUpperCase();
+                            if (i>0) response += " ";
                             if (s.equals("MESSAGES"))    response += "MESSAGES "    + api.count(mailbox);
                             if (s.equals("RECENT"))      response += "RECENT "      + api.recent(mailbox);
                             if (s.equals("UIDNEXT"))     response += "UIDNEXT "     + api.uidNext(mailbox);