What is a 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
server01.bytle.net ESMTP Postfix
where:
server01.bytle.net is the domain/hostname
ESMTP indicates that this server talks:
Postfix is the name of the SMTP application that:
Postfix Configuration