Opened 7 years ago

Closed 7 years ago

#1383703 closed Feature Patches (None)

Roundcube CVS crashes if mailbox empty

Reported by: gauret Owned by: nobody
Priority: 5 Milestone:
Component: Other Version: None
Severity: critical Keywords:
Cc:

Description

In Roundcube CVS, when there is no mail in the inbox,
it shows a blank screen after login, the browser keeps
loading, and nothing happens.
Here's a fix for that (it was not fixed these last weeks)

--- program/lib/imap.inc 11 Dec 2005 22:56:46 -0000 1.10
+++ program/lib/imap.inc 17 Dec 2005 17:13:52 -0000
@@ -1165,7 +1165,7 @@
        $result=array();
        $fp = $conn->fp;

-       if (empty($message_set)) return array();
+       if ($message_set == "1:0") return array();

        /*  Do "SELECT" command */
        if (!iil_C_Select($conn, $mailbox)){

Change History (1)

comment:1 Changed 7 years ago by thomasb

  • Milestone 0.1-beta2 deleted
  • Status changed from assigned to closed
Note: See TracTickets for help on using tickets.