fix argument to STATUS response in IMAP
authoradam <adam@megacz.com>
Wed, 7 Jul 2004 08:56:24 +0000 (08:56 +0000)
committeradam <adam@megacz.com>
Wed, 7 Jul 2004 08:56:24 +0000 (08:56 +0000)
darcs-hash:20040707085624-5007d-f5173fdea97e0a708e2061a36bb088d15bca19e9.gz

src/org/ibex/mail/protocol/IMAP.java

index 6c805d7..8286fa8 100644 (file)
@@ -292,7 +292,7 @@ public class IMAP {
                             if (s.equals("UIDVALIDITY")) response += "UIDVALIDITY " + api.uidValidity(mailbox);
                             if (s.equals("UNSEEN"))      response += "UNSEEN "      + api.unseen(mailbox);
                         }
-                        println("* STATUS " + selectedName + " (" + response + ")");
+                        println("* STATUS " + mailbox + " (" + response + ")");
                         break;
                     }
                     case APPEND: {