} else if( nntpRequest.getCommand().equalsIgnoreCase("xover") ) {
nntpResponse.sendResponse( 224, "Header follows" );
NewsGroup group = forum.getNewsgroup( nntpRequest.getCurrentNewsgroup() );
Hits hits = forum.getOverview( group );
for( int i = 0; i < hits.length(); i++ ) {
Document doc = hits.doc( i );
NntpOutputStream stream = nntpResponse.getOutputStream();
stream.print( doc.getField("article." + group.getName() + ".article-number").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.subject").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.from").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.date").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.message-id").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.references").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.bytes").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.lines").stringValue() );
stream.print( "\t" );
stream.print( doc.getField("article.xref").stringValue() );
}
nntpResponse.getOutputStream().printEnd();
// } else if( nntpRequest.getCommand().equalsIgnoreCase("xhdr") ) {
// for( int i = 0; i < nntpRequest.parameterLength(); i++ ) {
// System.out.println( nntpRequest.getParameter( i ) );