for security reason (and for other reasons too) I want to hide "Postfix" from SMTP response
now:
[root@mail ~]# telnet 127.0.0.1 25
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
220 mail.example.biz ESMTP Postfix
I need the answer to be only:
220 mail.example.biz ESMTP
Is this possible?
Change
smtpd_banner
. Note that per protocol,$myhostname
must be the first argument.