From owner-freebsd-questions@FreeBSD.ORG Wed Jul 6 21:32:31 2005 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 6E9BF16A41C for ; Wed, 6 Jul 2005 21:32:31 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DD9843D48 for ; Wed, 6 Jul 2005 21:32:31 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin01-en2 [10.13.10.146]) by smtpout.mac.com (Xserve/8.12.11/smtpout06/MantshX 4.0) with ESMTP id j66LWUVL006813; Wed, 6 Jul 2005 14:32:30 -0700 (PDT) Received: from [10.1.1.209] (nfw2.codefab.com [199.103.21.225] (may be forged)) (authenticated bits=0) by mac.com (Xserve/smtpin01/MantshX 4.0) with ESMTP id j66LWSpR017310; Wed, 6 Jul 2005 14:32:30 -0700 (PDT) In-Reply-To: <3A85D7EF44E1C744BF6434691F5659E948F4BC@fci-ex.FCI> References: <3A85D7EF44E1C744BF6434691F5659E948F4BC@fci-ex.FCI> Mime-Version: 1.0 (Apple Message framework v730) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Wed, 6 Jul 2005 17:32:28 -0400 To: Jean-Paul Natola X-Mailer: Apple Mail (2.730) Cc: freebsd-questions@freebsd.org Subject: Re: Usage help 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: Wed, 06 Jul 2005 21:32:31 -0000 On Jul 6, 2005, at 5:26 PM, Jean-Paul Natola wrote: > is this how I should change it? > > > spamd_flags=${spamd_flags:-"-c -d -r - m 20 ${spamd_pidfile}"} Try more like: spamd_flags=${spamd_flags:-"-c -d -r -m 2 ${spamd_pidfile}"} You don't have enough memory in your machine to run twenty ~30MB spamd processes. Unless you are handling hundreds of thousands of messages per day, two or three spamds is enough. -- -Chuck