From 3ca1b9c91769b44ad4f36e83ce8196080af4ce1a Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 7 Jul 2004 09:01:02 +0000 Subject: [PATCH] proper interargument spacing in IMAP status response darcs-hash:20040707090102-5007d-a1da70da690fe7ed1621c897797f206d6c447122.gz --- src/org/ibex/mail/protocol/IMAP.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/org/ibex/mail/protocol/IMAP.java b/src/org/ibex/mail/protocol/IMAP.java index 9983bf6..d50f1c4 100644 --- a/src/org/ibex/mail/protocol/IMAP.java +++ b/src/org/ibex/mail/protocol/IMAP.java @@ -286,6 +286,7 @@ public class IMAP { String response = ""; for(int i=0; i0) 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); -- 1.7.10.4