I'm try to configure a server with centos 6.5 + apache + ispconfig + roundcube + ispconfig to roundcube plugin, but the "account" tab on roundube not want to appear... I see that there are some difference from 0.9 and 1.0 version of roundcube (only one config file, main config variable now is $config (instead of $rcmail_config))...it's possibile that somewhat broke the compatibility of plugin ? Someone have tried if the ispconfig plugin work with new roundcube ?
their are little changes, the identity select field will not work, needs patching, but account etc works for me out of the box. did you enable the plugin in the config? also do not forget to add before all ispconfig plugins the jqueryui
This is my section $config['plugins'] in defaults.inc.php Code: $config['plugins'] = array("jqueryui", "ispconfig3_account", "ispconfig3_autoreply", "ispconfig3_pass", "ispconfig3_spam", "ispconfig3_fetchmail", "ispconfig3_filter", "ispconfig3_forward", "ispconfig3_wblist"); It seems to be ok: i only removed auto-select plugin. I also try to re-install the plugin through svn, but always same problem: no "account" tab... How can i make a little "debug" to know where is the problem ?
Hi, I'am working on it too. I have added Code: $config['plugins'] = array("jqueryui", "ispconfig3_account", "ispconfig3_autoreply", "ispconfig3_pass", "ispconfig3_spam", "ispconfig3_fetchmail", "ispconfig3_filter", "ispconfig3_forward", "ispconfig3_wblist"); inside config -> config.inc.php and i can see plugins from roundcube settings. Problem is, when I try to change password or anything else. I always get: Soap Error: You do not have the permissions to access this function. I have Ispconfig3.0.5.4p1, Ubuntu LTS 12.04.4 and i don't know what to do next. I have been tried adding lines from Code: ispconfig3_accounts/config/config.inc.php and changed $rcmail_config to $config but without results. Login with soap works, but I don't know why it cant see permitions. Remote user have checked eeverything, mail, dns, server, from ispconfig remote user.
The error means that you havent added a remote user in ispconfig that has all the permissions as decsribed in the roundcube install instructions.
But I have also tried this: Code: UPDATE `remote_user` SET `remote_functions` = 'mail_user_get,mail_user_update,mail_alias_get,mail_forward_get,mail_forward_add,mail_forward_update,mail_spamfilter_user_get,mail_spamfilter_user_add,mail_spamfilter_user_update,mail_fetchmail_get,mail_fetchmail_add,mail_fetchmail_update,mail_fetchmail_delete,mail_user_filter_get,mail_user_filter_add,mail_user_filter_update,mail_user_filter_delete' WHERE `remote_user`.`remote_username` = 'TestRemoteUser' LIMIT 1 ; without any result.
This are not all functions and do not change thes evalues manually in the database. Just login to ispconfig, go to system > remote users and add a user where you select the required permissions. https://github.com/w2c/ispconfig3_roundcube/wiki/Installation-Instructions-(manual)
It tells: Code: Go to your ISPconfig panel and add a new remote user. (Tab "servers" > "Remote users") Tick Client functions Server functions Mail user functions Mail alias functions Mail fetchmail functions Mail user filter functions Mail spamfilter user functions Mail spamfilter policy functions Mail spamfilter whitelist functions Mail spamfilter blacklist functions But I can't find "Client functions" My screenshots: https://pliki.nikczemny.pl/public.php?service=files&t=c12bd8df443861b8e257043a0b41cf88 https://pliki.nikczemny.pl/public.php?service=files&t=fc16600aa8925fe12e07926265f42450
Either you have not ISPConfig 3.0.5.4p1 installed, you are not logged in as admin or you have the client module disabled for the admin, which is required to use the roundcube plugin.
I followed these instructions on a new install of ISPconfig and Roundcube 1.0.3. I see the account section but am getting "Soap Error: Bad Request" on most of the links in account. Any idea on where I can start troubleshooting? Thanks!!
Hi there... I have the same problem... i activatet the client module for the admin, but the "client functions" are not there look at my screen. i have used the expert install from ispconfig... maybe i deactivated the client module (also dns). how i check that and how do i install it? http://cloud.first-s0ul.de/f/0802bb1586/ http://cloud.first-s0ul.de/f/964f9812cb/
the autoreply does not load for me, any ideas to get it to work??? (everything else loads up right away)
Hi Till We are also getting Soap Error : Bad request on our roundcube webmail. When the user logs in and attempts to change the password its giving this error. Can you kindly help what setting needs to be done and where to sort this issue.
I had the same issue. It seemed to be a jQuery UI problem. Here is what i did to fix it: set the proper timezone in your Roundcube defaults.inc.php: Code: $config['timezone'] = 'Europe/Brussels'; (for example) Then in your config.inc.php, on the plugins line, make sure you load the jqueryui plugin before you load the ispconfig3_* plugins. example: Code: $config['plugins'] = array('jqueryui', 'additional_message_headers', 'emoticons', 'identity_select', 'ispconfig3_account', 'ispconfig3_autoreply', 'ispconfig3_fetchmail', 'ispconfig3_filter', 'ispconfig3_forward', 'ispconfig3_pass',... Hope that helps you out!