From owner-freebsd-questions@FreeBSD.ORG Tue Sep 19 02:00:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3FAD16A4C2 for ; Tue, 19 Sep 2006 02:00:19 +0000 (UTC) (envelope-from jdow@earthlink.net) Received: from elasmtp-banded.atl.sa.earthlink.net (elasmtp-banded.atl.sa.earthlink.net [209.86.89.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9AAC43D46 for ; Tue, 19 Sep 2006 02:00:18 +0000 (GMT) (envelope-from jdow@earthlink.net) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=earthlink.net; b=SEsmmd0sRjvstIUxhZa06VA6z4YogFjGH+QZCBa4do7v3cUtxNh849soiRa+MhsF; h=Received:Message-ID:From:To:References:Subject:Date:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Priority:X-MSMail-Priority:X-Mailer:X-MimeOLE:X-ELNK-Trace:X-Originating-IP; Received: from [71.116.187.9] (helo=Wednesday) by elasmtp-banded.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1GPUuD-0002f5-1e for freebsd-questions@freebsd.org; Mon, 18 Sep 2006 22:00:13 -0400 Message-ID: <0d2201c6db8f$58184670$0225a8c0@Wednesday> From: "jdow" To: References: <20060918210511.S30659@justnosweat.net> Date: Mon, 18 Sep 2006 19:00:07 -0700 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-ELNK-Trace: bb89ecdb26a8f9f24d2b10475b571120ce6c9ae3f3c0c44cfaf2afc2c3ca14830698179ac182c8b9350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 71.116.187.9 Subject: Re: spamassassin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Sep 2006 02:00:19 -0000 From: "justins" > > I`ve installed spamassassin rules on my sentmailserver and i am trying to > filter my mail in order to pick out some spam. > The spamd process is running only it doesn`t add anything to my mail > heather so procmail can`t forward it to the caughtspam folder. > > How do i start spamassassin in order to filter my incomming mail. > Anyone..... You want spamd running as a daemon. Then you want lines like this in your procmailrc :0 * < 500000 * !^List-Id: .*(spamassassin\.apache.\org) | /usr/bin/spamc -t 150 -u $LOGNAME The third line is my personal filter to prevent spamassassin triggering on the SpamAssassin list. Any spam there is FOOD for the anti-spam rules folks. {^_-} This will add markups, probably the default markups. http://www.spamassassin.org/ is a starting source for information. The Wiki link points to the (admittedly pathetic) online documentation. This also has a link to the users mailing list. You're certainly welcome there. http://www.rulesemporium.com/ is a nice place to get pre-canned sets of effective rules to supplement the stock rules. Other help is found with man spamassassin, etc. Also check out man or perldoc for Mail::SpamAssassin::Conf for configuration help. {^_^}