0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Exchange Online TERRL – External Recipient Limit & How to Manage It

Posted at

Microsoft Exchange Online Tenant Outbound Email Limits.

Introduction

Microsoft has introduced the Tenant External Recipient Rate Limit (TERRL) in Exchange Online to enhance security and reduce spam, phishing, and compromised account abuse.

Starting January 2025, this change applies to all Microsoft 365 tenants, affecting how many external recipients can receive emails per tenant per day.

This update ensures that a single compromised account or misconfigured app cannot send mass emails that might harm your organization’s domain reputation.

What Is the Tenant External Recipient Rate Limit?

The Tenant External Recipient Rate Limit (TERRL) is a per-tenant daily cap on the number of unique external recipients who can be emailed.

Key Details

  • Applies at the tenant level, not per mailbox.
  • External recipients mean addresses outside your Microsoft 365 tenant.
  • Counts unique recipients — sending to the same address twice still counts as 1 recipient.
  • Resets every 24 hours (rolling window).

TERRL Limits

Tenant Type Daily Limit Notes
Standard Production Tenant 10,000 external recipients/day Applies to most paying Microsoft 365 tenants
Trial / Developer / Single License Tenant 5,000 external recipients/day Stricter to prevent abuse
Microsoft 365 Government (GCC/GCCH/DOD) 10,000 external recipients/day Same as standard production

Why This Change Matters

Previously, per-mailbox sending limits existed, but now Microsoft is adding a tenant-wide safeguard.

Benefits include:

  • Preventing mass spam outbreaks if a single account is compromised.
  • Protecting sender reputation so your emails don’t land in spam.
  • Reducing abuse from automated scripts or misconfigured systems.

Impact on Your Organization

You may be affected if:

  • You send newsletters, announcements, or marketing emails directly from Exchange Online.
  • Your workflows involve high-volume automated email notifications.
  • You operate multiple services or departments sending bulk mail within the same tenant.

Example:
If Marketing sends to 8,000 external addresses in the morning and Support sends to 3,000 different external addresses later that day, the second batch will be blocked once the limit is reached.

How to Monitor TERRL Usage

Microsoft provides Exchange Online message trace reports and security logs to track your recipient counts.

PowerShell Command:
powershell
Get-MessageTrace -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) |
Where-Object {$_.RecipientAddress -notlike "*@yourdomain.com"} |
Select-Object RecipientAddress -Unique | Measure-Object

This Helps You Identify

  • Which accounts send the most external emails.
  • Whether you are approaching the TERRL limit.

Best Practices to Stay Under the Limit

  • Spread out large sends – Break large campaigns into smaller daily batches.
  • Use dedicated marketing platforms – Tools like Dynamics 365 Marketing, Mailchimp, or SendGrid don’t consume your TERRL quota.
  • Monitor regularly – Keep an eye on reports and alerts for high-volume senders.
  • Educate staff – Ensure users understand the new limits to avoid accidental disruptions.
  • Segment mailing lists – Avoid blasting everyone at once; prioritize important communications.

Microsoft’s Official Guidance Highlights

TERRL Enforcement Rules

  • TERRL applies to both user-initiated and automated sends.
  • Forwarding rules that send to external recipients also count toward the limit.
  • If the limit is reached, all further external sends are blocked until the 24-hour window resets.
  • Admins can view limit consumption in the Microsoft 365 admin center.

What Happens If You Hit the Limit?

If your tenant reaches the daily TERRL limit:

  • All outbound mail to external recipients is blocked for the remainder of the 24-hour period.
  • Internal mail remains unaffected.
  • The system automatically resumes sending once the quota resets.

Final Thoughts

The new Tenant External Recipient Rate Limit is a security-first change that will help protect organizations from abuse, but it requires better planning for high-volume email scenarios.

If you frequently send large campaigns or notifications, plan your sending schedule, monitor your limits, and consider external marketing tools to avoid disruptions.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?