[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] SpamAssasin - site wide procmailrc



Jon wrote:
> I have noticed while googling that alot of SpamAssassin users add
> a max file sixze for spamassasin to check in case of the program
> over loading the server. Following from their recommendations I
> added this to my personal .procmailrc:
> 
> SHELL=/bin/sh
> LOGFILE=$HOME/mail.log
> VERBOSE=yes
> :0fw
> | spamassassin
> 
> :0fw
> * < 256000
> 
> In my mail.log this appears:
> 
> procmail: Match on "< 256000"
> procmail: Incomplete recipe
> 
> What is needed to "complete recipe"?

Combining the two pieces into a whole:

SHELL=/bin/sh
LOGFILE=$HOME/mail.log
VERBOSE=yes

:0fw
* < 256000
| spamassassin

--anders