Posted On March 31, 2019

Setup Multiple SMTP Servers

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Setup Multiple SMTP Servers
– Add SPF record for both SMTP servers that are authorized to send email for kimconnect.com domain.
– Set up A and PTR records for both SMTP server sending email for westernmutual.com.
– Verify that MX records for kimconnect.com only point to our external email provider. Inbound email should not be going straight to the onsite SMTP server.
– SMTP server must send out with reply to addresses that are valid so that replies are sent to legitimate recipients at our external email provider.

Leave a Reply

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

Related Post

Disable / Enable Admin Shares

Restore Administrative Shares To restore administrative shares so that they are automatically created in Windows:…

How to Use the ‘Advanced Find’ Feature in Dynamics 365

Step 1: Login and click on Le Button Access your CRM portal with a valid…

PowerShell: Kill a Windows Service Forcefully

# killService.ps1 $serviceName='vmms' function killService($serviceName='Spooler',$restart=$false){ $processId=Get-WmiObject -Class Win32_Service -Filter "Name LIKE '$serviceName'"|Select-Object -ExpandProperty ProcessId if($processId.count…