diff --git a/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerFrequentConfigurationIssues.ps1 b/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerFrequentConfigurationIssues.ps1 index c3c958cb04..772f22bb6c 100644 --- a/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerFrequentConfigurationIssues.ps1 +++ b/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerFrequentConfigurationIssues.ps1 @@ -318,7 +318,8 @@ function Invoke-AnalyzerFrequentConfigurationIssues { $showMoreInfo = $true } - if ($connector.TlsDomain -ne "mail.protection.outlook.com") { + if ($connector.TlsDomain -ne "mail.protection.outlook.com" -and + $connector.TlsAuthLevel -eq "DomainValidation") { $params = $baseParams + @{ Name = "Send Connector - $($connector.Identity.ToString())" Details = "TLSDomain not set to mail.protection.outlook.com" diff --git a/docs/Diagnostics/HealthChecker/ExoConnectorCheck.md b/docs/Diagnostics/HealthChecker/ExoConnectorCheck.md index 0aab89e368..84ee82078a 100644 --- a/docs/Diagnostics/HealthChecker/ExoConnectorCheck.md +++ b/docs/Diagnostics/HealthChecker/ExoConnectorCheck.md @@ -17,7 +17,7 @@ These are now being flagged as an issue due to some recent changes within Exchan Some additional configuration concerns are also warned about if one of the following is true: - TLSAuthLevel is not set to `CertificateValidation` or `DomainValidation` -- TLSDomain is not set to `mail.protection.outlook.com` +- TLSDomain is not set to `mail.protection.outlook.com` if TLSAuthLevel is set to `DomainValidation` ## Included in HTML Report?