|
|
|
Ask HN: How are you handling Gmail ending POP3 and Gmailify?
|
|
4 points
by moshetanzer
148 days ago
|
|
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. |
|
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).