Using configuration templates helps simplify the configuration and enterprise-wide
      deployment of SkyVault Outlook Integration.
  
  
  
Template format
       The configuration template is an XML file with a defined format.
    
      XML configuration file format
| XML element path | Description | 
|---|---|
| Settings | Root-element | 
| settings.server | SkyVault server configuration:
                  
  | 
              
| settings.general | General settings:
                  
  | 
              
| settings.logging | Logging settings:
                  
  | 
              
| settings.storage | Standard archiving settings:
                  
  | 
              
| settings.search-properties | Parent element for the search parameters of the folder search | 
| settings.explorer-search-properties | Parent element for the search parameters of the search from SkyVault Explorer | 
| settings.[search-properties|explorer-search-properties].search-property | Parent element for a search parameter | 
| settings.[search-properties|explorer-search-properties].search-property.name | Model name of the SkyVault property used for the search (for example, cm:description or cm:author)
                   Note: cm:name does not require any configuration.  cm:name is a standard search parameter that is always displayed. 
 | 
              
| settings.[search-properties|explorer-search-properties].search-property.type | Type for the validation of entries.  The following types are supported:
                  
  | 
              
Example
          
<?xml version=“1.0“ encoding=“utf-8“?> 
 <settings>
   <general isSitesRoot="true“
   sitesExploreMode="default"
   mailNameDisplayPattern="#subject (#from)" 
   helpEngUrl="http://URL/directory/Operating- manual_E-Mail-Manager_EN.pdf"
   helpGerUrl="http://URL/directory/Bedienungsanleitung_E-Mail-Manager_DE.pdf" />
   <server url=“http://localhost:8080“ SkyVaultUrl=“alfresco“ shareUrl=“share“ 
   webApp=“0“ user=“test“ password=““ ntlm=“false“/>
   <logging maxFileSize="0" minLevel="info" />
   <storage storeFiles=“false“ metadata=“false“ storeMsg=“true“ storeLink=“false“></storage> 
   <explorer-search-properties>
   <search-property>
   <name>cm:name</name>
   <label-en>Name</label-en>
   <label-de>Name</label-de>
   <type>string</type>
   </search-property>
   </explorer-search-properties>
   <search-properties>
   <search-property>
   <name>cm:name</name>
   <label-en>Name</label-en>
   <label-de>Name</label-de> 
   <type>string</type> 
   </search-property> 
   </search-properties>
 </settings>