logo

drewdevault.com

[mirror] blog and personal website of Drew DeVault git clone https://hacktivis.me/git/mirror/drewdevault.com.git

Gmail-is-a-huge-source-of-spam.md (2826B)


  1. ---
  2. title: Gmail is a huge source of spam
  3. date: 2021-02-25
  4. outputs: [html, gemtext]
  5. ---
  6. 5× as many spam registrations on sourcehut are from gmail than from the
  7. second-largest offender.
  8. ```
  9. # SELECT
  10. SPLIT_PART(email, '@', 2) as domain, count(*) as count
  11. FROM "user"
  12. WHERE user_type = 'suspended'
  13. GROUP BY domain
  14. ORDER BY count DESC;
  15. domain | count
  16. ---------------------------+-------
  17. gmail.com | 119
  18. qq.com | 26
  19. mail.ru | 17
  20. mailinator.com | 10
  21. yopmail.com | 6
  22. aol.com | 6
  23. yahoo.com | 6
  24. [...more omitted...]
  25. ```
  26. This is just the ones which got through: most spam registrations are detected
  27. and ignored before they make it to the database.
  28. A huge number of spam emails I recieve in my personal inbox originate from
  29. @gmail.com, and often they arrive in my inbox unscathed (as opposed to going to
  30. Junk) because Gmail is considered a reputable mail provider. My colleague
  31. estimates that between 15% and 25% of the spam emails sent to a mailing list he
  32. administrates comes from Gmail.
  33. One might argue that, because Gmail is the world's largest email provider, it's
  34. natural to expect that they would have the largest volume of spam simply because
  35. they have proportionally more users who might use it for spam. I would argue
  36. that this instead tells us that they have the largest responsibility to curtail
  37. spam on their platform.
  38. I've forwarded many, many reports to abuse@gmail.com, but they've never followed
  39. up and the problem has not become any better. I have had half a mind to block
  40. Gmail registrations on sourcehut outright, but about 41% of all registrations
  41. use Gmail.
  42. It bears repeating that anyone with any level of technical expertise ought to
  43. know better than to use Gmail. I usually recommend
  44. [Migadu](https://www.migadu.com)[^1], but there are many options to choose from.
  45. If you're worried about mail deliverability issues, don't be — it's more
  46. or less a myth in $CURRENTYEAR. If you set up
  47. <abbr title="DomainKeys Identified Mail, an means of verifying message authenticity">DKIM</abbr>
  48. properly and unlist your IP address from the
  49. <abbr title="DNS blocklists">DNSBL</abbr>s (a simple process), then your mails
  50. will get through.
  51. [^1]: Full disclosure: sourcehut has a business relationship with Migadu, though I've recommended them since long before we met.
  52. In case you're wondering, the dis-award for second-worst goes to Amazon SES.
  53. They don't register on sourcehut (it's outgoing only, so that makes sense), but
  54. I see them often in my personal inbox. However, SES only appears at a rate of
  55. about a tenth of the gmail spam, and they appear to actually listen to my abuse
  56. reports, so I can more or less forgive them for it.