On Wed, 16 Feb 2011 16:52:47 +0100, Marten Lehmann <[email protected]> wrote:
>> may be related to http://trac.roundcube.net/ticket/1485975 ?
>
> Thats very old but there has been an updated marked as "fixed" just one
> day ago: http://trac.roundcube.net/changeset/4547
>
> I will wait for for the 0.5.2 release to update then.
>
> Kind regards
> Marten
> _______________________________________________
> List info: http://lists.roundcube.net/dev/
> BT/5456fcb4
--
you can try to apply that patch to your running RC, it's a very small
change in
program/include/rcmail.php, just move 3 lines a few lines down.
with this patch applied you can provide feedback about if this fixes or not
your load.
that would be a very appreciated feedpack!!
@@ -1061,7 +1061,4 @@
public function shutdown()
{
- if (is_object($this->imap))
- $this->imap->close();
-
if (is_object($this->smtp))
$this->smtp->disconnect();
@@ -1073,4 +1070,7 @@
$book->close();
}
+
+ if (is_object($this->imap))
+ $this->imap->close();
// before closing the database connection, write session data
regards
-----------------------------
Carlos R. Pasqualini
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/8f4f07cd