Customizing the OnePlaceMail Personal Folder 

The - Favorites - folder in Outlook can be customized to have a different name and URL.


Property 

Mandatory / Optional

Description

action

Mandatory

Set to "insert" to change the default behavior

Set to "delete" to revert to default behavior

folderURL

Optional

Text for the URL of the website

folderName

Optional

Text for the name of the folder

Example: Set the homepage URL to http://oneplacesolutions.com and the folder name to "SharePoint Folders".

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <outlook>
        <rootOnePlaceMailFolder action="insert" folderName="SharePoint Folders" folderURL="http://www.oneplacesolutions.com"/>
    </outlook>
</configuration>

 

Example: Reverting the My OnePlaceMail folder back to the default settings.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <outlook>
        <rootOnePlaceMailFolder action="delete"/>
    </outlook>
</configuration>

 

Customizing the -OnePlaceMail - (Recovered Files) Folder Name

 

The name of the Recovered Files folder defaults to - OnePlaceMail (Recovered Files) - This can be modified

Property

Mandatory / Optional

Description

action

Mandatory

Set to "insert" to change the default behavior

Set to "delete" to revert to default behavior

folderName

Mandatory

Text for the name of the folder

Example: Set the folder name to "SharePoint Recovered Files"

<?xml version="1.0" encoding="UTF-8"?> 
<configuration>
    <outlook>
        <recoveredFilesFolder action="insert" folderName="SharePoint Recovered Files"/>
    </outlook>
</configuration> 

 

Example: Reverting the  OnePlaceMail (Recovered Files) folder back to the default settings

<?xml version="1.0" encoding="UTF-8"?> 
<configuration>
    <outlook>
        <recoveredFilesFolder action="delete"/>
    </outlook>
</configuration>