STATUS
- Defect ID TF00263310 has bee logged for this to be fixed in a future release of Archive Manager.
WORKAROUND
- As a workaround you could find the entry in the MailboxEmailAddress table and manually remove it.
SELECT MEA.*, EA.EmailAddress FROM MailboxEmailAddress MEA
Join EmailAddress EA On MEA.EmailAddressID = EA.EmailAddressID
WHERE MailboxID = x
Verify the email address you want to remove are included in the results above then modify the query below replacing x with the MailboxEmailAddressID from the above query for the address you want to remove.
DELETE FROM MailboxEmailAddress WHERE MailboxEmailAddressID = x
NOTE: Be sure you have the right record on the delete.