Test for a SMTP server : While trobleshooting any email issues, This will help you to check your mail server with SMTP. To check this for your mail server, you can use telnet command to port 25 as: # telnet 198.168.10.10 25 HELO test.test.com MAIL FROM: [email protected] RCPT TO: [email protected] DATA This is a test …
SMTP
Simple Mail Transfer Protocol (SMTP)
Simple Mail Transfer Protocol (SMTP)
SMTP (Simple Mail Transfer Protocol) is a relatively simple, text-based protocol, where one or more recipients of a message are specified (and in most cases verified to exist) and then the message text is transferred. It is quite easy to test a SMTP server using the telnet program (see below). SMTP uses TCP port 25. …