Re: [Exim] signal 11 exit

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Nico Erfurth
Ημερομηνία:  
Προς: Yasholomew Yashinski
Υ/ο: exim-users
Αντικείμενο: Re: [Exim] signal 11 exit
Yasholomew Yashinski wrote:
> These are filling up my logs, is this a known issue?
>
> Apr 20 13:29:26 mail /kernel: Apr 20 13:29:26 mail /kernel: pid 75410
> (exim-4.14-1), uid 26: exited on signal 11
> Apr 20 13:32:28 mail /kernel: Apr 20 13:32:28 mail /kernel: pid 75419
> (exim-4.14-1), uid 26: exited on signal 11
>
> This is on FreeBSD 4.4-RELEASE


No, it shouldn't be a known issue, Phil tries to keep exim non-crashing. ;)

Usual questions:
Since when does this happen?
Did you update OpenSSL recently?
Is exim linked to the correct database/openssl library?
Can you reproduce the problem? If yes, can you reproduce it and send us
a debuglog?

Hmmm, Hmmm, when we're talking about 4.14, there WAS an issue with the
plaintext authenticator, do you use it? If yes, try the following patch.

----------------------PATCH------------------------------------------
*** exim-4.14/src/auths/plaintext.c Tue Mar 11 12:20:19 2003
--- auths/plaintext.c    Wed Mar 19 16:11:44 2003
***************
*** 93,99 ****
     if (Ustrcmp(data, "=") == 0)
       {
       expand_nstring[++expand_nmax] = US"";
!     expand_nstring[expand_nmax] = 0;
       }
     else
       {
--- 93,99 ----
     if (Ustrcmp(data, "=") == 0)
       {
       expand_nstring[++expand_nmax] = US"";
!     expand_nlength[expand_nmax] = 0;
       }
     else
       {
----------------------PATCH------------------------------------------


Nico