Mailing List Archive

[Bug 384] 0x000b: terminated by signal 11
http://www.exim.org/bugzilla/show_bug.cgi?id=384





------- Additional Comments From info@shadowfox.biz 2006-10-04 23:00 -------
I have the same problem on Fedora Core 4. I'm using http://www.directadmin.com
too but I guess it's not related to the problem because there is no mail send
from the controlpanel.

It happends only when using the PHP mail(); function. The message is getting
freezed immediatly. I installed Exim as follow:

http://help.directadmin.com/item.php?id=125
http://help.directadmin.com/item.php?id=126

I'm using PHP 5.1.6 + Apache 2.0.59. Sending mail through SMTP or webmail is not
a problem at all. I guess it is a PHP or EXIM problem.



------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.

--
## List details at http://www.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
[Bug 384] 0x000b: terminated by signal 11 [ In reply to ]
http://www.exim.org/bugzilla/show_bug.cgi?id=384





------- Additional Comments From floris@geekhq.nl 2006-10-04 23:06 -------
Recompiling exim fixed it for me. Perhaps try to recompile php as well. The
problem was that exim was linking with the wrong openssl version. This may be
the case for php as well.



------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.

--
## List details at http://www.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
[Bug 384] 0x000b: terminated by signal 11 [ In reply to ]
http://www.exim.org/bugzilla/show_bug.cgi?id=384





------- Additional Comments From info@shadowfox.biz 2006-10-04 23:14 -------
(In reply to comment #4)
> Recompiling exim fixed it for me. Perhaps try to recompile php as well. The
> problem was that exim was linking with the wrong openssl version. This may be
> the case for php as well.

I thought that too... recompiled everything after openssl upgrade... :(

Build Date Oct 3 2006 22:19:47
Exim hour ago two times :P

I dont get it anymore



------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.

--
## List details at http://www.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
[Bug 384] 0x000b: terminated by signal 11 [ In reply to ]
http://www.exim.org/bugzilla/show_bug.cgi?id=384





------- Additional Comments From floris@geekhq.nl 2006-10-04 23:36 -------
I take it you followed these steps as well (last post)?
http://www.directadmin.com/forum/showthread.php?s=&threadid=14533&perpage=20&pagenumber=2

If nothing works, perhaps you can use my hack to at least crank the troublesome
mails out with a delay.

#!/usr/local/bin/php
<?php
if (!file_exists("/tmp/mail_flush.lock")) {
echo "Passed lock test\n";

shell_exec("touch /tmp/mail_flush.lock");

$files = explode("\n", trim(shell_exec("ls /var/spool/exim/msglog")));

foreach($files as $file) {
if (!empty($file)) {
echo "Processing $file... ";
shell_exec("exim -M $file");

if (file_exists("/var/spool/exim/msglog/$file")) {
echo "NOT delivered\n";
shell_exec("mv /var/spool/exim/msglog/$file /root/oldspoolmails");
} else {
echo "delivered\n";
}
}
}

shell_exec("rm -f /tmp/mail_flush.lock");
}
?>



------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.

--
## List details at http://www.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##