Hi
I have problem with creating new folders in roundcube 0.8.4 (also the same problem in debian wheeze version 0.7.2). Input for new folder name is readonly. After removing readonly attribute using Firebug I can create new folder without problems.
Thanks,
Andrew
0.8.4 no longer supported!
Please update to the latest release 0.9.4.
Thanks!
Sorry, mistake. I have version 0.9.4.
Ok, i found solution, It was plugin autoreply (http://www.debiantutorials.com/configuring-goldfish-autoresponder-for-postfix/):
function fadeOptions (activate)
{
var fields = $(".boxcontent input[type=text], .boxcontent textarea");
if (activate)
fields.removeAttr('readonly').fadeTo(0, 1);
else
fields.attr('readonly', 'readonly').fadeTo(0, 0.4);
}
changed to:
var fields = $("form#autoreply-form .boxcontent input[type=text], form#autoreply-form .boxcontent textarea");
Thanks
Hello,
Thanks for sharing your solution,
It is working with 0.7 version.