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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
D
DataBreaches.Net
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
腾讯CDC
博客园_首页
The Cloudflare Blog
S
SegmentFault 最新的问题
C
Check Point Blog
美团技术团队
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - brooksc/MailScrub: Terminal UI for bulk Gmail un...
brooksc · 2026-04-23 · via Hacker News: Show HN

A terminal UI for finding and bulk-unsubscribing from Gmail newsletters.

MailScrub syncs your Gmail locally, groups emails by sender, and lets you unsubscribe or delete whole batches in a few keystrokes — without touching the Gmail web UI.

MailScrub demo

Features

  • Fast — downloads headers once to SQLite; navigation needs no API calls
  • Groups by sender — domain-based grouping with shared-platform splitting (Substack newsletters stay separate; Amazon stays one row)
  • One-key unsubscribe — follows RFC 2369 List-Unsubscribe: HTTP POST → GET → mailto fallback
  • Alias-aware — detects emails delivered to a non-primary address and uses Gmail "Send As" for mailto unsubscribes
  • History tracking — alerts if a sender reappears after you unsubscribed
  • Ignore / restore — hide senders locally without deleting from Gmail

Requirements

  • Python 3.10 or later
  • uv (or pip)
  • A Google Cloud project with the Gmail API enabled and an OAuth 2.0 Desktop client

Quick Start

git clone https://github.com/brooksc/MailScrub.git
cd MailScrub
uv sync

# Put your credentials in place (see Google Cloud Setup below)
mkdir -p ~/.config/mailscrub/credentials
cp /path/to/downloaded/client_secret_*.json ~/.config/mailscrub/credentials/credentials.json

./MailScrub --new   # OAuth browser login + initial sync
./MailScrub         # Launch TUI (incremental sync on each start)

Google Cloud Setup

MailScrub requires a personal OAuth 2.0 client — you supply your own so your credentials are never shared with anyone. The steps below take about 10 minutes.

Option A — Manual (works for everyone)

1. Create a Google Cloud project

  1. Go to console.cloud.google.com
  2. Click the project selector at the top → New project
  3. Name it mailscrub (or anything you like) and click Create

2. Enable the Gmail API

  1. In the left sidebar: APIs & Services → Library
  2. Search for Gmail API and click Enable

3. Configure the OAuth consent screen

  1. APIs & Services → OAuth consent screen
  2. Choose External and click Create
  3. Fill in:
    • App name: MailScrub
    • User support email: your Gmail address
    • Developer contact email: your Gmail address
  4. Click Save and Continue through the Scopes and Test Users screens (defaults are fine)
  5. On the summary page, click Back to Dashboard

Note: Google will show an "unverified app" warning when you log in. This is expected for personal-use apps — the OAuth client lives in your Cloud project and is scoped only to your own account. Click Advanced → Go to MailScrub (unsafe) to proceed. Only your own account will ever see this screen.

4. Create OAuth 2.0 credentials

  1. APIs & Services → Credentials
  2. Create Credentials → OAuth client ID
  3. Application type: Desktop app
  4. Name: MailScrub Desktop
  5. Click Create, then Download JSON
  6. Move the file to the MailScrub credentials directory:
mkdir -p ~/.config/mailscrub/credentials
mv ~/Downloads/client_secret_*.json ~/.config/mailscrub/credentials/credentials.json

5. Authenticate

./MailScrub --new

A browser window opens. Log in with your Gmail account and grant the requested permissions. The OAuth token is saved to ~/.config/mailscrub/tokens/you@gmail.com.json and reused on future runs.


Option B — Automated with gcloud CLI

If you have the Google Cloud CLI installed, run the included helper:

bash setup_gcloud.sh

The script creates a Cloud project, enables the Gmail API, creates a Desktop OAuth client, and writes credentials.json to ~/.config/mailscrub/credentials/.

You can also ask Claude Code (with gcloud available) to do it for you:

"Set up a Google Cloud OAuth Desktop client for MailScrub. Enable the Gmail API and save credentials.json to ~/.config/mailscrub/credentials/credentials.json"


Usage

./MailScrub                         # incremental sync + TUI
./MailScrub --new                   # add / re-authenticate a Gmail account
./MailScrub --user you@gmail.com    # use a specific account (multi-account)
./MailScrub --full-sync             # wipe local cache, re-download everything
./MailScrub --no-sync               # skip sync and open TUI immediately
./MailScrub --read-only             # request read-only access (disables unsubscribe/delete)
./MailScrub --debug                 # verbose logging to stderr and debug.log

Key Bindings

Key Action
Space Select / deselect row
a Select all
* Select all visible
u Unsubscribe from selected senders
d Delete emails from selected senders
i Ignore selected senders (hides locally, no Gmail change)
f Forget unsubscribe record (re-enables reappeared alert)
v View sender in Gmail (browser)
s Search sender in Gmail (browser)
o Cycle sort: message count → sender name → newest first
r Refresh / incremental sync
e View ignored senders (and optionally restore)
? Help
q Quit

How It Works

  1. Sync — On startup, MailScrub queries Gmail for:

    {category:promotions unsubscribe} -in:trash -in:sent -in:spam -is:starred
    

    and downloads message headers (not bodies) to a local SQLite database.

  2. Group — Messages are grouped by sending domain. Shared platforms (Substack, Beehiiv) are split per newsletter based on sender display name; brands that use multiple sending addresses (Amazon) are kept as one row.

  3. Unsubscribe — Follows the List-Unsubscribe header:

    • HTTP POST (if List-Unsubscribe-Post header is present)
    • HTTP GET fallback
    • mailto: as last resort (sends an email via Gmail API)
  4. Alias detection — If an email was delivered to a non-primary address that is configured as a Gmail "Send As" alias, unsubscribe emails are sent from that alias rather than your primary address.


Data Storage

Everything lives in ~/.config/mailscrub/ — nothing is written to the project directory:

~/.config/mailscrub/
├── config.json                     # account registry and path overrides
├── credentials/
│   └── credentials.json            # YOUR Google OAuth client (you supply this)
├── tokens/
│   └── you@gmail.com.json          # OAuth access/refresh token (auto-created per account)
└── you@gmail.com.db                # local email header cache (auto-created per account)

Multiple accounts each get their own token and database file. When you run ./MailScrub with more than one account registered, a numbered menu lets you pick which account to open.

Because all data lives in ~/.config/mailscrub/, you can git pull to update MailScrub at any time without affecting your credentials or sync history.


Privacy

MailScrub stores email headers only (sender, subject, date, and the List-Unsubscribe header value) in a local SQLite file on your own machine. No data is sent to any third-party service. Unsubscribe requests go directly from your machine to the sender's endpoint.


Contributing

See CONTRIBUTING.md.


License

MIT