[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] SpamAssasin - site wide procmailrc
- Subject: Re: [cobalt-users] SpamAssasin - site wide procmailrc
- From: Anders <andersb@xxxxxxxxxxx>
- Date: Mon Sep 15 02:29:03 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
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