Date: Tue, 27 Apr 2010 13:28:33 -0400 From: Michael Powell <nightrecon@hotmail.com> To: freebsd-questions@freebsd.org Subject: Re: Postfix signal 11 Message-ID: <hr76m0$kqc$1@dough.gmane.org> References: <31B26F73-D0EB-4923-9B5D-0BEDD8E6790C@rzweb.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?hr76m0$kqc$1>