How can you search mails from someone who left the company. You can't use the "From" button, because the contact isn't in the addressbook anymore. When you use "search after:" then you get thousands of results. You'll get every mail/appointment where this contact was in a distribution list.
Since we are heavily reliant on the Global Address list, you will not be able to locate the user since they've been deleted or hidden:
Here is some information on how to retrieve mail for a user that has been deleted/hidden:
=========================== Need to search mail for user that is Deleted/hidden from Global Address List
Use the following method of searching user mail that is no longer in the global address book in the following steps:
- Open Sql Analyzer - Highlight the EmailXtender Database - Enter the following Query:
SELECT * FROM EmailAddress Where EmailAddress like '%Deleted UserName%'
- Copy the EmailKey returned - Open calculator - Paste the EmailKey into the calculator and convert number to Hex - Enter the Hex Number returned into the Search plugin (Search for words section)
Mail Should be returned ===========================
Another way this could be done is once you get the query results from SQL (as mentioned in Chris Charlton's post) you can get all smtp/Notes/Exchange addresses for the user and search on all the addresses at once instead of multiple searches as described above.
Lets take for example I return the following 2 results from the sql query
EX:"Mark" SMTP:"Mark"
Both of these addresses can be placed in the To, From or Mailbox fields seperated by a semicolon. (The semicolon acts as an OR operator)
we had the same problem. We tried the SQL query. But we didn't find the email. After calling EMC support we found out that you can type the last name of the user in the "Search for the word(s)" field. This returned the emails.
ccharlto
64 Posts
758
1
Posted December 5th, 2007 07:00
Here is some information on how to retrieve mail for a user that has been deleted/hidden:
===========================
Need to search mail for user that is Deleted/hidden from Global Address List
Use the following method of searching user mail that is no longer in the global address book in the following steps:
- Open Sql Analyzer
- Highlight the EmailXtender Database
- Enter the following Query:
SELECT * FROM EmailAddress
Where EmailAddress like '%Deleted UserName%'
- Copy the EmailKey returned
- Open calculator
- Paste the EmailKey into the calculator and convert number to Hex
- Enter the Hex Number returned into the Search plugin (Search for words section)
Mail Should be returned
===========================
Hope this helps