Hi @Gregory Aku,
Thanks for posting your question in the Microsoft Q&A forum.
According to your description, you are facing the problem that you cannot access the exchange server from the external network and cannot send emails to external email addresses. You learned that Comcast blocks port 25 in residential areas and wonder if there are other ways to bypass it or use other secure ports. As you described, this may be the reason why Comcast blocks port 25. You can try the following steps to use other ports:
- In EAC, go to "Mail Flow > Receive Connectors". In the list of receive connectors, select Client Frontend <Server name> and click Edit.
- In the Exchange Receive Connector page that opens, click Scoping. In the FQDN field, enter the SMTP server FQDN to be used for authenticated SMTP client connections. Make sure the port of the connector is set to 587 and the encryption method is set to TLS.
- Specify the certificate for authenticated SMTP client connections through the command.
$TLSCert = Get-ExchangeCertificate -Thumbprint <ThumbprintValue>
$TLSCertName = "<I>$($TLSCert.Issuer)<S>$($TLSCert.Subject)"
Get-ReceiveConnector -Identity "Client Frontend*" | Set-ReceiveConnector -TlsCertificateName $TLSCertName
- Configure Outlook on the web to display the SMTP settings server for authenticated SMTP clients through commands.
Get-ReceiveConnector -Identity "Client Frontend*" | Set-ReceiveConnector -AdvertiseClientSettings $true
If you have any questions, please feel free to contact me. If the answer is helpful, please click "Accept Answer" because it can help other members of the Microsoft Q&A community who have encountered similar problems and are looking for solutions. Thank you.
Best,
Jeanne