From owner-freebsd-questions Sun Jan 18 09:07:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA23045 for questions-outgoing; Sun, 18 Jan 1998 09:07:37 -0800 (PST) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from emu.sourcee.com (emu.sourcee.com [199.201.159.173]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA23038 for ; Sun, 18 Jan 1998 09:07:16 -0800 (PST) (envelope-from nrice@emu.sourcee.com) Received: (from nrice@localhost) by emu.sourcee.com (8.8.8/8.8.3) id MAA23053; Sun, 18 Jan 1998 12:07:08 -0500 (EST) Message-ID: <19980118120708.37299@emu.sourcee.com> Date: Sun, 18 Jan 1998 12:07:08 -0500 From: Norman C Rice To: "Randy A. Katz" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SENDMAIL rejecting connections References: <3.0.5.32.19980115142633.02e1c7b0@ccsales.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <3.0.5.32.19980115142633.02e1c7b0@ccsales.com>; from Randy A. Katz on Thu, Jan 15, 1998 at 02:26:33PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk On Thu, Jan 15, 1998 at 02:26:33PM -0800, Randy A. Katz wrote: > Hello, > > Sorry if this question has been posed before but I'm in a small bind. > Sendmail is saying rejecting connections on ports 25: load average (it must > be too high). This is on a high load server. Is there any way of increasing > the value or telling sendmail that it shouldn't turn off. > > HELP!!! > > Thanx, > Randy Katz Hello Randy, What version of sendmail is your system running? sendmail -d0.1 < /dev/null If your system is running V8.7 or newer, set `RefuseLA' to a higher value in /etc/sendmail.cf and HUP sendmail. I believe it defaults to 12. # load average at which we refuse connections O RefuseLA=12 If your system is running an older version of sendmail, set `X' to a higher value in /etc/sendmail.cf and HUP sendmail. # load average at which we refuse connections OX12 If you want to disable the load average checking (not that I am recommending it), try #define LA_TYPE LA_ZERO in the appropriate section (BSD 4.4) of /usr/src/usr.sbin/sendmail/src/conf.h, then build and install the new version. -- Regards, Norman C. Rice, Jr.