Postfix - SMTP Banner

About

A SMTP banner is the protocol banner of SMTP (ie the response that a client will get when it connects to a SMTP server)

Example

With Telnet, we connect to the local smtp server submission port

nc localhost 25
  • We receive an SMTP greeting where 220 is a reply code that means all is good (an equivalent to the 200 HTTP status code)
220 server01.bytle.net ESMTP Postfix

  • The banner text follows the status code
server01.bytle.net ESMTP Postfix

  • where:
    • server01.bytle.net is the domain/hostname
    • ESMTP indicates that this server talks:
      • where the E means Extension (such as size, chunking, …)
    • Postfix is the name of the SMTP application that:

Postfix Configuration





Discover More
How to send an email at the command line with SMTP? Email transaction explained

This page is a how-to that describes how you can transport an email to a SMTP server at the command line using the SMTP protocol for further delivery It will show you the inner mechanisms of SMTP. Below...
Gmail Tls Security
Postfix - TLS (SSL) configuration

Transport Layer Security (TLS, formerly called SSL) with Postfix It provides: certificate-based authentication and encrypted sessions. An encrypted session protects the information that is transmitted:...
The SMTP Protocol

A summary of what the SMTP protocol is and how to send an email from a network connection with telnet or netcat
Map Of Internet 1973
What is a protocol Banner?

A protocol banner is a text that is shown before any protocol exchange occurs. SMTP Banner SSH banner



Share this page:
Follow us:
Task Runner