RoundCube 0.1-stable package available for ISPConfig

Discussion in 'General' started by Hans, Mar 4, 2008.

  1. nocture

    nocture New Member

    Hans
    but where is recycle bin and spam folder are located - why they are not shown?
     
  2. Hans

    Hans Moderator ISPConfig Developer

    @nocture

    The folders are not shown in RoundCube-0.1-stable by default.

    To display the default folders, change the line
    // automatically create the above listed default folders on login
    $rcmail_config['create_default_folders'] = FALSE;

    into:

    // automatically create the above listed default folders on login
    $rcmail_config['create_default_folders'] = TRUE;

    within your file /home/admispconfig/ispconfig/web/roundcubemail/config/main.inc.php
     
    Last edited: Mar 11, 2008
  3. Hans

    Hans Moderator ISPConfig Developer

    New howto for RoundCube 0.1-stable with MySQL

    Today i've updated my howto which explains how to setup RoundCube 0.1-stable with MySQL on an ISPConfig server. This guide explains how to configure RoundCube manually and (alternative) with the installer RoundCube script as well. The howto is available here.

    The howto is quiet self explaining, but if support is still needed, ask your questions here.

    :)
     
  4. daff

    daff New Member

    Hallo everybody,

    I think I found a bug in Roundcube. When I have no mails in my inbox and I switch to another folder I can not sort the folder. But when I have mails in the inbox everything works fine. I tried this with FF 2, 3 B4, IE 7, IE 8 B1 and Safari 3.1 - it works with no browser.

    daff
     
  5. Hans

    Hans Moderator ISPConfig Developer

    That's no bug, because when there is nothing in the folder, there is nothing to sort. Same behaviour when you have only 1 mail in your folder. If you have more then 1 mail in on of your folders then there is something to sort.
     
    Last edited: Mar 16, 2008
  6. daff

    daff New Member

    Yes but when I change to another folder where more when 1 mails are inside I can't still change the order.
     
    Last edited: Mar 16, 2008
  7. Hans

    Hans Moderator ISPConfig Developer

    I just verfied that, but i can't confirm that behaviour.
    Do you have the following lines within your config/main.inc.php file:

    // default sort col
    $rcmail_config['message_sort_col'] = 'date';

    // default sort order
    $rcmail_config['message_sort_order'] = 'DESC';

    (I am using Opera as my browser).

    What happens, when you reload the page?
     
    Last edited: Mar 16, 2008
  8. daff

    daff New Member

    The entries in the main.inc.php are set. I can also reproduce this problem in Opera. I have created a test account where you can test it:
    https://www.kirche-c.de:81/roundcubemail/
    user:test
    pw:test
    When you move a mail from the trash to the inbox and reload it works but then you don't do this the bug still apears.
     
  9. Hans

    Hans Moderator ISPConfig Developer

    I've logged in within the test account and i see what you mean.
    Maybe it has something to do with your server. (it's very slow as well).
    The weird thing is that if you double click, you can sort descending or ascending.
     
  10. daff

    daff New Member

    can you reproduce this error on your system ?
     
  11. Hans

    Hans Moderator ISPConfig Developer

    After having a closer look to the problem, I think indeed that sorting is not working 100% as it should be.
    I don't see the behaviour, like you have (doubleclick) but SOMETIMES sorting is not possible indeed.
    There is also a similar problem, when you view images.
    Have a look here: http://trac.roundcube.net/ticket/1484804

    I guess this issue will be fixed in a next release.

    Thanks for your report.
     
  12. daff

    daff New Member

    I have on more problem (evt. bug? ). Roundcube don't show the correct number of new messages in the inbox. After a while (i guess after a autoreload of the program) it shows the correct number.
     
  13. Hans

    Hans Moderator ISPConfig Developer

  14. madmucho

    madmucho ISPConfig Developer ISPConfig Developer

    Today one of my customers report bug in roundcube, user cant delete mail in own folders, because roundcube dont create trash folder...isue has been solved here
    http://trac.roundcube.net/ticket/1471594

    Next thing i see is when you write mail and check you want to be informed about delivery...response have webx_user mail addres instead normal..

    Have someone idea where rewrite this behavior?
     
  15. Hans

    Hans Moderator ISPConfig Developer

    RoundCube 0.1.1 has been released, please have a look here.
     
  16. mumbly

    mumbly Member

    How can i filter ***SPAM*** tagged messages to go automatically in my junk folder ?
     
  17. falko

    falko Super Moderator ISPConfig Developer

    Do you mean in your email client? Most email clients allow you to set up filter rules, so you could set up a filter rule that checks if the subject contains ***SPAM*** and then puts the mails into the junk folder.
     
  18. mumbly

    mumbly Member

    I mean in Roundcube !

    I know there is a hack for Roundcube from http://temp.leveilleur.net/func.rar for the func.inc file. Once downloaded, and you change :

    // START MODIFICATION BY [email protected] - SPAM FIX
    // Check to see if this subject contains our spam line and is not in the
    // designated junk mailbox

    if ( $mbox=='INBOX' ) {
    //if ( ( strpos( $cont, $CONFIG['spam_subject']) ) && ( $mbox != $CONFIG['junk_mbox'] ) ) {
    if ( ( preg_match($CONFIG['spam_subject'],$cont) ) && ( $mbox != $CONFIG['junk_mbox'] ) ) { $is_spam = 1;
    }
    }

    and in config.main.inc, you just put :
    $rcmail_config['spam_subject'] = '/^\*\*\*SPAM\*\*\*/';

    With that, all mails tagged with ***SPAM*** go directly in the junk folder. That's cool when you have hundred of spam mails by day !

    BUT :
    it does not work anymore with the new RoundCube 0.1-stable package
    I mean there are big troubles sending mails with this hack ! You can perfectly receive mails but when you send a mail, it freezes roundcube saying it is "sending mail" ... if could wait 30 minutes, it still the same !
    (I must say it works PERFECTLY without this hack)

    Any idea ???
     
    Last edited: Apr 25, 2008
  19. daveb

    daveb Member

Share This Page