The Dropzone platform can ingest email and phishing alerts from cross-organizational email accounts. If you wish to restrict the access of Dropzone's analysis, you can create a dedicated mail-enabled security group and create an Application Access Policy which restricts access to a finite and enumerated list of mailboxes
In the left sidebar, navigate to Recipients > Groups
Click "Groups"
Click "Add a group"
Add a Group
Select "Mail-enabled security," then click "Next"
Click "Mail-enabled Security"
Name the group something memorable, such as "DropzoneAllowedInboxes," then click "Next"
Assign a group name
Click "+ Assign Owners" and assign your desired owner from the list, then click "Add"
Assign an owner
Click "+ Add Members" and add your desired members. Members will receive all emails sent to this email address, and will be able to send emails to it for Dropzone to analyze
Add group members
In the "Edit Settings" section, create a memorable group email address, such as "[email protected]"
If you want people outside of your organization to be able to send emails to the group, check the box under "Communication"
For added security, you may check the box under "Approval" to require owner permission to join the group
$GroupEmail = "[email protected]"
New-ApplicationAccessPolicy -AppId $AppId `
-PolicyScopeGroupId $GroupEmail `
-AccessRight RestrictAccess `
-Description "Restricts Dropzone to specific inboxes only"```
* To test that Dropzone can only access the desired mailboxes, input the following code:
```Test-ApplicationAccessPolicy -AppId $AppId -Identity "[email protected]"```
```Test-ApplicationAccessPolicy -AppId $AppId -Identity "[email protected]"```
Allowed mailboxes should result in Granted, while denied mailboxes should return Denied
If you have any errors, engage your DropzoneAI support representative.