Slashdot Mirror


By Latest Count, 95% of Email Is Spam

An anonymous reader writes "The European Network and Information Security Agency released its new spam report, which looks at spam budgets, the impact of spam and spam management. Less than 5% of all email traffic is delivered to mailboxes. This means the main bulk of mails, 95%, is spam. This is a very minor change, from 6%, in earlier ENISA reports. Over 25% of respondents had spam accounting for more than 10% of help desk calls. The survey targeted email service providers of different types and sizes, and received replies from 100 respondents from 30 different countries."

13 of 198 comments (clear)

  1. Logic? by clang_jangle · · Score: 4, Interesting

    Less than 5% of all email traffic is delivered to mailboxes. This means the main bulk of mails, 95%, is spam.

    I don't doubt that it's around 95%, but the logic of the above-quoted statement is certainly flawed.

    --
    Caveat Utilitor
    1. Re:Logic? by Anonymous Coward · · Score: 1, Interesting

      Less than 5% of all email traffic is delivered to mailboxes. This means the main bulk of mails, 95%, is spam.

      I don't doubt that it's around 95%, but the logic of the above-quoted statement is certainly flawed.

      Link to full report:
      http://www.enisa.europa.eu/act/res/other-areas/anti-spam-measures/studies/spam-survey/at_download/fullReport

      There also appears to be selection bias in the sample. The confidence interval is also missing. Survey only took place in Europe and apparently one company in the US.

      In short, this is a waste of someone's money.

    2. Re:Logic? by Anonymous Coward · · Score: 1, Interesting

      This morning, over 6000 messages came through my domain of which 6 were legitimate. I spend more time waiting for the deletes to complete than reading my messages.
      I think the 95% may be too low.
      And if you account for the bits, the ratio is even worse, since my legitimate messages are usually a bit of text, whereas almost all the spam includes an attachment or image.

    3. Re:Logic? by Hurricane78 · · Score: 2, Interesting

      Well, I use a greylisting system, with amavisd behind it, and the greylisting blocks 90%, before it even reaches the spam filter. (Which also keeps the resource usage down.)
      Then spamd and the other spam systems linked into in amavisd throw out nearly all the rest of the mails.
      I’d say 95% is a vast understatement. More like 99.5%.

      Also, everything that is filtered by amavisd, still goes to the junk folder of my IMAP account, so I still can undo false positives.

      Works pretty sweet for my own server.
      I simply can’t say, that spam is a problem for me anymore.

      --
      Any sufficiently advanced intelligence is indistinguishable from stupidity.
  2. More than 90% for me too by Arancaytar · · Score: 3, Interesting

    I also get about 10 times as much spam as actual email. Fortunately, Google is pretty good at filtering that - the number of false negatives in my inbox has been less than ten this month, while I got over a thousand to my spam folder.

    It's hard to comprehend how people deal without that level of spam filtering - I have relatives who regularly register new accounts in order to escape their spam.

    1. Re:More than 90% for me too by Blowit · · Score: 2, Interesting

      Want to reduce false positives, and your friends, colleagues and email partners to ask their provider to support either Domainkeys or SPF. Once they get on the bandwagon, their mail will no longer get false positive flagged.

      --
      *Headline News* censorship shuts down the Internet! More at 6PM!
  3. Accounting for help desk calls?! by Anonymous Coward · · Score: 3, Interesting

    Now I am not a corporate email guru, but why would spam be the reason to call for help? In this day and age it boggles the mind. Even my grandmother can deal with spam without needing tech support.

    1. Re:Accounting for help desk calls?! by DarkOx · · Score: 2, Interesting

      This off topic but- don't you think OS X was born out of it being easier to make Unix friendly than fixing MacOS which they tried and failed to do internally? I really don't see how Windows has anything to do with it.

      --
      Repeal the 17th Amendment TODAY! Also Please Read http://www.gnu.org/philosophy/right-to-read.html
  4. Micropayments again by Twinbee · · Score: 3, Interesting

    Micropayments. Yes I know it's been mentioned before, but one rarely hears of paying *each other* (rather than the host or government). It would be a good idea anyway even if spam didn't exist.

    If we paid each other (say a penny or 1/10th of a penny), obviously the spam problem would be solved. (though some can charge nothing if they want) It also means that someone who gets a ton of email and hasn't got the time to read all of them will receive only the 'cream' of email. Only those who are willing to sacrifice say, a pound (or £10/£100 for super busy/famous people) would be able to email them.

    As we know, Youtube has/is developing methods of payment to watch videos, and online papers are experimenting, so micropayments may be common sooner than we think.

    --
    Why OpalCalc is the best Windows calc
    1. Re:Micropayments again by Nyxeh · · Score: 2, Interesting

      I had an idea to fix this:

      http://piestar.net/2009/06/24/idea-fixing-the-email-system/

      There are many better ways outside micropayments - which would add up on a large system (such as a forum or social networking site).

  5. Spam not equally distributed among message media by Dilligent · · Score: 2, Interesting

    One thing to keep in mind is that even though it looks bad (and for email it certainly is..), most other mediums aren't quite as affected by it. I do get quite a bit of Spam on ICQ these days, but the ratio between spam messages and real messages is waaaaaaaay better than 20:1. I would expect the same to hold true for most other mediums as well, so that it might in fact be a good idea to use those as a separate alternative communication channel should your inbox become overwhelmed. Something i have noticed over the years is the reduction in Trojans and worms being sent (at least to my inbox). There was a time when i received around 50 trojan-emails a day, whereas now it has been quite a while that a spam mail did actually contain any attachment whatsoever. To summarize, yeah.. email looks bad, but there's a whole set of alternative or additional channels that can be used which aren't quite as saturated.

  6. Re:What do they mean by 'all'? by WuphonsReach · · Score: 3, Interesting

    Yah, you can cut the rate of bad connections down by about 50%+ if you force the sending host to follow the RFCs.

    - Incorrectly formatted HELO/EHLO greeting? 5xx Doesn't catch too many connections as the other end would have to massively screw up in order to trigger the invalid HELO rule.

    - Giving a HELO/EHLO that is not a FQDN (fully qualified domain name)? 5xx Many botnets don't follow the FQDN rule and will give a randomly generated HELO name. I've never had a false-positive with checks like this.

    - Giving a HELO/EHLO that does not resolve via DNS (see RFC 5321, section 2.3.5 where it talks about this issue in the 1st bullet point)? 5xx or 4xx if there was a DNSFAIL issue

    - SPF record says "-all" for the MAIL FROM or HELO lookup and it fails to pass SPF? 5xx (At which point, you're simply following the instructions of the sender. If the record says "-all", they WANT you to reject non-conforming mail.)

    - HELO/EHLO which purport to be from your own system? 5xx Know your servers, know who is allowed to put your domain into the HELO/EHLO and boot the pretenders. Easily done in Postfix with a few simple rules.

    Most of those are standard checks in Postfix and will greatly reduce the amount of spam that you have to analyze in a more in-depth manner. Which results in a huge CPU/bandwidth savings if you can tell them to bugger off before the DATA command is issued.

    I prefer to save block lists for the spam scoring system as there are too many false positives (and sometimes abuses of power) in the DNSBLs. Far safer to score rather then block - although Spamhaus' Zen list is extremely good.

    --
    Wolde you bothe eate your cake, and have your cake?
  7. Re:What do they mean by 'all'? by DaveGillam · · Score: 2, Interesting

    Agreed on all counts, and don't forget adding honeypot MX records, as many bots will either target the highest-numbered MX, or only the lowest-numbered MX. Proper MTAs will follow RFC, and get around the honeypots, to the "real" MX hosts.