You forward a client email to your personal Outlook address with
you+clientname@domain.com. It vanishes. No bounce. No notification. Just silence — and a growing pile of unsorted messages in your inbox you can’t filter or auto-file. You assumed Outlook handled it like Gmail. It doesn’t.
What It Does
Plus addressing — appending
+tag to the local part of an email address (
you+newsletter@domain.com) — is a routing convention, not a protocol. Outlook itself does
nothing with the
+ portion. It’s the mail server (Exchange Online, Exchange Server, or third-party MTA) that decides whether to accept, split, or ignore it.
In practice: if your organization uses Exchange Online (Microsoft 365), plus addressing is supported
only if your domain’s mail flow rules allow it — and only for inbound delivery. Outlook clients (desktop, web, mobile) treat
you+tag@domain.com as just another address. No auto-foldering. No tagging. No filtering by default. The beauty of this approach is that it shifts intelligence upstream — to transport rules — where it belongs.
How to Set It Up
You don’t configure plus addressing in Outlook. You configure it in the Microsoft 365 admin center —
if you’re an admin. End users cannot enable or disable it from within Outlook.
For admins: go to
admin.microsoft.com > Exchange > Mail flow > Rules. Create a new rule with:
- Apply this rule if: The recipient address includes +any text (use "Header matches text pattern" → .*\+.*@domain.com)
- Do the following: Redirect the message to a specific mailbox or apply a transport header (e.g., X-Plus-Tag: client-support)
- Exceptions: Exclude internal senders, or bypass if sender is in Safe Senders
End users can test it immediately: send mail to
you+test@yourdomain.com from an external account. If it lands, your tenant allows it. If it bounces with "550 5.1.10 RESOLVER.ADR.ExRecipNotFound", plus addressing is blocked at the MTA level.
Configuration Options
Here’s what controls plus addressing behavior — and where each setting lives:
| Setting |
Location |
Applies To |
Default State |
| Plus addressing enabled for domain |
Microsoft 365 admin center > Exchange > Domains > [domain] > DNS records (MX/SPF/TXT) |
Exchange Online only |
Disabled unless explicitly allowed via transport rule |
| Mailbox-level alias with + |
Microsoft 365 admin center > Users > Active users > [user] > Email aliases |
All Outlook clients & OWA |
Not supported — aliases must match RFC 5322 local-part rules; '+' is disallowed |
| Auto-forwarding based on +tag |
Exchange Admin Center > Recipients > Mailboxes > [user] > Mail Flow Settings > Rules |
Exchange Server 2016+, Exchange Online |
Off — must be manually created |
| OWA auto-tagging of +addressed mail |
None — not implemented |
Outlook on the web (all versions) |
N/A — no UI recognition |
| Desktop Outlook rule condition: 'To contains +' |
Home tab > Rules > Manage Rules & Alerts > New Rule > Advanced > "through the specified account" |
Outlook 2016, 2019, Microsoft 365 Apps |
Available — but only works on full address string, not parsed tag |
Real-World Examples
Scenario 1: Vendor tracking without extra accounts
You sign up for cloud backup with Acme Corp using
you+acme@yourdomain.com. Your admin sets a transport rule: "If To header contains
+acme, add header
X-Source: acme-backup." Then in Outlook desktop, create a rule: "Apply category 'Vendor/Acme' if message header
X-Source equals
acme-backup" → auto-files into
Clients/Acme Corp. No forwarding. No aliases. No shared mailbox needed.
Scenario 2: Project-specific replies
Your team uses
you+q3-budget@domain.com when submitting expense reports. A single transport rule routes all
+q3-budget mail to a shared mailbox
finance-q3@domain.com. Team members then use Outlook’s
Ctrl+R to reply — and Outlook preserves the original
+q3-budget in the To field automatically. Replies stay grouped. No manual editing.
Scenario 3: Newsletter triage
You subscribe to five SaaS newsletters. Each gets its own
+tag:
+notion,
+figma,
+stripe, etc. With one Outlook rule (
Home > Rules > Create Rule > Subject or body contains '+notion'), you move all matching messages directly to
Archive/2024/Newsletters/Notion. Works reliably — because the
+ stays visible in the raw To field.
Limitations and Gotchas
Outlook doesn’t parse plus addressing — ever. Not in desktop. Not in OWA. Not in iOS or Android apps. Mobile Outlook treats
you+tag@domain.com as a plain string. It won’t auto-suggest, won’t autocomplete, and won’t warn you if the tag is misspelled.
Exchange Server 2013 and earlier? Plus addressing is blocked by default and requires registry edits to enable — which Microsoft explicitly discourages. Outlook 2013 desktop will accept the address, but Exchange drops it pre-delivery.
Here’s the counterintuitive part:
plus addressing works better when Outlook ignores it. Because Outlook doesn’t try to interpret the
+, there’s no risk of misrouting or truncation. All logic lives where it should — in transport rules, headers, and folder rules — not in the client.
Another gotcha: if your organization uses directory-based edge blocking (like some hybrid Exchange deployments), plus addresses may fail SPF validation unless the sending domain publishes a wildcard SPF record — rare and risky. That’s why most admins avoid it entirely.
Finally: Outlook Web App (OWA) shows the full
you+tag@domain.com in the To field — but if you click the address to open the contact card, it opens
you@domain.com. The
+ vanishes. That’s expected. It’s not a bug. It’s how OWA normalizes display names.
| Symptom |
Cause |
Fix |
Prevention |
| Email sent to +tag address never arrives |
Exchange Online transport rule blocks unknown + patterns |
Admin adds explicit allow rule: "If To matches .*\+.*@domain.com, accept" |
Test with you+test@domain.com before rolling out |
| Mobile Outlook shows you@domain.com instead of you+tag@domain.com in sent items |
iOS/Android app strips +tag during SMTP submission |
Use Outlook desktop or OWA to send tagged emails |
Add a signature footer: "Re: [Project Name] — sent via +project tag" |
| Rule with "To contains +tag" fails on forwarded messages |
Forwarded messages rewrite To: to original sender, not +tag address |
Use "Subject contains +tag" or custom header matching instead |
Always include +tag in subject line for forwarded items |
| Autocomplete suggests you@domain.com even after typing + |
Outlook caches only base address; +tags aren’t stored in nickname cache |
Manually type full address or paste from safe source |
Create Quick Steps for common +tag sends |