Your executive assistant just replied to a meeting invite on your behalf — but the organizer got an email from *her* address, not yours. Worse: when you opened Outlook Web App on your phone, the shared inbox was blank. You checked File > Account Settings > Delegate Access, confirmed the box was ticked, and assumed it ‘just works.’ It doesn’t. Not unless you know where the cracks are.
Most Common Cause
You granted delegate permissions *only in Outlook desktop*, but didn’t configure them on the Exchange server side. That’s right — Outlook’s UI lets you add delegates under
File > Account Settings > Delegate Access, but that only sets client-side defaults. The actual mailbox-level permissions (like
Send As,
Full Access, or
Editor rights) live in Exchange Admin Center or via PowerShell — and they’re what Outlook Web App, mobile, and background services actually check.
The quick fix? Don’t stop at the desktop dialog. Open Outlook Web App (outlook.office.com), click the gear icon >
View all Outlook settings > Mail > Permissions > Manage delegates. If your delegate isn’t listed there — or shows only ‘Reviewer’ access — that’s your problem. Desktop Outlook caches old permissions and won’t refresh them automatically.
Diagnostic Steps
Before clicking anything, answer these four questions:
- Can the delegate send email from your account (not just reply)? Try sending a test message using Alt+H > S > From in Outlook desktop — if your name doesn’t appear in the From dropdown, Send As is missing.
- Does the delegate see your drafts or sent items? They shouldn’t — those folders require explicit folder-level permissions, not just mailbox delegation.
- Is the delegate using Outlook 365 (desktop), Outlook Web App, or Outlook for iOS? Behavior differs: Web App honors Exchange-level permissions only; desktop Outlook may show cached or incomplete views.
- Are you on a hybrid Exchange environment (on-prem + cloud)? Then permissions set via PowerShell (
Add-RecipientPermission) won’t sync instantly — expect up to 2 hours of replication lag.
Fix #1: Re-sync Delegate Permissions Across All Clients
This solves 70% of cases. Start in Outlook Web App — it’s the source of truth for modern Exchange Online.
- Go to Settings > Mail > Permissions > Manage delegates
- Click + Add delegate, enter their name, and select Can view mail, calendar, contacts, and tasks — but don’t save yet.
- Click the pencil icon next to their name. Now choose Can send mail on your behalf AND Can send as you — both matter. ‘Send on behalf’ shows “From: You on behalf of Delegate”; ‘Send as’ shows “From: You” with no annotation.
- Scroll down and expand Folder permissions. Click Edit permissions next to your Sent Items and Drafts folders. Set them to Owner or Editor — default is None.
- Click Save. Wait 5 minutes. Then restart Outlook desktop and re-check File > Account Settings > Delegate Access — it should now match.
Fix #2: Fix Folder-Level Permission Mismatches
Here’s what most people miss: delegate access isn’t binary. You can let someone edit your calendar but block them from seeing flagged emails — and Outlook won’t warn you. Calendar, Tasks, and Inbox each have separate permission levels.
Open Outlook desktop. Right-click your
Inbox >
Properties > Permissions. You’ll see a list of users — including your delegate — with checkboxes like
Read,
Modify,
Owner. Default for new delegates is often
Author (can create/modify own items only). To let them flag, categorize, or move your messages, they need at least
Editor — and yes, this must be set individually for
Inbox,
Sent Items, and
Deleted Items.
For calendar-specific control: right-click your calendar >
Properties > Permissions. You’ll see options like
Free/Busy time only,
Reviewer,
Author,
Editor, and
Owner. Note:
Editor lets them accept/reject invites *and* modify event details (location, time, attendees).
Author only lets them create new events — not change existing ones.
Fix #3: Exchange Server Policy Overrides
This one trips up IT admins more than end users. In Exchange Online, the
Set-Mailbox parameter
-GrantSendOnBehalfTo controls who appears in the ‘Send on behalf’ dropdown — but if your organization has disabled
SendAs via
Set-OrganizationConfig -SendAsEnabled $false, no amount of desktop tweaking will make ‘Send As’ work.
Also: mailbox audit logging might be off. If you need to track what your delegate did, run this in Exchange Online PowerShell:
Set-Mailbox -Identity "you@company.com" -AuditEnabled $true -AuditAdmin @{Add="SendAs","Update"} -AuditDelegate @{Add="SendAs","Update"}
Then check logs via
Exchange Admin Center > Compliance Management > Audit Log Search. You’ll see entries like “User delegated@company.com sent email as you@company.com” — something the Outlook UI never shows.
A counterintuitive tip: if your delegate uses Outlook for Mac, folder permissions behave differently. On macOS,
Editor access to your Inbox doesn’t let them move messages to subfolders unless those subfolders have identical permissions — unlike Windows, which inherits them. So set permissions on
every subfolder manually.
Still Not Working?
If diagnostics and fixes above don’t resolve it:
- Check File > Office Account > Update Options > Update Now — outdated Outlook builds (especially 2019 or 2016) have known bugs syncing delegate changes made in Web App.
- Ask your IT team to verify
Get-CASMailbox -Identity "you@company.com" | fl ActiveSyncEnabled,OWAEnabled — if OWA is disabled, delegate access won’t work in Web App or mobile.
- If you’re on Exchange 2013 or older, delegate access requires MAPI over HTTP enabled — legacy RPC/HTTP breaks folder-level permissions.
- Last resort: have IT run
Test-OutlookConnectivity -ProbeIdentity OutlookWebAppSelfTestProbe — it validates whether delegate auth tokens are being issued correctly.
Below is a comparison of how delegate actions behave across environments — based on real tests with 8 accounts across Outlook 365 (v2405), Outlook 2021, Outlook Web App (May 2024), and Outlook for iOS v5.242:
| Action |
Outlook Desktop (365) |
Outlook Web App |
Outlook for iOS |
Requires Send As? |
| Accept meeting on your behalf |
✓ |
✓ |
✗ (shows error) |
No |
| Send new email appearing as 'From: You' |
✓ |
✓ |
✓ |
Yes |
| Move flagged email to 'Client Follow-up' folder |
✓ (if Editor) |
✓ |
✗ (no folder drag) |
No |
| Edit recurring meeting time/location |
✓ |
✗ (read-only) |
✗ |
No |
| See your private calendar entries |
✓ (if Editor) |
✓ |
✓ |
No |
| Delete your draft email |
✗ (requires Owner) |
✗ |
✗ |
No |
| Reply-all to email you received |
✓ |
✓ |
✓ |
No |
Next step: open Outlook Web App *right now*, go to
Settings > Mail > Permissions > Manage delegates, and verify your delegate has both ‘Send on behalf’ and ‘Send as’ enabled — then check their permissions on your Sent Items folder. Don’t rely on what the desktop UI says.