Ask HN: How are you handling Gmail ending POP3 and Gmailify?
Starting January 2026, Gmail is removing support for POP3 and Gmailify. This means millions of people who rely on Gmail to consolidate emails from other accounts will suddenly lose features like spam protection, inbox categories, and advanced search on their third-party emails.
If you manage multiple email accounts, how are you planning to keep all your emails flowing smoothly to Gmail or elsewhere? Are you switching to forwarding, using other clients, or something else entirely?
Would love to hear how the community is adapting to this change.
4 comments
[ 2.2 ms ] story [ 18.0 ms ] threadSome previous discussion with mentions of that:
Gmail will no longer support checking emails from third-party accounts via POP
https://news.ycombinator.com/item?id=45439670
Best part for me is that it only needs write access to Gmail, so I'm not handing it the keys to my Google data.
I ended up building a hosted POP/IMAP bridge that does what Gmail used to do: logs into your external accounts on a schedule, fetches new messages, and forwards them to Gmail via SMTP with proper SPF/DKIM alignment. The key difference from auto-forwarding is pull vs. push. Spam stays on the external server instead of getting forwarded into Gmail.
It's at https://mailbridge.app. Currently collecting waitlist signups, polishing the MVP now. Happy to answer questions about the technical approach (credential encryption, deduplication, deliverability, etc).