On Jun 6, 2010, at 6:00 PM, Ben wrote:

Ok, let me ask a basic question -- what is the purpose of the retrain
script at http://dspamwiki.expass.de/DspamRetrainScript ? Is it a good
thing or a bad thing to only send the DSPAM signatures to dspam as the
script is doing? Or should I send the whole email?

The script works for me because I send mail to s...@spam.com which fails
the first if statement and thus uses the

elsif ($sender =~ /^(\w+)@/) {

conditional line which grabs the sender field as the user, which in my
setup is correct. The question is should I change this to just pipe the
whole email to dspam or leave it just sending the stuff the script
sends?

It has been explained to me that dspam only needs the signature for retraining.

The script should work as is.

Also, changing the first regex to catch your spam/ham addresses should be pretty simple.

I don't us a lot of perl but I think changing
if ($recip =~ /^(spam|ham)-(\w+)@/) {
to
if ($recip =~ /^(spam|ham)@/) {

should work for your spam/ham addresses.


// Brad
------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
Dspam-user mailing list
Dspam-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspam-user

Reply via email to