Archive Explorer To

From EnterpriseVaultFaq.com - Wiki

Jump to: navigation, search


In Archive Explorer, the "Sent Items" Folder default is to display the "TO:" Field.

Unfortunately, this is not true in subfolders, or PST Imported Sent Items folders.

If you want to display AE TO: field on EVERY folder, you can hack it like this:

(Tested on EV 7.5, SP4)


Backup/Copy "/EnterpriseVault/WebApp/ArchiveExplorer.asp"
Open up "/EnterpriseVault/WebApp/ArchiveExplorer.asp"

Search for:

if (ArchiveFolderType = "9") then
  ' Sent Items needs To etc.
  objIndexSearch.AddAdditionalResultsProperty(dviePropRecipientToInfo)
else					
  ' Inbox needs Auth etc.				
  objIndexSearch.AddAdditionalResultsProperty(dviePropAuthor)
end if

Replace with:

'if (ArchiveFolderType = "9") then
  ' Sent Items needs To etc.
  objIndexSearch.AddAdditionalResultsProperty(dviePropRecipientToInfo)
'else					
  ' Inbox needs Auth etc.				
  objIndexSearch.AddAdditionalResultsProperty(dviePropAuthor)
'end if

VoilĂ ! TO: and FROM: fields in all folders ;)

Keep in mind that you need to modify this file again after you have installed a Service Pack.
Modified files in /WebApp/ get overwritten by ServicePack installation!