From: adam Date: Wed, 11 Aug 2004 01:34:12 +0000 (+0000) Subject: reply 221->211 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=afc33ac2543895322211309c43899fd975ff3d38;p=org.ibex.mail.git reply 221->211 darcs-hash:20040811013412-5007d-2519c864af3c5ee407e3f6128567dd2045e288e6.gz --- diff --git a/src/org/ibex/mail/protocol/NNTP.java b/src/org/ibex/mail/protocol/NNTP.java index 048efba..3219fa9 100644 --- a/src/org/ibex/mail/protocol/NNTP.java +++ b/src/org/ibex/mail/protocol/NNTP.java @@ -172,7 +172,7 @@ public class NNTP { } else if (command.equals("QUIT")) { println("205 Bye."); conn.close(); return; } else if (command.equals("GROUP")) { Group g = api.group(st.nextToken().toLowerCase()); - println("221 " + g.count + " " + g.first + " " + g.last + " " + g.name); + println("211 " + g.count + " " + g.first + " " + g.last + " " + g.name); } else if (command.equals("NEWGROUPS") || command.equals("NEWNEWS")) { String groups = command.equals("NEWNEWS") ? st.nextToken() : null; String datetime = st.nextToken() + " " + st.nextToken();