From owner-freebsd-questions@FreeBSD.ORG Sun Aug 13 19:08:43 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 BA36116A4DE for ; Sun, 13 Aug 2006 19:08:43 +0000 (UTC) (envelope-from wodfer@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id D300A43D7B for ; Sun, 13 Aug 2006 19:08:34 +0000 (GMT) (envelope-from wodfer@gmail.com) Received: by nf-out-0910.google.com with SMTP id g2so1740436nfe for ; Sun, 13 Aug 2006 12:08:33 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=djDtDJOUZgWZd80MIQpSCUf/Vv5D3BVrXzLJWNaq/HlycfDu4s5AwFtWH8996RtEFlygQHAAfM8+b9uF0SieOn57jBf/rG3ve05Nq8YIzOYNOtzldjl1NKgOutxiEEsIiKBTNqnhJX/3r0EAKMgzJ3CgAjcUEtrOq84KfC8wL2M= Received: by 10.78.127.2 with SMTP id z2mr2970847huc; Sun, 13 Aug 2006 12:08:33 -0700 (PDT) Received: by 10.78.169.7 with HTTP; Sun, 13 Aug 2006 12:08:28 -0700 (PDT) Message-ID: <23ed14b80608131208w6625a33ct4d8f5771ecd7df14@mail.gmail.com> Date: Sun, 13 Aug 2006 21:08:28 +0200 From: "=?ISO-8859-1?Q?Andreas_Wider=F8e_Andersen?=" To: freebsd-questions@freebsd.org In-Reply-To: <44DB1E39.8030402@gmx.net> MIME-Version: 1.0 References: <23ed14b80608100433r63748457hf23763a6d42094aa@mail.gmail.com> <44DB1E39.8030402@gmx.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Reinstalling Sendmail? 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: Sun, 13 Aug 2006 19:08:43 -0000 On 8/10/06, Frank Staals wrote: > > Andreas Wider=F8e Andersen wrote: > > I have some problems with Sendmail (ref an older thread I posted): > > > > pid 72284 (sendmail), uid 0: exited on signal 11 > > pid 72505 (sendmail), uid 0: exited on signal 11 > > pid 72672 (sendmail), uid 0: exited on signal 11 > > > > This happens every 30 minutes. It started after I upgraded from 4.7 to > > 4.11p19. > > > > > > Is there some easy way I can reinstall sendmail completely getting it > > back > > to the way it is when installing a fresh system? I don't want to tweak > > and > > dig too much with this anymore so I rather start from scratch. > > > > I know it's part of the base system, but is there some way to do this? > > > > Thanks, > > Andreas > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to > > "freebsd-questions-unsubscribe@freebsd.org" > > > > > You can recompile sendmail, you'll have to have the kernel sources > installed though: > > # cd /usr/src/lib/libsm; make clean; make obj; make depend; make > # cd /usr/src/lib/libsmutil; make clean; make obj; make depend; make > # cd /usr/src/usr.sbin/sendmail; make clean; make obj; make depend; make; > make install > > you might want to read Jonathan Horne's page about configuring sendmail ( > among other services ) : > > http://dfwlpiki.dfwlp.org/index.php/Deploying_a_FreeBSD_Server#Configurin= g_Mail_Services Thanks! Nice tutorial. I have dowloaded all sources from cvs to my system. Should I delete some ol= d sources/working dirs/etc from when I've installed software before or from when I built world and kernel? I guess they're under /usr/src somewhere. Just worried about some old files with wrong config that might screw this up. Thanks, Andreas