Veritas Enterprise Vault™ Setting up Domino Server Archiving
- About this guide
- Setting up Domino mailbox archiving
- Preparation for Domino mailbox archiving
- Configuring Domino targets, tasks and policies in Enterprise Vault
- Adding Domino Server archiving targets
- Configuring mailbox policies for Domino mailbox archiving
- Using customized shortcuts for Domino mailbox archiving
- Configuring desktop policies for Domino mailbox archiving
- Adding a Provisioning Group when setting up Domino mailbox archiving
- Installing Enterprise Vault extensions for Notes and DWA clients
- About Enterprise Vault clients for Notes and DWA clients
- Granting Execution Control List permissions when setting up Notes and DWA clients
- Changes made by EVInstall.nsf when setting up Domino mailbox archiving
- How to edit automatic messages after installing Domino mailbox archiving
- Setting up a Vault Cache for offline users
- Setting up Domino Journaling archiving
- How to configure clients when setting up Domino Journal archiving
- Configuring filtering
- Configuring custom filtering
- Configuring registry settings for Domino custom filtering
- About custom filtering ruleset files
- About controlling default custom filtering behavior
- About the general format of ruleset files for custom filtering
- About rule actions for custom filtering
- About message attribute filters for custom filtering
- About the general format of Custom Properties.xml
- About content categories
- Defining how custom properties are presented in third party applications
Domino named property filters for custom filtering
The <NAMEDPROP> </NAMEDPROP> message attribute enables you to select Domino Server messages for processing depending on the value assigned to specific Domino named properties on the message. Named properties can be single-valued or multi-valued.
In the Notes client, you can view Domino named properties on a message as shown in Figure: Viewing Domino message properties.
To view Domino named properties on a message
- Open the message in the Notes client, then right-click the message.
- Select Document Properties in the menu.
- Select the Fields tab in the dialog box that is displayed.
The property names are listed in the left-hand pane. When you select a property in the left-hand pane, details of that property are displayed in the right-hand pane.
A named property filter takes the following general format:
<NAMEDPROP TAG="Domino_field_name" INCLUDES="operator_value" [ALLOWOTHERS="operator_value"]> <PROP VALUE="value" /> [<PROP VALUE="value" />] </NAMEDPROP>
The value of the TAG attribute is the field name of the property in Domino document properties.
The INCLUDES= operator value can be "ANY", "NONE" or "ALL". You can also use the operator, ALLOWOTHERS=, to create complex filters.
See About creating complex filters using the INCLUDES and ALLOWOTHERS operators.
Each <PROP> line defines a specific value for the property that custom filtering is to use when evaluating messages.
For example, a third party application adds a multi-valued, Domino named property called "Location" to messages. This property identifies the department and location of the sender or recipient. The following example rule shows a filter that matches messages that have the value "Pittsburgh" or "Finance" set for the "Location" property. Any messages that match are archived with the retention category, "Confidential".
<!--Example: Archive items that have Pittsburgh or Finance as values for the Location property --> <RULE NAME="Location rule" ACTION="ARCHIVE_ITEM" RETENTION="Confidential"> <NAMEDPROP TAG="Location" INCLUDES="ANY"> <PROP VALUE="Pittsburgh" /> <PROP VALUE="Finance" /> </NAMEDPROP> </RULE>