Hi!
At the moment i'm using Roundcube v.2. Now i would like to switch to V.3 with additional plugins like Calendar, Extended Adressbook, Mailfilter.
Is MyRoundcube the right place to start or should i use the normal Roundcube with plugins? Are such plugins available?
Stefan
MyRoundCube is deprecated since it is based on v.0.2.1. There are a lot of v0.3 plugins but not those you mentioned above.
Oh OK so you'll not continue MyRoundcube? Do you know if such plugins are planned?
I'm in process to port MyRoundCube Addons to v0.3 plugins. See myroundcube - Project Hosting on Google Code (http://myroundcube.googlecode.com)
Download plugin collection and unzip into RoundCube plugins folder ::: Last Update 2009-09-30
Is there any roadmap? Or a list what is already working and which not?
Besides "minor" bugs all plugins hosted on the googlecode project should work. There is a ToDo-List on the project home page. There is no roadmap as I don't give myself deadlines.
hi
I have just installed roundcube 0.3.1 and overwrited the plugins folder with the contents of myroundcube-trunk-r-3061.zip
Is there a short howto? I could not activate plugins (i need accounts plugin at least, I have already created accounts table in mysql.)
thanks
g
Quote from: genkiz;22747hi
I have just installed roundcube 0.3.1 and overwrited the plugins folder with the contents of myroundcube-trunk-r-3061.zip
Is there a short howto? I could not activate plugins (i need accounts plugin at least, I have already created accounts table in mysql.)
thanks
g
indeed, I have the same question. How can we activate new plugin from "Myroundcube" to the new release 0.3.1 ?
Thank you
'accounts' plugin is incompatible with 0.3.1 at the moment. I'm working on an update. What are your problems to register other plugins? Just add the plugin folder name to main.inc.php configuration as you do with any other plugin.
Quote from: rosali;22765'accounts' plugin is incompatible with 0.3.1 at the moment. I'm working on an update. What are your problems to register other plugins? Just add the plugin folder name to main.inc.php configuration as you do with any other plugin.
Sorry, I can't find any related parameters in main.inc.php in config folder. I've plenty plugins in the directory, but I don't know the syntax to add params in config file ?
f.e.:
// List of active plugins (in plugins/ directory)
$rcmail_config['plugins'] = array(
"webcalendar",
"help",
"compose_addressbook",
"wrapper",
"globaladdressbook",
"keyboard_shortcuts",
"new_user_dialog",
"automatic_addressbook",
"forward_as_attachment",
"tinymce",
"remember_splitter",
//"debug_logger",
//"dblog",
"vcard_attach",
"vcard_attachments",
"sound_notifier",
"terms",
"remember_me",
"captcha",
"taskbar",
"listcommands",
"moreuserinfo",
"demologin",
"impressum",
"contactus",
"sendmessage",
"dnsbl",
"hmail_login",
"hmail_autoban",
"hmail_password",
"pwtools",
"hmail_autoresponder",
"hmail_forwarding",
"hmail_signature",
"accounts",
"register",
"limit_recipients",
"contextmenu",
"lang_sel",
"listcontrols",
"archivefolder",
"msglistcols",
"checked_identities",
"settings",
"savepassword",
"newuser",
"subscriptions_option"
);
thanks for your work
i will keep my eyes on updates
Quote from: rosali;22765'accounts' plugin is incompatible with 0.3.1 at the moment. I'm working on an update. What are your problems to register other plugins? Just add the plugin folder name to main.inc.php configuration as you do with any other plugin.
You'll be looking for something like this:
$rcmail_config['plugins'] =array();
Configured with some plugins.
$rcmail_config['plugins'] = array('settings','contextmenu','hmail_password','hmail_signature','hmail_forwarding','hmail_autoresponder');
Note, it is my understanding that some plugins rely upon other plugins so the order in which they appear is import in the array listing.