Forum Discussion
Mike Parsons
Feb 22, 2018Copper Contributor
Retention and archive policies in exchange
I'm working with a customer who has a couple of Macs, and I've discovered that the Mac Outlook client does not behave the same as the windows client.
That said, I want to deploy two archiving/retention policies-- one for Mac users and one for Windows.
Here is what I want to have in place.
Need to customize archiving and retention policies for two different groups. One has a Mac with latest office downloaded from O365 enterprise E3. Want to set retention/archiving for Mac group so that emails are never archived and all email never deleted. Second group has PCs (either Win 7 or win 10 professional). Want forced archiving for this group for all messages over 2 years old and forced deletion of all emails over 7 years old unless legal hold is in place.
Anybody have any thoughts. The two issues I've found are making sure the policy is correctly deployed to the Mac user while using the Mac Outlook client and being able to edit the preset times to allow for a "seven year" period rather than either "five years" or never.
Any thoughts?
Thanks. Mike Parsons, CISSP, Senior Security Architect, Techgardens.
5 Replies
Sort By
- Andrew CowanCopper Contributor
I also have a similar issue and I don't think it is resolved by the replies so far. I would like to apply a deletion policy of all email over 2 years old unless they have been flagged with a retention policy for longer. My understanding is that retention takes priority over deletion so this should be possible. In the WIndows client you can flag the mails or folders with a label that marks the emails for retention - I would like my users to go through and flag everything they need to retain before i do a big central deletion purge. BUT... I can't find anywhere to set labels on the Mac client - Is it possible or is the only answer to push them in to OWA. Any help would be gratefully received.
Thanks
Andrew
The rules of retention are that an explicit tag always takes precedence over an implicit. In this context, the default tag in a mailbox retention is implicit because it applies if no other tag controls an item. So, you can have a default tag to remove items after two years and that will clean up your mailbox as you want. To get the explicit retention, you apply folder retention tags or personal tags. Folder tags can be assigned to default folders like the Inbox, Sent Items, etc. Personal tags (which could have a much longer retention period) an be assigned to any item or folder. You can certainly do this with OWA or Outlook for Windows by applying a policy to an item or folder. I need to check an Outlook for Mac client.
I had a look at Outlook for Mac and couldn't find a way to apply a personal tag, which is what you want to do.
My suggestion is that you create and assign retention policies to the mailboxes and then ask users to log in with OWA to mark the items they want to keep with personal tags. The easiest way for them to do this is to create folders and assign the tags to the folders. Any items placed in the folders will inherit the personal tag and be retained for the desired period. The default tag in the policy will then clean up items in any other folder once they reach two years old.
The policies act server-side, so the client used should not be an issue. You cannot target users based on the type of client they use though, you will have to manually specify to which users the first policy will apply and to which the second one.
To build on what Vasil says, you could mark the mailboxes for the Mac users with a custom attribute and use that to determine what retention policy to apply. For example, here's how to set an attribute:
Set-Mailbox -Id MyMacUser -CustomAttribute15 Mac
And now, to apply it:
Get-Mailbox -RecipientTypeMailbox Usermailbox -Filter {CustomAttribute15 -eq "Mac"} | Set-Mailbox -RetentionPolicy MacRetentionPolicy
Simple...