I'm trying to add/remove a user form a folders' ACL.
This code works fine on a single folder:
Set oInbox = oSession.GetDefaultFolder(CdoDefaultFolderInbox)
Set oACLObject = CreateObject("MSExchange.ACLObject")
oACLObject.CDOItem = oInbox
Set oACEs = oACLObject.ACEs
How do I change this to do the same for folders under the Outlook Inbox?
Thanks!