How to Add Rules to a Shared Mailbox in Outlook Web App (OWA)
Managing shared mailboxes in Microsoft 365 often requires automated email handling. While rules are straightforward for user mailboxes, adding them to a shared mailbox in Outlook Web App (OWA) requires specific steps. This guide provides a practical, actionable method for delegated users or IT administrators.
Prerequisites
- Permissions: You must have Full Access and Read/Write permissions to the shared mailbox. These are typically granted via the Exchange admin center (EAC) or PowerShell.
- OWA Access: Ensure you can log in to OWA with an account that has the necessary permissions.
Step-by-Step Instructions
-
Open the Shared Mailbox in OWA
- Log in to Outlook Web App with your Microsoft 365 credentials.
- Click on your icon or initials in the top right, and choose Open another mailbox
-
Access the Rules Settings
- Click the Settings gear icon (⚙️) in the top-right corner.
- Navigate to Email > Rules.
-
Add a New Rule
- Click Add new rule.
- Name your rule (e.g., “Move Support Emails”).
- Under Add a condition, choose criteria like “From contains” or “Subject includes”.
- Under Add an action, select what to do (e.g., “Move to folder”).
- Click Save.
-
Verify the Rule
- Send a test email to the shared mailbox matching your rule conditions.
- Check if the email is processed as expected (e.g., moved to the specified folder).
Important Notes for IT Admins
- Rule Scope: Rules apply only to emails arriving after the rule is created. Existing emails are not affected.
- Limitations: OWA rules for shared mailboxes are client-side and may not work if the mailbox is accessed via Outlook desktop without a cached profile.
- PowerShell Alternative: For bulk or complex rules, use the
New-InboxRule cmdlet in Exchange Online PowerShell. Example:
powershell
New-InboxRule -Mailbox shared@contoso.com -Name “Move Support” -From “support@domain.com” -MoveToFolder “SharedMailbox\Support”
Troubleshooting Common Issues
- Rule not saving: Ensure you have Full Access and Read/Write permissions. Re-add the shared mailbox if needed.
- Rule not triggering: Check that conditions are correctly set and the rule is enabled. Also, verify the shared mailbox is not in litigation hold or archive mode.
Conclusion
Adding rules to a shared mailbox in OWA is a simple process once you have the correct permissions. This method is ideal for quick, ad-hoc automation without needing PowerShell. For enterprise-scale management, consider scripting rules via Exchange Online PowerShell for consistency and auditability.
Pro tip: Document all rules applied to shared mailboxes to simplify troubleshooting and future migrations.