Link to home
Start Free TrialLog in
Avatar of tadduci
tadduci

asked on

How do you change the smtp banner in Exchange 2007 using the GUI?

How do you change the smtp banner in Exchange 2007 using the GUI?
Avatar of netmunky
netmunky
Flag of United States of America image

The article posted above is for Exchange 2000/2003, not Exchange 2007.

What exactly do you want to change? The only thing that you can change in the GUI is the ehlo. This is set in two places - on the receive connector and on the send connector.

However if you don't have an SSL certificate that matches then you will get errors in the event viewer.

Simon.

--
Once your question has been answered, please remember to accept an answer and close the question.
Avatar of tadduci
tadduci

ASKER

hello,
I want to change the servername.companyname.com that it defaults with to the fqdn: mail.companyname.com.

Thanks.
That is what you set on the connectors.

Simon.

--
Once your question has been answered, please remember to accept an answer and close the question.
Avatar of tadduci

ASKER

ok, so how does one do that in 07 in the GUI?
ASKER CERTIFIED SOLUTION
Avatar of Sembee
Sembee
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I think I understand what the Author is looking for:

If you telnet to your smtp server on port 25, it will show the MX record name as well as "Microsoft ESMTP MAIL Service ready at DATE"

I think he wants to change the portion after the MX name.  Am I correct?
What the Exchange server announces itself as has nothing to do with the MX records. It should match the host name, but it doesn't read the MX records to see what to state. You could set it to announce itself as blah.blah.blah and that is what the SMTP header will say.

However you cannot change the Default Receive Connector from anything other than the server's FQDN, NETBIOS name or null.

Simon.
Hey,

You cant do it in the EMC (GUI), you can only control the SMTP banner by using the Banner parameter in the Set-ReceiveConnector cmdlet. The banner can be anything you wish -  but the text string must always start with "220 ". As defined in RFC 2821 as the default "Service ready" SMTP code.

To set a new banner text use:
Set-ReceiveConnector <ConnectorIdentity> -Banner "<220 RemainingBannerText>"

e.g
Set-ReceiveConnector "MyServer\Defaualt " -Banner "220 ESMTP Ready..."

See: http://technet.microsoft.com/en-us/library/bb124740.aspx

Regards,

Fraser.