diff --git a/powershell/public/cisa/exchange/Get-MtExo.ps1 b/powershell/public/cisa/exchange/Get-MtExo.ps1 index 86f1d254..9bd0255d 100644 --- a/powershell/public/cisa/exchange/Get-MtExo.ps1 +++ b/powershell/public/cisa/exchange/Get-MtExo.ps1 @@ -41,24 +41,25 @@ function Get-MtExo { ### - add them to the hashtable below ### - confirm the command's return type is in OutputType (e.g. (Get-AcceptedDomain).GetType().Name) $commands = @{ - "AcceptedDomain" = "Get-AcceptedDomain" - "RemoteDomain" = "Get-RemoteDomain" - "TransportConfig" = "Get-TransportConfig" - "TransportRule" = "Get-TransportRule" - "OrganizationConfig" = "Get-OrganizationConfig" - "DkimSigningConfig" = "Get-DkimSigningConfig" - "SharingPolicy" = "Get-SharingPolicy" - "DlpComplianceRule" = "Get-DlpComplianceRule" - "DlpCompliancePolicy" = "Get-DlpCompliancePolicy" - "MalwareFilterPolicy" = "Get-MalwareFilterPolicy" - "HostedContentFilterPolicy" = "Get-HostedContentFilterPolicy" - "AntiPhishPolicy" = "Get-AntiPhishPolicy" - "SafeAttachmentPolicy" = "Get-SafeAttachmentPolicy" - "SafeLinksPolicy" = "Get-SafeLinksPolicy" - "ATPBuiltInProtectionRule" = "Get-ATPBuiltInProtectionRule" - "EOPProtectionPolicyRule" = "Get-EOPProtectionPolicyRule" - "ATPProtectionPolicyRule" = "Get-ATPProtectionPolicyRule" - "ProtectionAlert" = "Get-ProtectionAlert" + "AcceptedDomain" = "Get-AcceptedDomain" + "RemoteDomain" = "Get-RemoteDomain" + "TransportConfig" = "Get-TransportConfig" + "TransportRule" = "Get-TransportRule" + "OrganizationConfig" = "Get-OrganizationConfig" + "DkimSigningConfig" = "Get-DkimSigningConfig" + "SharingPolicy" = "Get-SharingPolicy" + "DlpComplianceRule" = "Get-DlpComplianceRule" + "DlpCompliancePolicy" = "Get-DlpCompliancePolicy" + "MalwareFilterPolicy" = "Get-MalwareFilterPolicy" + "HostedContentFilterPolicy" = "Get-HostedContentFilterPolicy" + "HostedConnectionFilterPolicy" = "Get-HostedConnectionFilterPolicy" + "AntiPhishPolicy" = "Get-AntiPhishPolicy" + "SafeAttachmentPolicy" = "Get-SafeAttachmentPolicy" + "SafeLinksPolicy" = "Get-SafeLinksPolicy" + "ATPBuiltInProtectionRule" = "Get-ATPBuiltInProtectionRule" + "EOPProtectionPolicyRule" = "Get-EOPProtectionPolicyRule" + "ATPProtectionPolicyRule" = "Get-ATPProtectionPolicyRule" + "ProtectionAlert" = "Get-ProtectionAlert" } diff --git a/powershell/public/cisa/exchange/Test-MtCisaDkim.ps1 b/powershell/public/cisa/exchange/Test-MtCisaDkim.ps1 index f6d8146a..f37a0a5f 100644 --- a/powershell/public/cisa/exchange/Test-MtCisaDkim.ps1 +++ b/powershell/public/cisa/exchange/Test-MtCisaDkim.ps1 @@ -26,7 +26,7 @@ function Test-MtCisaDkim { return $null } - $signingConfig = Get-MtExo -Request kimSigningConfig + $signingConfig = Get-MtExo -Request DkimSigningConfig $acceptedDomains = Get-MtExo -Request AcceptedDomain <# DKIM record without key for parked domains $sendingDomains = $acceptedDomains | Where-Object {`