Add new Outlook/Microsoft SMTP error codes from production data#97
Draft
juenology wants to merge 1 commit intoActiveCampaign:mainfrom
Draft
Add new Outlook/Microsoft SMTP error codes from production data#97juenology wants to merge 1 commit intoActiveCampaign:mainfrom
juenology wants to merge 1 commit intoActiveCampaign:mainfrom
Conversation
This commit adds 7 new SMTP error codes observed in production email traffic to Microsoft/Outlook domains: 450 codes: - 4.7.0: Message not proxied - 4.7.1: Unable to Relay (ATTR14) 451 codes: - 4.4.3: Temporary server error (ATTR18) - 4.4.22: Message failed to be replicated (no healthy peers) - 4.7.700: PFA agent busy 451 updates: - 4.7.0: Updated description to include PRX2/PRX3/PRX10 variations 550 codes: - 5.7.515: Authentication level not met (NEW - high severity) The 550 5.7.515 error is particularly significant as it represents Microsoft's 2024-2025 enforcement of stricter email authentication requirements (SPF/DKIM/DMARC). This error accounted for 88% of Microsoft deferrals in our production analysis of 7,484 errors. All error codes follow the established JSON schema and include appropriate severity levels and descriptions.
Contributor
|
This project seems dead as the maintainers seem to have left the company. I've since created a vendor-neutral replacement, if you'd like to add your contributions there? -> https://github.com/fm/smtp-codes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add New Outlook/Microsoft SMTP Error Codes
Summary
This PR adds 7 new SMTP error codes for Microsoft/Outlook that were discovered through analysis of production email traffic. These codes are not currently documented in the SMTP Field Manual but are actively being returned by Microsoft's email infrastructure.
Data Source
The error codes were aggregated from 7,484 Microsoft/Outlook SMTP deferrals observed in production marketing email traffic during October 2025. The data has been sanitized following the contribution guidelines (no personal information, no unique server identifiers).
New Error Codes Added
450 (Temporary Failures)
450 4.7.0 - Message not proxied
450 4.7.1 - Unable to Relay. ATTR14
451 (Temporary Failures)
451 4.4.3 - Temporary server error (ATTR18)
451 4.4.22 - Message failed to be replicated: no healthy peers found
451 4.7.700 - PFA agent busy
451 (Updated Description)
550 (Permanent Failures) - CRITICAL
Why These Codes Matter
High Impact Errors
The two most frequently occurring errors (451 4.7.0 and 550 5.7.515) together represent 99.3% of all Microsoft deferrals in our dataset:
Microsoft's Authentication Enforcement
The 550 5.7.515 error is particularly important as it represents Microsoft's relatively recent (2024-2025) stricter enforcement of email authentication standards. Senders seeing this error must ensure their:
This error will become increasingly common as Microsoft continues to enforce these requirements.
Testing
smtp;CODE STATUS Message)Documentation Followed
This PR follows the contribution guidelines at https://smtpfieldmanual.com/contribute:
Impact
This contribution will help email developers and administrators:
Data Analysis Source: Analysis of 7,497 production SMTP deferrals from October 2025
Contributor: Mary-Juen Sohn (@juenology)