From 6b11b69ef5017da2546abc5a1a022153d394ec57 Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 7 Jul 2004 08:56:24 +0000 Subject: [PATCH] fix argument to STATUS response in IMAP darcs-hash:20040707085624-5007d-f5173fdea97e0a708e2061a36bb088d15bca19e9.gz --- src/org/ibex/mail/protocol/IMAP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: { -- 1.7.10.4