From: adam Date: Wed, 7 Jul 2004 08:56:24 +0000 (+0000) Subject: fix argument to STATUS response in IMAP X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6b11b69ef5017da2546abc5a1a022153d394ec57;p=org.ibex.mail.git fix argument to STATUS response in IMAP darcs-hash:20040707085624-5007d-f5173fdea97e0a708e2061a36bb088d15bca19e9.gz --- diff --git a/src/org/ibex/mail/protocol/IMAP.java b/src/org/ibex/mail/protocol/IMAP.java index 6c805d7..8286fa8 100644 --- a/src/org/ibex/mail/protocol/IMAP.java +++ b/src/org/ibex/mail/protocol/IMAP.java @@ -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: {