public void testMiscCommandsWithWithoutAuth() throws Exception {
finishSetUp(m_testConfiguration);
m_usersRepository.addUser("foo", "bar");
m_pop3Protocol = new POP3Client();
m_pop3Protocol.connect("127.0.0.1",m_pop3ListenerPort);
m_pop3Protocol.sendCommand("noop");
assertEquals(0, m_pop3Protocol.getState());
assertEquals("-ERR", m_pop3Protocol.getReplyString().substring(0,4));