Operating System - HP-UX
1832420 Members
3303 Online
110042 Solutions
New Discussion

sendmail: mailer local died with signal 13

 

sendmail: mailer local died with signal 13

HP-UX 10.20
sendmail 8.9.3

Suddenly (don't know what might have been changed) sendmail fails delivering mails to local users with the error message in the subject line.

As I have learned from the forum, there seems to be some problem with access permissions. But which file(s)?

I have checked those I could imagine (/etc/mail/sendmail.cf, /var/mail/*, /etc/passwd, /etc/inetd.conf, /var/adm/inetd.sec). Everything looks quite "normal".

Any ideas, what else I should check?

Thanks in advance!
7 REPLIES 7
Steve Steel
Honored Contributor

Re: sendmail: mailer local died with signal 13

Hi


Signal 13 is a SIGPIPE.


Thus you have a kernel problem

Try increasing maxssiz in your kernel


Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
Robin Wakefield
Honored Contributor

Re: sendmail: mailer local died with signal 13

Hi,

What is your local mailer
(Mlocal line in sendmail.cf).

rgds, Robin

Re: sendmail: mailer local died with signal 13

Mlocal is:
P=/usr/bin/rmail, F=lsDFMAw5:/|@qm9, S=10/30, R=20/40,
Robin Wakefield
Honored Contributor

Re: sendmail: mailer local died with signal 13

Hi,

you have a comma at the end of the line, so there must be one or two continuation lines for this mailer.

Assuming root resolves locally, what happens with:

echo test | /usr/lib/sendmail -v root

rgds, Robin.

Re: sendmail: mailer local died with signal 13

echo test | /usr/lib/sendmail -v root gives:
root... Connecting to local...
mailer local died with signal 13
root... Deferred

complete Mlocal lines (sorry):
P=/usr/bin/rmail,
F=lsDFMAw5:/|@qm9, S=10/30,
R=20/40, T=DNS/RFC822/X-Unix,
A=rmail -d $u

Concerning maxssize:
Current value ist 79*1024*1024. Isn't that enough?
Robin Wakefield
Honored Contributor

Re: sendmail: mailer local died with signal 13

Hi,

So:

echo test | /usr/bin/rmail -d root

gives you the same error?

rgds, Robin

Re: sendmail: mailer local died with signal 13

Good news: Problem solved.

Magically, the rmail executable seems to have been corrupted: Calling rmail directly gave a "Segmentation violation" error.
I copied rmail back from one of our other boxes and everything is ok again. (Strange though: cksum is identical for both rmail files).

Thanks to all for your suggestions.