Roundcube 0.3.1. problems

Discussion in 'Installation/Configuration' started by Mole, Feb 2, 2010.

  1. Mole

    Mole New Member

    Hello!
    Recently I reinstall my server, now I'm having:
    Ubuntu 9.10
    ispconfig 2.2.35
    Roundcube 0.3.1.
    All installed as described http://www.howtoforge.com/perfect-server-ubuntu-9.10-karmic-koala-ispconfig-2
    All backups made manually - /var/www/webX/web and /var/www/webX/user directory's + MySQL dumps...

    But no I have 2 problems with Roundcube 0.3.1. (installed as package from ispconfig panel):
    1.)I have only 1 folder - Inbox (no Trash, Sent etc., as it was before)
    2.)I can not read some mails (some new I can open/read, some - I cannot (when I try to open it, I get blank page))

    Mails, which I can not open/read using Roundcube, I can read using SquirrelMail or Webmail...

    Where can be the problem? Is it Roundcube bug?

    Thank You!
     
  2. Hans

    Hans Moderator Moderator

    How to create default folders in ROundCube webmail

    The folders INBOX, OUTBOX, DRAFTS, SENT & TRASH, are not created by default, because this is disabled within the RoundCube configuration file, which is the file:
    /home/admispconfig/ispconfig/web/roundcubemail/config/main.inc.php.

    To enable this function you need to change:

    Code:
    // automatically create the above listed default folders on login
    $rcmail_config['create_default_folders'] = FALSE;
    into:

    Code:
    // automatically create the above listed default folders on login
    $rcmail_config['create_default_folders'] = TRUE;
     
  3. Mole

    Mole New Member

    Thanx!
    Sorry - I've forgot it...
    What about with my 2nd problems - returning Blank page when trying to open e-mail?
     
  4. Mole

    Mole New Member

    Problem solved!
    apt-get install libxml2-dev and and other packages
    then reinstall ispconfig... now all is OK! ;-)
     
  5. hahni

    hahni New Member

    What is the reason for ISPConfig-Reinstall after "apt-get install libxml2-dev"?
     
  6. Hans

    Hans Moderator Moderator

    RoundCube needs the DOM-XML extention to function properly.
     
  7. hahni

    hahni New Member

    Very very great! RoundCube is working :)
     

Share This Page