From: adam Date: Wed, 7 Jul 2004 09:01:02 +0000 (+0000) Subject: proper interargument spacing in IMAP status response X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=3ca1b9c91769b44ad4f36e83ce8196080af4ce1a;p=org.ibex.mail.git proper interargument spacing in IMAP status response darcs-hash:20040707090102-5007d-a1da70da690fe7ed1621c897797f206d6c447122.gz --- 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);