m_testConfiguration.setAddressBracketsEnforcement(false);
finishSetUp(m_testConfiguration);
SMTPClient smtpProtocol = new SMTPClient();
smtpProtocol.connect("127.0.0.1", m_smtpListenerPort);
smtpProtocol.sendCommand("ehlo", InetAddress.getLocalHost().toString());
smtpProtocol.sendCommand("mail from:", "test@localhost");
assertEquals("accept", 250, smtpProtocol.getReplyCode());
smtpProtocol.sendCommand("rcpt to:", "mail@sample.com");