I have inherited a java application (.war) that is essentially an smtp client. I can start it up using mvn:jetty run and then telnet successfully to a port that the application opens 8024.
$ telnet localhost 8024 >
However, how can I issue a basic smtp command to test against? I'm still digging though the code but need to know some basic commands to issue for starters and see if it's at least working or responding to basic smtp commands. Thanks!