- June 2022
- Engineering Memo · External Release
Google Postmaster Tools is the only data source that gives senders a direct window into how Gmail's internal systems classify their traffic. Every other deliverability signal — seed testing, engagement rate segmentation, FBL complaint data — is an inference. Postmaster Tools is the actual measurement from inside Gmail. Using it correctly requires understanding what each data point measures, how to read the difference between IP reputation and domain reputation signals, and what actions each signal implies.
This note is a practical operator's guide to Postmaster Tools — what each section shows, how to interpret the data correctly given its known limitations, how IP reputation and domain reputation interact, and what monitoring discipline produces useful operational insight from the tool.
The Two Reputation Signals: What Each Measures
Postmaster Tools provides two distinct reputation classifications: Domain Reputation and IP Reputation. They are not the same signal measured differently — they represent fundamentally different things about how Gmail views a sending environment.
Domain Reputation reflects Gmail's assessment of the authenticated sending domain — the organizational domain (eTLD+1) from which DMARC-aligned DKIM or SPF authentication passes. This is the primary signal in Gmail's classification model for long-term inbox placement decisions. It is cumulative, built over months and years of sending history, and tied to the domain regardless of which IP address or infrastructure delivers the mail. A domain with High reputation that migrates to new infrastructure retains its High reputation. A domain with Low reputation that migrates to new infrastructure carries Low reputation with it.
IP Reputation reflects Gmail's assessment of the specific IP address delivering a given message. It is built from a shorter history window than domain reputation, and it functions more as a short-term modifier than as the primary classification driver. A new IP with no history gets evaluated with increased scrutiny regardless of the domain reputation — which is why IP warming matters even for domains with strong reputation. An established IP with clean history gets a small positive modifier in the classification model.
The interaction: domain reputation determines the baseline classification for a sender's traffic. IP reputation modifies that baseline in the short term. A domain with High reputation sending from a new, unwarmed IP will experience somewhat elevated spam classification during the warmup period, but the strong domain reputation prevents the new IP from causing severe placement problems. A domain with Low reputation sending from a well-established, clean IP will still experience poor inbox placement — the IP modifier cannot overcome a genuinely poor domain reputation score.
Figure 1 — Domain vs. IP Reputation Interaction: Expected Inbox Placement Outcomes
The asymmetry is important: High domain + new IP = mostly inbox. Low domain + good IP = mostly spam. Domain is the dominant signal.
Reading the Postmaster Tools Interface
Postmaster Tools organizes data across several sections. Understanding what each section measures and what it does not measure is essential for interpreting the data correctly.
Dashboard — Spam Rate. This shows the percentage of messages delivered to Gmail addresses that were marked as spam by the recipient (via the "Report Spam" button or moving to the spam folder). The data has a 24–48 hour lag and is displayed as a daily graph. The spam rate graph is the most granular diagnostic view in Postmaster Tools — spikes can often be correlated with specific campaigns by comparing spike dates with send dates. Gmail's threshold for triggering delivery restrictions is 0.10%; 0.30%+ indicates severe reputation damage. Note: Gmail calculates this against messages that actually reached users, not against total sent volume, so the denominator is different from what an operator might expect.
Domain Reputation. Four-tier classification (High, Medium, Low, Bad) updated daily. This is the aggregate view of how Gmail classifies the sending domain overall. Changes in domain reputation tier typically lag behind the underlying signal changes by 2–7 days, making this a trailing indicator relative to the spam rate graph. Monitor trend direction over 7-day windows rather than reacting to single-day fluctuations.
IP Reputation. Same four-tier classification but for each sending IP address. To view IP reputation, the IP must be registered in Postmaster Tools separately from the domain registration. IP reputation typically takes 4–8 weeks of sending history to establish a classification — new IPs frequently show "No data" or "Whitelisted" states, which means insufficient sending history rather than confirmed positive reputation.
Authentication. Shows the percentage of messages passing DKIM, SPF, and DMARC authentication checks over the selected time period. This section is essential for detecting authentication failures. An authentication pass rate below 98% for any method indicates a configuration problem affecting a portion of the sending stream — which may not be visible from the MTA's own authentication reporting, since the MTA only knows about messages it signed, not about messages from other sources sending as the same domain.
Delivery Errors. Shows error codes and counts for messages rejected by Gmail. This section reveals whether Gmail is actively rejecting messages with 5xx codes, what the rejection reason codes are, and what volume is affected. It is the Postmaster Tools equivalent of the MTA accounting log's SMTP response tracking, from Gmail's side of the connection.
Table 1 — Postmaster Tools sections: what each measures and its update frequency
| Section | What it measures | Update lag | Action threshold |
|---|---|---|---|
| Spam Rate | % of delivered messages marked spam by Gmail users | 24–48 hours | Investigate >0.08%; urgent >0.10% |
| Domain Reputation | Gmail's aggregate classification of the sending domain | 24–48 hours | Alert on any downward tier change |
| IP Reputation | Gmail's classification of each registered sending IP | 24–48 hours | Alert on Low or Bad; investigate Medium |
| Authentication | DKIM/SPF/DMARC pass rates across all sources | 24–48 hours | Investigate any rate below 98% |
| Delivery Errors | Gmail-side rejection codes and volumes | 24–48 hours | Any 550 5.7.x code → investigate immediately |
The Volume Threshold Problem
Postmaster Tools only displays data for domains and IPs that send a minimum volume of messages to Gmail addresses per day. The exact threshold is not publicly specified, but practical experience suggests approximately 100–200 messages per day for domain reputation data and 500–1,000 per day for IP reputation data to appear consistently. Below these thresholds, sections show "Not enough data" — which is not confirmation of good reputation, only confirmation of insufficient volume for classification.
This threshold creates a specific problem for senders who have paused or reduced sending: a domain that was at High reputation and then pauses sending for several weeks may show "Not enough data" when sending resumes. Operators who interpret this as a reputation reset will be surprised when they resume full volume and the existing reputation signals re-emerge — including any accumulated negative signals from before the pause. The pause creates a data gap, not a reset.
For senders who send at volume periodically (weekly or biweekly campaigns) rather than continuously, Postmaster Tools may show "No data" on days without sends. This is expected behavior. Reviewing the data on or immediately after send days provides the most useful signal. The 7-day and 30-day view options in Postmaster Tools help smooth out the gaps from non-send days.
Using Postmaster Tools for Root Cause Analysis
Postmaster Tools is most valuable when used proactively — reviewing it before and after every campaign, not just when a problem is already visible. Reactive use — checking Postmaster Tools only when delivery rate has already declined — means the problem has been developing for weeks before investigation begins. Proactive use catches it in the early signal phase.
The daily monitoring workflow: open Postmaster Tools first thing each morning before the day's campaigns begin. Check domain reputation classification — has it changed tier? Check the spam rate graph for the previous 24–48 hours — any spike that corresponds to yesterday's sends? Check authentication for any reduction in pass rates. If all three are stable, proceed with the day's campaign schedule. If any show anomalies, investigate before sending.
The root cause workflow when a spam rate spike is visible: (1) identify the date of the spike from the graph; (2) list all campaigns sent in the 48 hours before the spike (accounting for Postmaster Tools data lag); (3) for each campaign, identify the list segment, acquisition source, and suppression status; (4) check FBL complaint data for the same date to see which recipients complained; (5) cross-reference complainants with list segment to identify the problematic source. This five-step process typically identifies the root cause within 2–4 hours and provides the information needed to prevent recurrence.
Postmaster Tools API Access for Automated Monitoring
Google provides a Postmaster Tools API that allows programmatic access to domain reputation, spam rate, and delivery error data. Integrating this API into a monitoring system enables automated alerting when thresholds are crossed — sending an immediate alert when spam rate exceeds 0.08%, or when domain reputation drops a tier, without requiring a human to check the Postmaster Tools interface daily.
The API uses OAuth 2.0 authentication with the Postmaster Tools scope. Data is available as daily summaries per domain and per IP, with the same 24–48 hour lag as the Postmaster Tools web interface. The API response format is JSON, making it straightforward to ingest into time-series databases for trend analysis and alerting. Building a Postmaster Tools API integration into infrastructure monitoring is a one-time engineering investment — typically a few days of work — that provides ongoing automated reputation monitoring without manual daily review.
The combination of Postmaster Tools API data with MTA accounting log data provides the most complete deliverability monitoring picture available: the MTA log gives the sender's view of every SMTP interaction, while Postmaster Tools gives Gmail's view of the sender's domain and IP reputation. Discrepancies between the two — for example, the accounting log showing high delivery rates while Postmaster Tools shows declining domain reputation — indicate the inbox-versus-spam-folder gap where placement problems develop invisibly to standard delivery monitoring.
Registering Multiple Domains and IPs
Postmaster Tools supports registering multiple domains and multiple IP addresses within a single account. For senders operating multiple sending domains — separate domains for different brands, traffic types, or international programmes — each domain should be registered separately. Domain reputation data is domain-specific; a single Postmaster Tools account can monitor all registered domains from the dashboard.
Registering sending IPs in Postmaster Tools requires DNS verification that the IP belongs to the registering organization. This is done by adding a TXT record to the PTR (reverse DNS) domain for the IP address. The process is more complex than domain verification and requires control of both the IP address's reverse DNS zone and the Postmaster Tools account. For managed infrastructure, the infrastructure provider typically handles IP registration as part of the onboarding process.
One limitation: Postmaster Tools shows IP reputation at the individual IP level, not at the pool level. An organization with 5 sending IPs in a promotional pool needs to check each IP's reputation separately. In practice, IPs in the same pool, sending to the same Gmail addresses from the same domain, tend to develop similar reputation profiles — but checking each IP individually during reputation events is important, because a single IP in a pool may be the source of a blacklisting or complaint spike that is not yet visible in the pool's aggregate metrics.
The "Whitelisted" Classification: What It Actually Means
Some domains in Postmaster Tools show a "Whitelisted" reputation status rather than High, Medium, Low, or Bad. This classification is routinely misinterpreted as the highest possible reputation status. It is not. Whitelisted in the Postmaster Tools context means the domain has been specifically added to Gmail's whitelist through the Postmaster Tools whitelist request process — a process that is limited to a small number of senders with very high volumes and long-established clean sending histories who apply directly to Gmail's Postmaster team.
Most senders who see "Whitelisted" in their Postmaster Tools account have not actually been added to Gmail's whitelist — they are seeing the classification for a domain that Gmail has not yet assigned to one of the four reputation tiers, typically because the sending volume is below the threshold for classification. The UI displays "Whitelisted" as the default state for unclassified domains in some account configurations. The correct interpretation: a domain showing "Whitelisted" that has not gone through a formal whitelist application process likely has insufficient sending history for classification, not confirmed whitelist status.
Confirming actual whitelist status requires contacting Google's Postmaster team directly. The practical test: a domain with genuine High reputation will show domain reputation data with explicit "High" classification and will have spam rate and authentication data populating the graphs. A domain that shows "Whitelisted" with empty graphs and no data is likely below the volume threshold for classification, not actually whitelisted.
Interpreting Authentication Data in Postmaster Tools
The authentication section of Postmaster Tools shows DKIM, SPF, and DMARC pass rates as percentages over the selected date range. An authentication section showing 100% DKIM pass rate means that all messages reaching Gmail from the registered domain during that period were signed with DKIM and the signature was verified. A rate below 100% indicates that some portion of messages either were not signed or had signatures that failed verification.
A critical nuance: the denominator for the authentication pass rate includes all messages that reached Gmail claiming to be from the registered domain — including messages from unauthorized senders who are using the domain in the From: field without authorization. If the organization's domain is being spoofed by phishing campaigns, those phishing messages appear in the Postmaster Tools authentication data as DKIM failures (because they are not signed with the legitimate key). The DMARC aggregate report data provides the additional context needed to distinguish legitimate-source authentication failures from spoofing-source failures.
SPF pass rate in Postmaster Tools is particularly useful for identifying unauthorized sending sources. If the SPF pass rate is below 95%, it indicates that some messages reaching Gmail from the registered domain are not originating from IPs listed in the SPF record. This could be legitimate sending sources that were not added to the SPF record (a configuration omission), forwarding scenarios (where SPF fails at the forwarding hop), or spoofing. DMARC aggregate reports identify which specific IPs are sending as the domain, making it possible to distinguish these scenarios.
When authentication section data shows a sudden decline in DKIM pass rate — from 98% to 85% over a week — the most likely causes are: a new sending source that is not configured to DKIM-sign messages, a recent change to the signing configuration that broke signing for some message paths, or a third-party service that recently changed how it sends on behalf of the domain. The investigation starts with the DMARC aggregate report data for the same period: which sending sources appear in the report, and which of them show DKIM alignment failures?
Postmaster Tools in Relation to Microsoft SNDS
Microsoft's Smart Network Data Services (SNDS) is the Microsoft equivalent of Google Postmaster Tools — a sender-facing portal that provides IP reputation data and complaint rate information for messages delivered to Outlook.com, Hotmail.com, and Live.com addresses. The two systems cover the largest share of consumer email volume in English-speaking markets and together provide reputation visibility for the majority of deliverability decisions.
SNDS shows data at the IP level rather than the domain level — it does not have a domain reputation equivalent of Postmaster Tools' domain reputation section. SNDS data includes: the IP address status (Green, Yellow, Red — equivalent to Good, Caution, Problem), the complaint rate for each IP, and whether the IP is on Microsoft's block list. SNDS updates less frequently than Postmaster Tools — typically once every 24–48 hours — and reflects Microsoft's assessment based on complaint data from Microsoft Junk Mail Reporting Program (JMRP) participants.
Operators monitoring both Postmaster Tools and SNDS daily have visibility into the two largest single consumer mailbox provider reputation systems, covering approximately 55–65% of consumer email volume in most English-speaking markets. The combination of these two data sources, plus Yahoo FBL complaint data, provides the monitoring foundation that catches reputation problems before they become delivery crises — consistently, for both Gmail-specific and Microsoft-specific issues, while also maintaining complaint data from Yahoo that covers the remaining 15–20% of consumer volume.
The divergence between Postmaster Tools and SNDS data is operationally informative. A sender whose Postmaster Tools shows High domain reputation but whose SNDS shows Yellow IP status for the same sending IP has an ISP-specific problem: the domain is healthy at Gmail, but something in the sending pattern, complaint rate, or IP history is creating concerns specifically at Microsoft. This type of ISP-specific divergence is only visible when monitoring both systems. An operator reviewing only one system or only aggregate delivery rates would miss the ISP-specific problem until it becomes severe enough to affect delivery metrics.
The monitoring stack that provides complete Gmail and Microsoft visibility: Google Postmaster Tools API integrated into a time-series monitoring system for domain reputation, spam rate, and authentication data; Microsoft SNDS checked daily through its web interface (no public API exists as of 2026); Yahoo FBL complaint data processed in real time through the FBL complaint processing pipeline; and PowerMTA accounting log data providing the MTA-side view of all SMTP interactions. These four sources together are sufficient to monitor reputation health for 80–90% of consumer email volume in most sending programmes, with the remaining volume (European ISPs, Apple iCloud, smaller providers) typically following the trend established by the major providers rather than diverging significantly. Operators who instrument all four consistently detect almost every significant deliverability problem before it progresses to the point of material delivery rate impact — which is the correct objective for a monitoring system: not to report problems after they occur, but to detect them while they are still preventable.
A final operational note on Postmaster Tools data interpretation: the tool is designed for analysis, not for operational alerting in real time. Its 24–48 hour data lag means it is not suitable as the sole alerting mechanism for acute delivery events. Blacklistings, authentication failures, and SMTP rejection events should be detected through real-time monitoring of the MTA accounting log and DNSBL check results — which surface within minutes. Postmaster Tools is the companion tool that explains why the acute event occurred and how it fits into the longer reputation trajectory. The correct operational posture is: real-time MTA monitoring for immediate incident detection, daily Postmaster Tools review for reputation trend awareness, and weekly Postmaster Tools review for authentication and longer-term pattern analysis. The combination of real-time detection with daily context review is the monitoring discipline that consistently produces the best deliverability outcomes.
Infrastructure and Postmaster Tools
Our managed infrastructure includes Postmaster Tools domain and IP registration, daily monitoring of domain reputation and spam rate, and automated alerting when metrics cross action thresholds — integrated with accounting log analysis for complete deliverability visibility. Request assessment →