Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

I have a client that is getting heavily spammed.. it's the 15th of the month and POP3 bandwidth is almost 100 GB (yes GB..lol!) there are only 7 e-mail account on this domain. I installed SpamAssassin set it to 5 and setup 10-20 filters reject most of the junk. I don't see much of a change in POP3 bandwidth. Correct me if I'm wrong, the server still receives the message using up bandwidth in order to analyze determine a spam score.

I stumbled across faking MX records, for thoes unaware--basically you set a bogus server as the lowest and highest MX records with the working server's MX record in the middle.

For example:

fake.mydomain.com    1
realmx.mydomain.com  2
fake2.mydomain.com   3

The theory is, since majority of the spam is generated from Windows-based zombies and quite a few will query for the the highest MX record to spam since usually they're usually backup servers that don't filter spam. The lowest fake MX-record is for the rest of the spammers.. and generally spammers don't retry after failures.

Has anyone tried this? Does it help? Does it delay or cause issues with mail delivery? Does anyone else have a better solution?

share|improve this question

9 Answers

up vote 12 down vote accepted

Do yourself a favor and set them up with a gateway anti-spam service such as Postini. For a few dollars per mailbox per month, there's absolutely no reason not to and you'll not only eliminate 99% of your spam, you'll also enjoy having access to their spool service (handy for scheduled or unscheduled downtime), not to mention the bandwidth savings by letting someone else receive and process all that spam before it hits the edge of your network.

Not a Postini employee, just a happy user who's also setup dozens of clients with it.

share|improve this answer
thanks for the suggestion, that's plan B (plan C being renaming their e-mail address..lol) I do like the idea of SaaS or Front-end filtering – Mikey1980 Sep 16 '10 at 3:09
Although it's the the answer I wanted to hear.. my client went with Google Postini, the SPAM was out of control and without root access seemed like the only option--many thanks for the tip! – Mikey1980 Sep 16 '10 at 17:16
You'll love it man. Seriously: being able to turn on spooling when you're working on the server is great. Also I use them as an upstream smarthost and lock down the firewall accordingly so no matter what boxes get owned on my network(s) (including the mail server(s)), they can only talk to Postini's SMTP servers, which does outbound filtering as well. – gravyface Sep 16 '10 at 20:02
Postini... huh, why not using Gmail then? ;-P – poige Feb 1 '11 at 18:13
@poige: running a mail server with a gateway service is not the same as having your mail hosted with Google Apps (gmail). – gravyface Feb 1 '11 at 20:27

I've tried this, and I can strongly recommend that you DON'T DO IT! It seemed like a good idea at the time, but after mail from various senders starting disappearing, I realized that it was a mistake. What I didn't realize was that there are lots of terribly written SMTP servers out there, that don't follow the spec and are fairly retarded about handling errors, and people don't know or care because "this other guy got my email, so it must be you".

I second some of the other suggestions for handling SPAM. Postini is a great service, and even the built in anti-spam stuff in the free google apps isn't that bad. If you want more control you can buy an IronPort or other device, or roll your own.

share|improve this answer
1  
Thanks Jed, exactly what I wanted.. a first-hand experience. I never thought about SMTP issues, too focused on the incoming +1 – Mikey1980 Sep 16 '10 at 3:45
1  
I work for an Anti-Spam company (Red Condor) and we have the highest priority records for most of our customers set to a blackhole address. However, we do have some customers remove that, because silly people write legit mailservers that only bomb that address. However, going with a SaaS hosted provider will let you offload the bandwidth load for cheap. – Ryan Gooler Sep 16 '10 at 7:42
@Ryan--thanks! Do you have your "blackhole" reporting server-busy or is it completely dead? – Mikey1980 Sep 16 '10 at 11:50

I've never heard of this method before and I can imagine it would delay legitimate email potentially by several hours. At the end of the day, the smtp protocols need to deliver your legitimate email. The valid servers will hit the bogus mx record and try to deliver to that server... I don't know what you might have running there (if anything), but they will keep trying until it's accepted.

Proper servers will keep trying the MX records until the mail is delivered. Spammers tend to get smarter and if this works for some spam software now, I doubt it'll work for long. I can't recommend it.

My suggestion is instead to look at using an smtp tarpit in addition to your existing spam filter. There are a number of these available now. I think you'll find it's much more effective than the fake mx record method.

Such tarpits come with smtpd on BSD. There are also some tarpitting features in sendmail 8.13.

Basically, a tarpit works by tying up spam server resources. They do that by delaying the responses they get. e.g. the spam server connects and receives about 1 byte per second.
Some of the tarpit servers look for spam patterns and can recognize a spam server. Legitimate servers will be prepared to wait through a slow response. In some tarpits servers they move the legitimately recognized server onto a whitelist automatically so there is no delay in the future.

Google SMTP Tarpit and take a look.

share|improve this answer
Thanks for the suggestion, but my client is a Web Design firm (their client is the one with the issue) running 100s of low traffic sites on shared host and the WHM has no root access or SSH.. stuck with SpamAssassin.. btw Exim is the exchange. Forgive me if this isn't clear.. my fortay is programming..I'd probably make a horrible sysadmin! – Mikey1980 Sep 16 '10 at 3:01
I'm a programmer as well, but have spent quite a number of hours running my old company's freebsd servers doing all manner of things. – Matt Sep 17 '10 at 0:34

You didn't mention it, so is there a reason you're not using a DNSBL?

Edit: SpamAssassin includes support for a few of them - without them, you'll be wasting a lot of CPU cycles analyzing spam.

share|improve this answer
Another great suggestion, however I am really limited since my clients WHM isn't root.. according to webalizer, enabling SpamAssassin has made next to no impact on bandwidth in the last 12 hours – Mikey1980 Sep 16 '10 at 3:07
1  
... then your best bet would be to push all mail services through Google Apps or use another third-party service to mitigate spam if your client's hosting provider is not willing to tinker with SpamAssassin's configuration. – danlefree Sep 16 '10 at 3:23
Any idea if DNSBL or RBL are enabled by deafult? You'd think they would be. I agree, I'm starting to think a front-end MX filtering is going to be the only solution. – Mikey1980 Sep 16 '10 at 3:30
@Mikey1980 - "Any idea if DNSBL or RBL are enabled by deafult?" Sorry, couldn't say - best to inquire directly with the provider in any case because there is a possibility they apply their own configuration. – danlefree Sep 16 '10 at 3:41
You can check if the emailserver filters spam based on the DNSBL: spamhaus.org/faq/answers.lasso?section=DNSBL%20Usage#205 – ZippyV Sep 16 '10 at 12:53

As far as mail filtering goes, I've been vary happy with combination of Spamassasin and policyd-weight, which checks sender hostname and blocklists during SMTP connection. That is a great thing for two reasons:

  1. you don't have to process the rejected e-mail with spamassasin, which spares you system resources (bayesian analysis takes some time) and bandwidth
  2. sender hosts get rejected, so in the unlikely event of blocking legitimate e-mail its sender gets a delivery failure notification

I'm using the setup on Postfix, but supposedly there is a way to install policyd-weight with Exim.

share|improve this answer

I didn't get completely the idea, honestly.

Ok, I'm saying my primary mailserver is Fake. Then so? Doesn't it exists at all or what? (Let's suppose it at last cut part of SPAMers either way.) The "survivors" would use secondary — no problem. But why there's 3rd server in this setup?


Since this supposed to be mine answer, not question, I'd conclude so: it's sick and a pale shadow of Greylisting. If you wanna see real effect try using Greylisting, man.

share|improve this answer
Extraordinary wording but you're quite correct. Greylisting IS the proper solution (other than a decent full-blown anti-spam filterings system). It will work as effectively as fake MX records, without all the drawbacks. – John Gardeniers Feb 1 '11 at 21:18

I drop most of my spam by delaying connections to hosts are listed in the Spamhaus zen list. Spambots don't like delay. Detecting obvious server forgeries in the HELO command also clears out a lot of spam. Conditions I have found to indicate server forgeries include.

  • Using my hostname or IP address.
  • Using an unqualified hostname.
  • Using a domain literal ([192.0.2.15]) instead of a FQDN. (Yes the RFCs require it, but these days it is not used by Internet mail servers.)
  • Failing SPF for the HELO name not Mail (I block on fail, softfail, and neutral).

If you value automated or marketing mail, check on the HELO command that don't work include. My experience is that all other mail passes these conditions.

  • Using a second level domain name rather than a FQDN for the host.
  • Requiring the IP or HELO name to verify rDNS.
  • Requiring a valid second level domain for the FQDN. (local is not a valid domain nor is localdomain.)

Signing your return path allows you to block some spam. Although I am seeing far fewer faked bounces recently.

Unfortunately, I find a high percentage of legitimate automated or marketing mail forges their return path. These hosts often don't have a valid postmaster address either. I do find that requiring a valid domain in the return path is workable. I get far more SPF fail response on legitimate email than spam.

I recently posted my experiences with blocking spam with Exim

share|improve this answer

Besides the lost e-mails from legitimate people with broken gateways, it's been tried a long time ago (like 15 years ago +/-) and the spammers adapted to it almost immediately back then. I suspect it will prove to be a net loss to your e-mail reliability while having little if no impact on spam. However, should you try it, please send us the results!

share|improve this answer

Unfortunately, there are certain carriers out there that won't send you mail if the first MX record isn't reachable. I recently wrote up my experiences with this on a blog entry so I won't repeat it here. The summary though is that my first MX record was actually an IPv6-only MX record since I figured spammers don't use IPv6 (yet). Unfortunately, this caused problems and in the end I had to add a IPv4 address to the first MX record in my zone.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.