Enterprise Vault™ 为 SMTP 归档设置 Exchange Server 和 Office 365

Last Published:
Product(s): Enterprise Vault (15.1)
  1. 为 Enterprise Vault SMTP 归档解决方案配置 Exchange Server
    1.  
      关于将 Enterprise Vault SMTP 归档用于 Exchange Server 日记记录
    2.  
      步骤摘要
    3.  
      使用 Exchange 命令行管理程序创建远程域
    4.  
      在远程域中创建收件人邮件联系人
    5.  
      为远程域创建发送连接器
    6.  
      设置 Exchange Server 日记记录
    7.  
      设置 Enterprise Vault SMTP 归档服务器时的注意事项
  2. 为 Enterprise Vault SMTP 归档配置 Office 365
    1.  
      关于将 Enterprise Vault SMTP 归档用于 Office 365 日记记录
    2.  
      步骤摘要
    3.  
      在 Office 365 与 Enterprise Vault 发送连接器之间创建连接
    4.  
      设置 Enterprise Vault SMTP 归档服务器时的注意事项
  3. 为 Office 365 电子邮件加密支持配置 Azure RMS 解密功能
    1.  
      关于为 Office 365 电子邮件加密支持配置 Azure RMS 解密功能
    2.  
      步骤摘要
    3.  
      为组织中的日记报告解密配置 IRM 设置
    4.  
      获取 Azure 租户的权限管理配置详细信息
    5.  
      创建表示外部应用程序租户的新服务主体
    6.  
      将服务主体添加到您组织的超级用户列表中
    7.  
      安装 Microsoft Rights Management Services 客户端 2.1
    8.  
      在 Enterprise Vault 中配置受 RMS 保护的邮件的解密
  4. 配置在 Enterprise Vault 中归档的受 MPIP 保护的 Office 365 电子邮件的解密
    1.  
      关于在 Enterprise Vault 中配置 MPIP 解密功能
    2.  
      步骤摘要
    3.  
      在组织中禁用日记报告解密
    4.  
      向 Azure Active Directory 注册应用程序
    5.  
      为应用程序分配所需的权限
    6.  
      上传证书
    7.  
      在 Enterprise Vault 中配置受 MPIP 保护的电子邮件的解密

在组织中禁用日记报告解密

默认情况下,已在组织中启用日记报告解密。因此,附加到日记报告的受保护电子邮件的解密副本将发送到 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