In SQL Server Management Studio, execute the following query:
Use ArchiveManager
SELECT M.Name, L.LoginName, L.DisplayName, L.EmailAddress FROM Login AS L WITH (NOLOCK)
JOIN MailBox AS M WITH (NOLOCK) ON L.LoginID = M.OwnerLoginID
Note: Replace ArchiveManager with the name of the Archive Manager database in the environment should it be different.