Skip to content

Commit

Permalink
TlsDomain only need check with DomainValidation
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaulson45 committed Feb 15, 2024
1 parent bee6c20 commit 002166e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/Diagnostics/HealthChecker/ExoConnectorCheck.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down

0 comments on commit 002166e

Please sign in to comment.