Enterprise Vault™ SMTP アーカイブ用の Exchange Server と Office 365 の設定
組織でのジャーナルレポートの復号の無効化
デフォルトでは、組織でのジャーナルレポートの復号は有効です。その結果、保護された電子メールを復号したコピーはジャーナルレポートに添付され、Enterprise Vault SMTP サービスに送信されます。Enterprise Vault では、Microsoft Purview Information Protection (MPIP) で保護された電子メールを復号して、Discovery Accelerator でアイテムをプレビューできるようになったため、保護された電子メールを復号したコピーをジャーナルレポートに添付して送信する必要はなくなりました。
Get-IRMConfiguration cmdlet を使用して、組織内でのジャーナルレポートの復号の Information Rights Management (IRM) 設定を確認します。詳しくは、「Get-IRMConfiguration」を参照してください。
ジャーナルレポートの復号が IRM 設定で有効になっている場合は、次のコマンドを実行して復号を無効にします。
Set-IRMConfiguration -JournalReportDecryptionEnabled $false
詳しくは、「Set-IRMConfiguration」を参照してください。
次の PowerShell コマンドは、Exchange 管理者または Office 365 管理者が実行できます。
コマンド:
#Retrieve the Information Rights Management (IRM) configuration in your organization.
Set-ExecutionPolicy RemoteSigned
$Cred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri
https://ps.outlook.com/powershell/ -Credential $Cred -Authentication Basic - AllowRedirection
Import-PSSession $Session
Get-IRMConfiguration
コマンド:
#Test Information Rights Management (IRM) configuration and functionality.
Test-IRMConfiguration -Sender '<sender email adress>'
コマンド:
#Disable decryption of journal report in your organization
Set-IRMConfiguration -JournalReportDecryptionEnabled $false