Hi Matt & list,
On 6/3/07, Matt Kaatman roundcube-dev@matt.kaatman.com wrote:
I can confirm item 3. I've seen that happen a few times. I can't figure out a way to reproduce it every time though.
It's odd, it doesn't log any errors in that situation either. I thought it was my box so I was checking all my logs and restarting my database and imap services and then I realized squirrelmail was still working fine so I closed the browser and reopened and roundcube worked like normal.
I tracked the error - apparently it's looking for $_SESSION['temp'] on the login process, but since it's not set - it errors out.
Thomas helped me track this one down, the quick fix is to do this (in main.inc, rcmail_login_form()):
$_SESSION['temp'] = true;
Hope that helps, Till