Spam avoidance techniques
Spam avoidance techniques
Posted Sep 12, 2002 5:35 UTC (Thu) by fcrozat (subscriber, #175)Parent article: Spam avoidance techniques
Since SpamAssassin is written in perl, when you use it through procmail, a new perl intepreter is started for each message.. This is the main cause of the high "run time" figure.
To prevent this from happening, you should use the spamc/spamd tools which are shipped with SpamAssassin :
Spamd is a daemon which starts a spamassassin process which is kept in memory, fixing the startup latency problem of SpamAssassin.
Spamc is a client which connect to spamd and can be used instead of spamassassin in procmail rules (replace "spamassassin -P" with "spamc").
You should try it, runtime will probably more reasonable.
