Defining a retention plan

If you have previously created a retention plan XML file you can modify that file. If necessary, you can use the EVDominoRetentionPlans.exe tool to extract the existing retention plans from Enterprise Vault to a file that you can edit.

To extract the existing retention plans from Enterprise Vault and save them in the file MyPlans.xml:

EVDominoRetentionPlans.exe -save MyPlans.xml

In the Enterprise Vault program folder there is an example retention plans XML file that you can copy and modify as required. The file is Example RetentionPlans.xml in .

The example file defines retention plans 'All Users' and 'Projects'.

The 'All Users' retention plan does the following:

The 'Projects' retention plan does the following:

The XML file assigns retention plans to provisioning groups as follows:

<?xml version="1.0"?>
<RETENTIONPLANCONFIG>

	<!-- Start of defining retention plans -->
	<RETENTIONPLANS>

		<!-- Start of 'All Users' retention plan -->
		<RETENTIONPLAN NAME="All Users">
			<FOLDER NAME="Retention Folders">
				<FOLDER NAME="Business Records" RETCAT="Business"/>
				<FOLDER NAME="Customer Mails" RETCAT="Customers"/>
			</FOLDER>
		</RETENTIONPLAN>
		<!-- End of 'All users' retention plan -->


		<!-- Start of 'Projects' retention plan -->
		<RETENTIONPLAN NAME="Projects">
			<FOLDER NAME="Retention Folders">
				<FOLDER NAME="Business Records" RETCAT="Business"/>
				<FOLDER NAME="Customer Mails" RETCAT="Customers"/>
				<FOLDER NAME="Projects" ARCHIVENOW="true">
					<FOLDER NAME="Project X" RETCAT="Project X"/>
					<FOLDER NAME="Project Y" RETCAT="Project Y"/>
				</FOLDER>

				<!-- Delete temporary folder 'Test' -->
				<FOLDER NAME="Test" DELETE="true"/>
			</FOLDER>
		</RETENTIONPLAN>
		<!-- End of 'Projects' retention plan -->

	</RETENTIONPLANS>
	<!-- End of defining retention plans -->


	<!-- Assign retention plans to provisioning groups -->
	<PROVISIONINGGROUPS>
		<DOMAIN NAME="ACME">
			<GROUP NAME="Project members" RETENTIONPLAN="Projects"/>
			<DEFAULT RETENTIONPLAN="All Users"/>
		</DOMAIN>
	</PROVISIONINGGROUPS>
	<!-- End of assigning retention plans to provisioning groups -->


</RETENTIONPLANCONFIG>

Note the following: