Author: JT Smith
Before diving into specific software-configuration tips, here’s a technique that can be used to troubleshoot or test any SMTP server: manual mail delivery. Normally, end users don’t use SMTP commands because end users generally don’t transfer their email manually. That’s the job of MUAs, MDAs, and MTAs.
But it so happens that SMTP is a simple ASCII-based protocol built on TCP, and it’s therefore possible to use SMTP commands to interact directly with an email server by telneting to TCP port 25 on that server. This is a useful technique for checking and troubleshooting MTA configurations. All you need is a telnet client and a working knowledge of a few of the commands in RFC 2821.
$ telnet buford.hackenbush.com 25 Trying 10.16.17.123... Connected to buford.hackenbush.com. Escape character is '^]'. 220 buford.hackenbush.com ESMTP Postfix helo woofgang.dogpeople.org 250 buford.hackenbush.org mail from:<mick@dogpeople.org> 250 Ok rcpt to:<groucho@hackenbush.com> 250 Ok data 354 End data with <CR><LF>.<CR><LF> Subject: Test email from MickTesting, testing, 1-2-3.... 250 Ok: queued as F28B08603 quit 221 Bye Connection closed by foreign host.