logo

drewdevault.com

[mirror] blog and personal website of Drew DeVault git clone https://hacktivis.me/git/mirror/drewdevault.com.git
commit: d9c6f4302430cbe4cbaf1f9f6291247e6a22422c
parent c5596179af38791ac07902addad60df4edb98752
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 25 Feb 2021 12:17:08 -0500

Gmail spam

Diffstat:

Acontent/blog/Gmail-is-a-huge-source-of-spam.gmi34++++++++++++++++++++++++++++++++++
Acontent/blog/Gmail-is-a-huge-source-of-spam.md62++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 96 insertions(+), 0 deletions(-)

diff --git a/content/blog/Gmail-is-a-huge-source-of-spam.gmi b/content/blog/Gmail-is-a-huge-source-of-spam.gmi @@ -0,0 +1,34 @@ +5× as many spam registrations on sourcehut are from gmail than from the second-largest offender. + +``` +# SELECT + SPLIT_PART(email, '@', 2) as domain, count(*) as count + FROM "user" + WHERE user_type = 'suspended' + GROUP BY domain + ORDER BY count DESC; + domain | count +---------------------------+------- + gmail.com | 119 + qq.com | 26 + mail.ru | 17 + mailinator.com | 10 + yopmail.com | 6 + aol.com | 6 + yahoo.com | 6 +[...more omitted...] +``` + +This is just the ones which got through: most spam registrations are detected and ignored before they make it to the database. + +A huge number of spam emails I recieve in my personal inbox originate from @gmail.com, and often they arrive in my inbox unscathed (as opposed to going to Junk) because Gmail is considered a reputable mail provider. My colleague estimates that between 15% and 25% of the spam emails sent to a mailing list he administrates comes from Gmail. + +One might argue that, because Gmail is the world’s largest email provider, it’s natural to expect that they would have the largest volume of spam simply because they have proportionally more users who might use it for spam. I would argue that this instead tells us that they have the largest responsibility to curtail spam on their platform. + +I’ve forwarded many, many reports to abuse@gmail.com, but they’ve never followed up and the problem has not become any better. I have had half a mind to block Gmail registrations on sourcehut outright, but about 41% of all registrations use Gmail. + +It bears repeating that anyone with any level of technical expertise ought to know better than to use Gmail. I usually recommend Migadu¹, but there are many options to choose from. If you’re worried about mail deliverability issues, don’t be — it’s more or less a myth in $CURRENTYEAR. If you set up DKIM properly and unlist your IP address from the DNSBLs (a simple process), then your mails will get through. + +In case you’re wondering, the dis-award for second-worst goes to Amazon SES. They don’t register on sourcehut (it’s outgoing only, so that makes sense), but I see them often in my personal inbox. However, SES only appears at a rate of about a tenth of the gmail spam, and they appear to actually listen to my abuse reports, so I can more or less forgive them for it. + +¹ Full disclosure: sourcehut has a business relationship with Migadu, though I’ve recommended them since long before we met. diff --git a/content/blog/Gmail-is-a-huge-source-of-spam.md b/content/blog/Gmail-is-a-huge-source-of-spam.md @@ -0,0 +1,62 @@ +--- +title: Gmail is a huge source of spam +date: 2021-02-25 +outputs: [html, gemtext] +--- + +5&times; as many spam registrations on sourcehut are from gmail than from the +second-largest offender. + +``` +# SELECT + SPLIT_PART(email, '@', 2) as domain, count(*) as count + FROM "user" + WHERE user_type = 'suspended' + GROUP BY domain + ORDER BY count DESC; + domain | count +---------------------------+------- + gmail.com | 119 + qq.com | 26 + mail.ru | 17 + mailinator.com | 10 + yopmail.com | 6 + aol.com | 6 + yahoo.com | 6 +[...more omitted...] +``` + +This is just the ones which got through: most spam registrations are detected +and ignored before they make it to the database. + +A huge number of spam emails I recieve in my personal inbox originate from +@gmail.com, and often they arrive in my inbox unscathed (as opposed to going to +Junk) because Gmail is considered a reputable mail provider. My colleague +estimates that between 15% and 25% of the spam emails sent to a mailing list he +administrates comes from Gmail. + +One might argue that, because Gmail is the world's largest email provider, it's +natural to expect that they would have the largest volume of spam simply because +they have proportionally more users who might use it for spam. I would argue +that this instead tells us that they have the largest responsibility to curtail +spam on their platform. + +I've forwarded many, many reports to abuse@gmail.com, but they've never followed +up and the problem has not become any better. I have had half a mind to block +Gmail registrations on sourcehut outright, but about 41% of all registrations +use Gmail. + +It bears repeating that anyone with any level of technical expertise ought to +know better than to use Gmail. I usually recommend +[Migadu](https://www.migadu.com)[^1], but there are many options to choose from. +If you're worried about mail deliverability issues, don't be &mdash; it's more +or less a myth in $CURRENTYEAR. If you set up DKIM properly and unlist your IP +address from the DNSBLs (a simple process), then your mails will get through. + +[^1]: Full disclosure: sourcehut has a business relationship with Migadu, though I've recommended them since long before we met. + +In case you're wondering, the dis-award for second-worst goes to Amazon SES. +They don't register on sourcehut (it's outgoing only, so that makes sense), but +I see them often in my personal inbox. However, SES only appears at a rate of +about a tenth of the gmail spam, and they appear to actually listen to my abuse +reports, so I can more or less forgive them for it.