Roundcube 1.0.0 released

Are you talking about pigeonhole=yes option? So the plugin line gets added to the array, but you wouldn't like it to be added, right?
 
Yes, that and the password plugin aswell.

I mean, if someone is using a custom config.inc.php it should know (or at least take the config.inc.php from an already installed version which should already have those plugins) what to enable or not.

The goal is keep the custom config.inc.php untouched as more as possible, the actual only thing important to "update" is the mysql connection line.

Thanks

Best regards
 
I did "./build roundcube" this morning and it udpated me to 1.0 without me making any version changes. Custombuild must have been updated yesterday. It's working now!
 
Something happened with this latest upgrade. I have 2 servers with older versions of php installed (5.2.x) due to customer incompatibility to the later PHP versions.

In the past Roundcube didn't upgrade to the latest versions but how all the sudden I'm on v 1.0 of RC and I is not longer working. I'm guessing that wasn't supposed to be the case?
 
Yes, you have to upgrade to 5.3.x . I have 1500 web pages on our server. We migrate to 5.3 with no problem. The mail problem you have to deal is register globals. Other things can be solved with .htacces on user basis.
 
I've got update_webapps set to yes, and overnight RoundCube was updated. So I suppose it's now set for automatic update and won't automatically fall back any longer.

That said I've noticed a bit of undesirable behavior:

1. Though the managesieve plugin is installed, I can't access my Filters. The error message I get is Unable to connect to server. Obviously I'm not using the default port used by DirectAdmin. Anyone know offhand which two files need to be in synchronization for this to work?

2. Seems to be new behavior when managing emails. Looking at any of my folders, I delete an email. Doesn't matter if I delete it with Del keyboard shortcut or by dragging it to the Trash folder, though the cursor droops down to the next email in the list, it never shows in the preview screen, nor does the status change to Read. I can read the email by double-clicking to open it, or I can manually switch to another email and back, and it will then appear. in the preview pane (preview is turned on in settings).

3. When I'm replying to an email (I do this in it's own window) and send, as soon as the email is sent, the list view refreshes, no email is selected, and no email appears in the preview screen.

These new behaviors above make RoundCube a lot less usable that it was before. Though I haven't made any settings changes, I've searched to find anything I could change to affect these behaviors, and I can't find any.

Is anyone else experiencing any of these problems?

Jeff
 
Hi Jeff,

i did notice same issue with managesieve plugin.

The port in plugin config is set to null, CB install pigeonhole on port 2000 if i'm correct, default is 4910 (or 4190 dont remember now).

You need to edit /var/www/html/roundcube/plugins/managesieve/config.inc.php at the 5th line

$config['managesieve_port'] = null;

to become

$config['managesieve_port'] = 'YOUR-PORT';

I can confirm the second issue, i suppose a bug on RC side have to be opened.

Can confirm the 3rd aswell,but this may not be a bug actually as the 2nd one,

Best regards
 
I have update roundcube in custombuild but Now i receive this error

403 forbidden

Forbidden

You don't have permission to access /roundcube on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Apache/2 Server at lnx2.slhosting.it Port 80

Do you have any suggestion?

Thanks
 
Jeff,

i did test a brand new RC 1.0.0 installation and ive noticed that the issue #2 doesnt appear, so when i delete an email it does go on next mail and mail content get show correctly ONLY if i use the trash icon.

Move the mail into trash and/or use DEL key on keyboard make the next mail not showed

EDIT: Using trash icon on production server show next email correctly aswell, so, the issue is on "move" to trash and with "del" key.

Regards
 
Last edited:
Some servers chmod'ed config.inc.php with web apps:apache and 440 permission. That leads to "config.inc.php was not found" error when accessing roundcube. Is that something CB code should do?

Thanks.
 
That's strange, it should chmod webapps:webapps, if you do:

chown -R webapps:webapps /var/www/html/roundcube/*

Does it work?

Regards
 
i have updated 2 Centos 6.5 boxes without problems, i dont have that problem wich Sellerone points to
 
Of course, I need to manual change the permission, then it is working back. Just wondering something wrong in CB code that some strange things still happen.

That's strange, it should chmod webapps:webapps, if you do:

chown -R webapps:webapps /var/www/html/roundcube/*

Does it work?

Regards
 
rancidio could you paste output for

ls -l /var/www/html

Thanks


-rw-r--r-- 1 webapps webapps 44 26 ago 2011 index.html
lrwxrwxrwx 1 webapps webapps 46 6 ago 2013 phpMyAdmin -> /var/www/html/phpMyAdmin-3.5.8.2-all-languages
drwxr-xr-x 8 webapps webapps 4096 6 ago 2013 phpMyAdmin-3.5.8.2-all-languages
-rwxr-xr-x 1 webapps webapps 68 26 ago 2011 redirect.php
lrwxrwxrwx 1 webapps webapps 19 7 mag 04:20 roundcube -> roundcubemail-1.0.0
drwxr-xr-x 10 admin admin 4096 7 mag 04:22 roundcubemail-1.0.0
lrwxrwxrwx 1 webapps webapps 19 23 dic 2011 squirrelmail -> squirrelmail-1.4.22
drwxr-xr-x 16 webapps webapps 4096 23 dic 2011 squirrelmail-1.4.22
 
gate2vn:

Just scsi may know, but on my side it does work correctly, could you try to update custombuild and then re-install roundcube?

rancidio:

The issue may be this: drwxr-xr-x 10 admin admin 4096 7 mag 04:22 roundcubemail-1.0.0

It should not be owned by admin:admin

run: chown -R webapps:webapps /var/www/html/roundcubemail-1.0.0/

Regards
 
rancidio:

The issue may be this: drwxr-xr-x 10 admin admin 4096 7 mag 04:22 roundcubemail-1.0.0

It should not be owned by admin:admin

run: chown -R webapps:webapps /var/www/html/roundcubemail-1.0.0/

Regards


Thank you so much!!! Now function

But maybe the problem is in custombuild when update rouncube change the owned.

Thanks a lot
 
At this point yes, should be a "missing", i would suggest scsi to add a chown command (just for be sure) at the end of roundcube installation (or even every webapp installation).

Regards
 
Back
Top