Subject: Re: [Assp-user] postmaster / abuse catchall
> Hi Fritz, > > Now it works perfect! > 1.3.0(2) > > Thanks! > > Fritz Borgstedt schreef: >>> you are right, it only works with existing postmasters >>> >> should now work correctly >> >> fritz what about implementing that also for spamcollect and spamtrap addresses so that : 'total local users' = valid (good) local address + catchall postmasters + catchall abuse + spamtrap + spamcollect my local addresses is becoming very polluted with spamtraps and spamcollect, really a mess. so i'd prefer to keep in 'valid local' only good addressed in spamtrap my spamtraps in spamcollect other addresses i use as mild spamtrap (ex valid addresses that returned a 5xx for more than 1 year) and have auto added abuse/postmaster chatchall (already implemented from 1.3.0(2)) of course this is a suggestion for next build, 1.3.1 or whatever will be. Not for the actual one. by the way, if you have user validation enabled, is really easy to create a list of valid spamtrap candidates. Just check the most common invalid users. I created a small script that should run almost unchanged under linux/windows (and maybe mac). If someone improves it, pls post a better version here or on wiki. Windows users need to download some GNU utils from http://unxutils.sourceforge.net/ (unixutils + unxupdates) [mac users .. no idea] I had a few problems with multiple piping and gawk under win32, so i had to use prog.awk to script it and use a few intermediare steps, maybe someone can optimize it. ----- windows version, with assp installed in c:\assp run it whenever you want to update your traps ------ create the following files : -) invalid.cmd (debug version) dir /o-d /b \assp\logs\*aillog.txt|sed "s/\ /\\\ /g"|gawk -f prog.awk| grep -F "rejected:" > _aa cut -d" " -f8 _aa | sort | uniq -c | sort -r > _bb head -n 35 _bb > invalid.txt -) prog.awk BEGIN{ } NR < 15 { system("type \\assp\\logs\\" $0) } END{ } under windows you can use blat (http://www.blat.net/) to have the list mailed to you. Of course you have to manually decide what addresses are for spamcollect, and what for spamtrap. ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Assp-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/assp-user
