On Mon, 2010-02-15 at 07:27 -0800, smfabac wrote:
> I see that there is no official answer to the question. "what is the message
> size limit where sa-learn fails." 
> 
If you use something spamc rather than using sa_learn you can gain some
flexibility due to the places and hosts where you can run spamc plus you
get the ability to set the max message size yourself. Here's an extreme
example:

for f in spam/*
do
  l=$(wc $f | gawk '{ print $3 }')
  spamc --learntype=spam --max-size=$l <$f
done

where the limit is set to the size of each spam message in turn.


Martin


Reply via email to