How can I find SMTP address in AD

Asked By 0 points N/A Posted on -
qa-featured

If I try to create a new user account, my computer together with the Active Directory tells me that the SMTP (Simple Mail Transfer Protocol) is in use. My question is how can I resolve it and where can I find the SMTP address?

SHARE
Best Answer by obonil
Best Answer
Best Answer
Answered By 0 points N/A #94792

How can I find SMTP address in AD

qa-featured

 Using Get.Ex method can be useful. Try the following code:

arProxy = objUser.GetEx("proxyaddresses")
For Each stProxy In arProxy
msgbox "Address: " & srProxy
Next

Answered By 590495 points N/A #94793

How can I find SMTP address in AD

qa-featured

Active Directory uses SMTP or Simple Mail Transfer Protocol for sending data. This is the server used for sending when setting up email account using email client such as Outlook Express or Microsoft Outlook.

Most SMTP server settings is personalized by Internet Service Provider. There are no such SMTP that can be used in general. For RoadRunner Internet, on every division, it has there own SMTP to used.

For Verizon Internet, they uses outgoing.verizon.net as SMTP. You need to contact your Internet Service Provider and ask this information to them. This is important if you are setting out email account or an active directory.

To find within an AD console, you can do as in the screenshot. If you have an Exchange server check the SMTP from the EMC console.

Related Questions