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
Message author and recipients filters for custom filtering
To match message sender ("From" address) and recipient addresses ("To", "cc", "Bcc" and "Undisclosed" addresses), you can use the message attributes <AUTHOR> </AUTHOR> and <RECIPIENTS></RECIPIENTS>; in the ruleset file outline, message attributes are shown as:
<message_attribute>...</message_attribute>
Note:
Matching attribute values is case-insensitive.
You can specify the actual addresses to match as SMTP email addresses, display names or SMTP domains using the following XML elements (these are represented by the <attribute_value> lines in the ruleset file outline):
<EA>name@domain</EA>
This form can be used to specify SMTP addresses. The value specified must be the complete SMTP email address; if the value specified here is only part of an address, the message will not match. Wildcard characters cannot be used.
If the ampersand character (&) is included in an SMTP address, the character must be replaced with
&
because & is a special character in XML. For example, the SMTP address admin&finance@ourcompany.com should be specified in the XML file as:
admin&finance@ourcompany.com
<DISPN>display name</DISPN>
This form can be used to specify display names. As with the SMTP address, the value must be the full display name, without wildcard characters. As display names can take many different forms, it is advisable to include a filter for the associated SMTP address.
An example display name for Domino server messages is:
<DISPN>Kevin Smith/exampleorg</DISPN>
To match all required messages, ensure that you include all possible variations for a display name. If Organizational Units are included in display names, these must also be specified. For example,
<DISPN>Kevin Smith/Sales/exampleorg</DISPN>
<DOMAIN>exampledomain.com</DOMAIN>
This form can be used to specify SMTP domains. The value specified can be the full domain or a subdomain. For example, if the following domain value is specified:
<DOMAIN>ourcompany.com</DOMAIN>
The following addresses will match:
john.doe@ourcompany.com
jack.doe@hq.ourcompany.com
jane.doe@uk.hq.ourcompany.com
but the following address will not match:
john.doe@hqourcompany.com
<DL>distribution list name</DL>
Use this form when you want to match messages that have been sent to any members of the specified distribution list or group. For example, if a rule contains the following line:
<DL>ALL SALES</DL>
Then messages sent to any member of the distribution list or group called ALL SALES will match, irrespective of whether the member's name is shown as the Display Name or SMTP address on the message.
The following example shows how you can specify a simple rule to archive and set the retention category "Legal" on any messages sent from anyone in the domain, ourcompany.com, with legal@ourcompany.com or the Notes user, Greg Court, in the recipient list:
<RULE ... ACTION='ARCHIVE_ITEM' RETENTION='legal'> <AUTHOR> <DOMAIN>ourcompany.com</DOMAIN> </AUTHOR> <RECIPIENTS> <EA>legal@ourcompany.com</EA> <DISPN>Greg Court/ourorg</DISPN> </RECIPIENTS> </RULE>
The attribute value operators, INCLUDES= and ALLOWOTHERS=, enable you to define complex filters.