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

PowerShell: Uninstall Program Using Its Name

# uninstallProgramUsingId.ps1 $appName='Virtual Machine Manager Agent' $uninstallStringRegPaths='HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall','HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall' $uninstallStrings=Get-ChildItem -Path $uninstallStringRegPaths $uninstallString=($uninstallStrings|Get-ItemProperty|Where-Object {$_.DisplayName -match $appName}).UninstallString if($uninstallString.count…

Converting from IOPS to MB/s

Conversion factors: from IOPS to MiB/s Throughput is a function of Input/Output per second (IOPS)…

PowerShell: Audit Failed Logins of A User

$username='rambo' function auditLockouts($userName,$domainController,$refreshMinutes=1){ function getLockouts($domainControler){ # Requirement: # Domain Controllers Audit Group Policy has been…