- Knowledge base
- Users
- General
-
Security updates
-
Product news
-
Next-Gen Vulnerability Management
-
Getting started
-
General
-
Operating status
-
System & Network Security
-
Web Application Security
-
Cloud Security
-
API Security
-
Phishing Simulation & Awareness Training
-
Attack Surface Management
-
Scanner Appliance
-
Device Agent
-
On-premise platform deployment
-
Asset management
-
Vulnerability Manager
-
Reports
-
Digest reports
-
Organizer
-
Continuous monitoring
-
Integrations
-
Platform API
-
Remediation
-
Users
-
PCI DSS ASV scans
-
Partner Portal
-
Terms & conditions
-
Dashboard
How to Check If Plus Addressing Is Enabled in Microsoft 365?
If you use Microsoft 365 (Exchange Online), here’s how you can check if plus addressing is active for your environment:
1. Open PowerShell and install the module
Run the following command:
Install-Module ExchangeOnlineManagement -Scope CurrentUser
Then connect to Exchange Online:
Connect-ExchangeOnline -UserPrincipalName yourname@yourdomain.com
2. Check the setting:
Get-OrganizationConfig | Format-List DisablePlusAddressInRecipients
If the output is:
DisablePlusAddressInRecipients : False
You’re good — plus addressing is active!
If it says True, an Exchange Online admin can enable it with:
Set-OrganizationConfig -AllowPlusAddressInRecipients $true