Veritas Enterprise Vault™ Setting up SMTP Archiving

Last Published:
Product(s): Enterprise Vault (12.1)
  1. About this guide
    1.  
      Introducing this guide
    2. Where to get more information about Enterprise Vault
      1.  
        Enterprise Vault training modules
  2. Introducing Enterprise Vault SMTP Archiving
    1.  
      About Enterprise Vault SMTP Archiving
    2.  
      About SMTP Journaling
    3.  
      About Selective SMTP Journaling
    4.  
      About SMTP Mailbox Journaling
    5.  
      Configuring SMTP Journaling and SMTP Mailbox Journaling
    6.  
      Configuring Selective SMTP Journaling and SMTP Mailbox Journaling
    7.  
      Using Exchange Server to journal messages to Enterprise Vault
  3. Installing SMTP Archiving
    1.  
      About installing Enterprise Vault SMTP Archiving components
    2.  
      Reporting
    3.  
      Monitoring
  4. Configuring SMTP Archiving
    1.  
      Steps to configure SMTP Archiving
    2.  
      Creating archives for SMTP messages
    3. Configuring retention categories and SMTP policies
      1. About X-Headers
        1.  
          About X-Kvs X-Headers
        2.  
          Searching archives for messages with specific X-Headers
    4. Configuring the Enterprise Vault SMTP Servers in the site
      1.  
        Entering the name or IP address of connecting hosts
      2.  
        Obtaining an SSL/TLS certificate
    5. Adding SMTP target addresses
      1.  
        Additional configuration for Selective SMTP Journaling or SMTP Mailbox Journaling
      2.  
        Adding a large number of SMTP target addresses
    6. Adding an SMTP Archiving task
      1.  
        About the SMTP holding folder
      2.  
        Keeping safety copies of archived messages
      3.  
        Task summary reports
  5. Configuring target address rewriting
    1.  
      About target address rewriting
    2.  
      Steps to configure target address rewriting
    3.  
      Adding SMTP target addresses
    4.  
      Adding target address aliases
  6. PowerShell cmdlets
    1.  
      About the PowerShell cmdlets for SMTP Archiving

Adding a large number of SMTP target addresses

The Enterprise Vault Management Shell provides PowerShell cmdlets for performing SMTP Archiving configuration tasks. See the PowerShell Cmdlets guide for more information on all of these cmdlets.

It is likely that you will have a large number of SMTP target addresses to configure for SMTP Mailbox Journaling. To create these target addresses you can use the PowerShell cmdlet, New-EVSMTPTarget. The cmdlet, Set-EVSMTPTarget, lets you update existing targets.

The following list provides an example outline of the process you could use:

  • Use an Active Directory group to hold the users that you are enabling for SMTP Mailbox Journaling.

  • Ensure that archives exist for the users.

  • In Active Directory export details of the users to a csv file.

  • You can import the csv file into PowerShell using the PowerShell Import-csv command. You can then pipe the lines in the file to the New-EVSMTPTarget cmdlet using a 'foreach-object' loop. For example,

    Import-csv smtptargets.csv | foreach-object { New-EVSMTPTarget -SiteId $_.Site -Name $_.Name -PolicyName $_.Policy -RetentionCategory $_.Retention -ArchiveName $_.Archive -ArchiveType $_.ArchiveType}

    For Selective SMTP Journaling or SMTP Mailbox Journaling you need to set the ArchivingEnabled switch to $true, as follows:

    Import-csv smtptargets.csv | foreach-object { New-EVSMTPTarget -SiteId $_.Site -Name $_.Name -PolicyName $_.Policy -RetentionCategory $_.Retention -ArchiveName $_.Archive -ArchiveType $_.ArchiveType -ArchivingEnabled $true}

    See Additional configuration for Selective SMTP Journaling or SMTP Mailbox Journaling.