惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
小众软件
小众软件
Y
Y Combinator Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
Martin Fowler
Martin Fowler
美团技术团队
B
Blog RSS Feed
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
D
Docker
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building Confidence Scoring for Email Open Tracking (Engi...
Nate S · 2026-06-16 · via DEV Community

Nate S

Most email open tracking in 2026 is broken. Apple Mail Privacy
Protection fires a fake open within seconds of delivery, before any
human sees the email. Corporate scanners do the same. Open rates run
2-3x inflated.

The engineering problem: how do you tell a real human open from a
machine pre-fetch given only the HTTP request metadata of the pixel
load?

*Signals available
*

Every open event arrives at the tracking endpoint with:

  • Request IP
  • User-Agent string
  • Request timestamp (relative to email send)
  • Accept-Language, Referer, other headers

Patterns by source
**
**Apple MPP pre-fetches:

  • IP from Apple-attributable ranges (17.0.0.0/8 mostly)
  • User-Agent: Mac/iOS native with Apple's tracking-relay format
  • Timing: typically 30 seconds to 5 minutes after delivery
  • No subsequent click activity

Corporate scanner pre-fetches (Defender, Mimecast, Proofpoint):

  • IP from known scanner ranges (each vendor publishes these or they are discoverable via reverse lookup)
  • User-Agent: scanner-specific signatures
  • Timing: sub-5-second from delivery
  • Multiple link and image requests within 1-3 second window from same IP

Gmail image proxy:

  • IP from googleusercontent.com range
  • User-Agent: Google bot signature
  • Timing: variable

Real human opens:

  • IP from residential or generic corporate range
  • User-Agent: actual mail client used by a human
  • Timing: rarely sub-30-second from delivery; clusters at typical inbox-check times
  • Often followed by click activity within 30 minutes

*Model approach
*

A gradient-boosted classifier on the feature set above gives 95-98%
agreement with human-rated labels on a held-out test set. Output is a
confidence score (0-100%) which maps to Tier 1-5.

  • False-positive rate (Tier 1 graded when it's a machine): <2%
  • False-negative rate (Tier 4-5 graded when it's a human): <5%

The productionized version of the model + dashboard surface is at:
https://outsolvi.com/features/confidence-scoring

*The retraining problem
*

Apple keeps shifting MPP's IP block allocation. The model needs
retraining every few months as patterns drift. We've automated the
labeled-data collection so retraining is a 1-day job rather than a
1-week job.

Anyone else working on email signal filtering? Curious about your
approach to the drift problem specifically.

— Nate Summers
Co-Founder, Outsolvi