Error on provisioning report mode
When I run Provisioning in report mode I get this:
---x---
Mailboxes on Exchange Server [SVR-EML-06] that have entries in the Enterprise Vault database but which are not in any provisioning group:
/o=pharmamar/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=mosibi2013 (state = enabled)
/o=pharmamar/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=emenos (state = enabled)
/o=pharmamar/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sbenitez (state = enabled)
---x---
These users doesn't exist anymore. Their AD account was deleted as well as their Exchange mailboxese.
I have opened the MailxBoxEntry table of the EnterpriseVaultDirectory dabase, but they are not there. What can I do?
I'm running EV 9.0.5.
Thanks in advanced and best regards.
//Juan A.
As Andrew and Tony have stated it will be because the entries are in the ExchangeMailboxEntry table in SQL and will need to be removed to stop these errors if the AD Object and Exchange Mailboxes have been removed from the environment.
Use something along the lines of:-
USE EnterpriseVaultDirectory
DELETE FROM ExchangeMailboxEntry
WHERE ExchangeMbxType = '1'
AND PolicyTargetGroupEntryId is NULLThe above will remove any entries from the ExchangeMailboxEntry table that is a normal mailbox (not system or journal) that does not belong to a Provisioning Group.
****** DISCLAIMER ******
TEST THIS IN A NON-PRODUCTION ENVIRONMENT TO ENSURE YOU ARE HAPPY WITH THE RESULTS BEFORE USING IT IN A PRODUCTION ENVIRONMENT
As always it is strongly recommended to ensure you have a full working backup of your SQL DBs before carrying out ANY alterations to the DBs at all to ensure you have a roll back plan.