From owner-freebsd-questions@FreeBSD.ORG Tue Apr 27 17:25: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 5B44F1065676 for ; Tue, 27 Apr 2010 17:25:30 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id D53338FC19 for ; Tue, 27 Apr 2010 17:25:29 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1O6oXI-0006YI-A3 for freebsd-questions@freebsd.org; Tue, 27 Apr 2010 19:25:28 +0200 Received: from pool-141-156-222-249.res.east.verizon.net ([141.156.222.249]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Apr 2010 19:25:28 +0200 Received: from nightrecon by pool-141-156-222-249.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Apr 2010 19:25:28 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org connect(): No such file or directory From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Tue, 27 Apr 2010 13:28:33 -0400 Lines: 55 Message-ID: References: <31B26F73-D0EB-4923-9B5D-0BEDD8E6790C@rzweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: pool-141-156-222-249.res.east.verizon.net 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 17:25:30 -0000 Ron wrote: > After I did a big portupgrade on the April 25th, I am now getting a lot > these... > > +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. I've tried forcing a rebuild of postfix and all dependency > to no avail. I don't seem to be loosing any email. > > I'm assuming it's postfix (I don't use sendmail), but I could be wrong. > Anyone know what this is or where I should start looking? Did I not > upgrade something correctly after the big changes? > One quick thing you can check is your /etc/mail/mailer.conf: # Execute the Postfix sendmail program, named /usr/local/sbin/sendmail # sendmail /usr/local/sbin/sendmail send-mail /usr/local/sbin/sendmail mailq /usr/local/sbin/sendmail newaliases /usr/local/sbin/sendmail I've had this happen before when I did a system rebuild and the original system based sendmail became used again instead of the Postfix install. If this file got reset back to pointing at the system sendmail somehow you will see these errors. IIRC Postfix has a switch which selects where it gets installed. Perhaps the upgrade didn't put it back where it originally was located, in which case you are again executing the sendmail binary instead of the mail getting picked up by Postfix. This is what my current /etc/rc.conf looks like: #sendmail_enable="NONE" postfix_enable="YES" sendmail_enable="NO" #sendmail_flags="-bd" #sendmail_pidfile="/var/spool/postfix/pid/master.pid" #sendmail_procname="/usr/local/libexec/postfix/master" sendmail_outbound_enable="NO" sendmail_submit_enable="NO" sendmail_msp_queue_enable="NO" Also, if you are using sasl auth you might try rebuilding that as well. You might get more info looking in the /var/log/maillog too. Just a few quickies off the top of my head to get started with... -Mike