Someone got ahold of my information (actually, I know who they are - t2net.net - just not how to get back at them) and now I'm getting 4 phone calls a week upwards of 20 spams a day. I'm trying to put an end to the spam at least and the built-in stuff for Evolution isn't working as well as it should I did some Googling on procmail and fetchmail and spamassassin config files and much of this documentation is out of date for CentOS 4.1 because it uses a newer version of spamassassin. Can someone point me in the direction of some example config files that just rewrite the subject lines so I can filter them. An IDEAL setup would be one where spam gets auto-forwarded to the FTC's spam email address and to BlueSecurity.com. But I don't know if such a program exists for Linux. Preston
On Sun, 2005-08-28 at 11:01, Preston Crawford wrote:> > An IDEAL setup would be one where spam gets auto-forwarded to the FTC's > spam email address and to BlueSecurity.com. But I don't know if such a > program exists for Linux.Auto forwarding of such messages is not a good idea. If there are any false positives you could end up having legit email marked as spam and sent to these third party systems. You should have some kind of confirmation before sending on such email. Depending on the type of spam you are getting you want to make sure spamassassin bayesian filters are working. I think you need to have fed it about 200 spam messages before it kicks in. You may also get good results using some of the alternative rule sets provided by http://www.rulesemporium.com/. If you were running your own MTA I would recommend you implement greylisting. This would eliminate >98% of spam with little or nor impact to your MTA servers resources.
centos-bounces at centos.org <> scribbled on Sunday, August 28, 2005 10:02 AM:> Someone got ahold of my information (actually, I know who > they are - t2net.net - just not how to get back at them) and > now I'm getting 4 phone calls a week upwards of 20 spams a day. > > I'm trying to put an end to the spam at least and the > built-in stuff for Evolution isn't working as well as it > should I did some Googling on procmail and fetchmail and > spamassassin config files and much of this documentation is > out of date for CentOS 4.1 because it uses a newer version of > spamassassin. Can someone point me in the direction of some > example config files that just rewrite the subject lines so I > can filter them. > > An IDEAL setup would be one where spam gets auto-forwarded to > the FTC's spam email address and to BlueSecurity.com. But I > don't know if such a program exists for Linux. > > Prestonhttp://www.mailscanner.info
On Sun, 2005-08-28 at 10:01, Preston Crawford wrote:> Someone got ahold of my information (actually, I know who they are - > t2net.net - just not how to get back at them) and now I'm getting 4 > phone calls a week upwards of 20 spams a day. > > I'm trying to put an end to the spam at least and the built-in stuff for > Evolution isn't working as well as it should I did some Googling on > procmail and fetchmail and spamassassin config files and much of this > documentation is out of date for CentOS 4.1 because it uses a newer > version of spamassassin. Can someone point me in the direction of some > example config files that just rewrite the subject lines so I can filter > them.I recommend MimeDefang http://www.mimedefang.org/ as a wrapper to control all your spam and virus scans. It has built in hooks for about everything you might want and is controlled by a snippet of perl that you customize for your preferences. It uses sendmail's milter interface to run in realtime during the smtp converstation but under a different user id. -- Les Mikesell lesmikesell at gmail.com
Preston Crawford wrote:>Someone got ahold of my information (actually, I know who they are - >t2net.net - just not how to get back at them) and now I'm getting 4 >phone calls a week upwards of 20 spams a day. > >I'm trying to put an end to the spam at least and the built-in stuff for >Evolution isn't working as well as it should I did some Googling on >procmail and fetchmail and spamassassin config files and much of this >documentation is out of date for CentOS 4.1 because it uses a newer >version of spamassassin. Can someone point me in the direction of some >example config files that just rewrite the subject lines so I can filter >them. > >An IDEAL setup would be one where spam gets auto-forwarded to the FTC's >spam email address and to BlueSecurity.com. But I don't know if such a >program exists for Linux. > >I don't know how useful it would be in your situation, but have you tried bogofilter? I use Thunderbird for my mail. I click "Junk" on the spam messages I receive and each messages is added to a Junk folder. Thunderbird has its own SPAM filter built in, so I have that well trained by this point. I have procmail set up to run bogofilter on incoming messages and then check the results. If the message checks out as SPAM, it automatically gets moved to my Junk folder. Every hour I have a cron job on my IMAP server that runs bogofilter over the Junk folder to educate it as well. Between these two apps I've cut out the sometimes 100+ SPAMs a day (it's usually only about 20, but some days are really bad). This system occasionally catches legit mail, so I manually scan the Junk folder every day for anything out of the ordinary. I keep the almost 8000 messages that it contains in case I need to rebuild it quickly after a system crash. Thunderbird also maintains a white list for me, further assisting in this regard. The only downfall to that is that I must put EVERYONE in my white list, including people I may only hear from once. Hope this helps, --Shawn
> On Sun, 2005-08-28 at 11:01, Preston Crawford wrote: > If you were running your own MTA I would recommend you implement > greylisting. This would eliminate >98% of spam with little or nor > impact to your MTA servers resources.On my CentOS 3.5 sendmail server I simply added: FEATURE(`blacklist_recipients')dnl dnl # dnl # dnsbl - DNS based Blackhole List/Black List/Rejection list dnl # See http://www.sendmail.org/m4/features.html#dnsbl dnl # FEATURE(`dnsbl', `bl.spamcop.net', `"Spam blocked see: http://spamcop.net/bl.shtml?"$&{client_addr}')dnl FEATURE(`dnsbl', `relays.ordb.org', `"Spam blocked see: http://ordb.org/lookup/?host="$&{client_addr}')dnl FEATURE(`dnsbl', `cbl.abuseat.org', `"Spam blocked see: http://cbl.abuseat.org/lookup.cgi?ip="$&{client_addr}')dnl FEATURE(`dnsbl', `sbl.spamhaus.org', `"Spam blocked see: http://spamhaus.org/query/bl?ip="$&{client_addr}')dnl FEATURE(`dnsbl', `list.dsbl.org', `"Spam blocked see: http://dsbl.org/listing?"$&{client_addr}')dnl to my sendmail.mc file. I'm sure it will work in CentOS 4. I forget where I found the instructions for blacklisting. This has dramatically reduced the spam on my server. Kirk Bocek