What Mail-enabled objects are gathered during the Mail-enabled objects gathering?
N/A
During the Default Gathering Messagestats gathers all mail enabled objects including all public folders that have been mail enabled.
Here is a query which can be execute on the MessageStats SQL database that can provide a count of the number of mail enabled objects of each type.
To query the Messagestats database open SQL Management Studio | Right Click the Messagestats Database | New Query | Paste the below SQL statement in the Query window and click execute.
SELECT MailEnabledObjectType = case objecttype
when -2 then 'Not Required'
when -1 then 'Unknown'
when 1 then 'Mailbox'
when 2 then 'Distribution Group'
when 3 then 'Contact/Custom Recipient'
when 4 then 'Public Folder'
when 5 then 'System Mailbox - System Attendent'
when 6 then 'System Mailbox - Directory Services'
when 7 then 'System Mailbox - Public Folder'
when 8 then 'System Mailbox - Other'
END,
count(0) As ObjectCount
FROM T_ExchMailEnabledObjects
GROUP BY ObjectType
ORDER BY ObjectType
N/A