[Dovecot] Command died with signal 11: & quot; /usr/libexec/dovecot/dovecot-lda& quot;

Timo Sirainen tss at iki.fi
Mon Oct 25 18:36:08 EEST 2010


On Mon, 2010-10-25 at 10:25 +0000, Xiiph wrote:

> I updated the server to 2.0.6 today, which I noticed already contained the above
> mentioned patch. Unfortunatenly, it did not solve the problem :(
> 
> Is there any workaround I could apply in the mean time, in order to prevent a
> bounce?

Run lda.sh instead:

#!/bin/sh

ulimit -c
cd $HOME
/usr/local/libexec/dovecot/dovecot-lda $@
code=$?

if [ $code = 134 ]; then
  # SIGABRT
  exit 75 # EX_TEMPFAIL
fi
exit $code

Hopefully with the ulimit -c you'll also get a core dump? gdb backtrace
from that would be very helpful then.



More information about the dovecot mailing list