Posted On March 31, 2019

Troubleshoot Mail Relay

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Troubleshoot Mail Relay

Find Mail server of domain:
NSLOOKUP
set q=mx
{domain_name}.{NLDN}
exit

Send a test email:
telnet mail.kimconnect.com 25
ehlo kimconnect.com
mail from:<[email protected]>
data
This is a test, please do not respond
.
quit 

Test SMTP relay:
ehlo kimconnect.com
mail from:<[email protected]>
data
This is a test, please do not respond
.
quit 

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to transport Outlook contacts

Export your contacts from Outlook: In Outlook, on the File menu, click Import and Export.…

How to Set PowerShell Window and Prompt Title or Label

Have you ever wondered about changing the boring PS C:\Windows\system32> whenever a new window is…

PowerShell: Find Windows RDS Roles and Their Licensing Servers

# Get TS Licensing Servers (Enterprise or AD Registered) $termLicenseServers=Get-ADGroupMember -Identity "Terminal Server License Servers"…