From owner-freebsd-questions@FreeBSD.ORG Tue Apr 27 16:43:30 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88FB4106566B for ; Tue, 27 Apr 2010 16:43:30 +0000 (UTC) (envelope-from jamesbrandongooch@gmail.com) Received: from mail-pz0-f201.google.com (mail-pz0-f201.google.com [209.85.222.201]) by mx1.freebsd.org (Postfix) with ESMTP id 5BA438FC13 for ; Tue, 27 Apr 2010 16:43:30 +0000 (UTC) Received: by pzk39 with SMTP id 39so1693515pzk.7 for ; Tue, 27 Apr 2010 09:43:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=1n7yQOsSPi1u9WbCP/FmGpB2RMPPzGi5Jt70Kn5/Fnk=; b=hGOaWUHOqLZ+z1OMKGV8AiOZb5lzJc2QO3ewxswP7wExihDYaMGreVUVVjtgMyb81o iZKv9QkZuqF3PhpK+jRpcGy5O9yzgaLpeu36l79v/J+X5djPFxQD4iUzS8oY00erlmGD 71nRfezYgao1t3d7Aw0sa/4PPceLHP9GkkymY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=cestEpBDdfE3aFitrSIYqL4jUvkH3MUSuPffeMc3+Oh70iTJGP4abMjKsRrEk344U6 w4qWWe+BBXAxfnhfwaqL2RgDxm/ZhhkL+i5KqlI0LFlmWEa8PcMVDyjyq3bofte5t0zz coDaTrADXFupWGAJsqF9uZ52QpDqBnJ3DrriM= MIME-Version: 1.0 Received: by 10.141.108.19 with SMTP id k19mr2275578rvm.110.1272386597926; Tue, 27 Apr 2010 09:43:17 -0700 (PDT) Received: by 10.231.113.36 with HTTP; Tue, 27 Apr 2010 09:43:17 -0700 (PDT) In-Reply-To: <31B26F73-D0EB-4923-9B5D-0BEDD8E6790C@rzweb.com> References: <31B26F73-D0EB-4923-9B5D-0BEDD8E6790C@rzweb.com> Date: Tue, 27 Apr 2010 11:43:17 -0500 Message-ID: From: Brandon Gooch To: Ron Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: Postfix signal 11 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, 27 Apr 2010 16:43:30 -0000 On Tue, Apr 27, 2010 at 11:17 AM, Ron wrote: > After I did a big portupgrade on the April 25th, I am now getting a lot t= hese... > > +pid 53508 (conftest), uid 0: exited on signal 11 (core dumped) > +pid 28553 (smtp), uid 125: exited on signal 11 > +pid 28569 (smtp), uid 125: exited on signal 11 > +pid 28657 (smtp), uid 125: exited on signal 11 > > ..in my logs. =A0I've tried forcing a rebuild of postfix and all dependen= cy to no avail. =A0I don't seem to be loosing any email. > > I'm assuming it's postfix (I don't use sendmail), but I could be wrong. = =A0Anyone know what this is or where I should start looking? =A0Did I not u= pgrade something correctly after the big changes? > > Thanks Signal 11, or SIGSEGV, is a segmentation violation. It occurs when a program makes an invalid memory reference. The program exits (crashes) and leaves a dump of it's memory image on the file system somewhere. The memory image, a .core file, is somewhere on your file system and will allow the application (I assume Postfix) to be debugged (using gdb). -Brandon