Tuesday, January 3, 2017

email - How can I receive mails from otherwise blacklisted servers?



On the mail servers I set up in our company, I use several blacklists in postfix. These really help take care of the spam we get send our way.



But every once in a while one of our (potential) customers can't send us mails because they are on such a blacklist. And it usually isn't a false-positive. They sometimes share mail servers with other companies on a server by some hosting company. Or they send out particularly large amounts of "newsletters".



While this happens rarely, when it happens, it's very hard to deal with. Because obviously the problem is our mail server. As they have no problem sending mail to other people. I usually tell our people that I won't change our perfectly fine config to allow people with messed up email servers (or ethics) to send us mail.



Referring these people to removal request pages of the RBL is pointless either. These are usually people in marketing who have no clue what I'm talking about (and don't care for it either).




But that still leaves me with the problem that we would like to be able to receive mail from them.



How do you handle a situation like that in your company?


Answer




  • Whitelist before you blacklist (manually, automatic, DNS based such as dnswl.org).

  • Don't reject mail based on a single blacklist (think about the power you are giving their operators), but use scoring system based on multiple spam characteristics).

  • Keep complaining to them. Try to convince them that they are going to have deliverability problems with a lot more people (Gmail, Hotmail, customers) if they ignore the listing.



No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...