-1

I've an Exchange 2010, how can I create a rule and apply it to all users.

The rule must create a folder in each inbox and put the read and delivered notification messages that specified folder.

halfer
  • 19,824
  • 17
  • 99
  • 186
SAIDI Belkacem
  • 338
  • 4
  • 13

1 Answers1

-1

You need a Managed Folder Mailbox Policy. Something like:

New-ManagedFolder -Name "New Folder" -FolderName "New Folder" –DefaultFolderType ManagedCustomFolder 

New-ManagedContentSettings -FolderName "Entire Mailbox" -MessageClass REPORT.IPM.NOTE.IPNRN -Name MoveReceipt -RetentionAction MoveToFolder "New Folder"
smwk
  • 218
  • 2
  • 12