Roundcube Community Forum

Third Party Contributions => API Based Plugins => Topic started by: spriebe on September 29, 2009, 09:59:05 AM

Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: spriebe on September 29, 2009, 09:59:05 AM
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
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: rosali on September 29, 2009, 10:30:10 AM
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.
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: spriebe on September 29, 2009, 11:50:06 AM
Oh OK so you'll not continue MyRoundcube? Do you know if such plugins are planned?
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: rosali on September 30, 2009, 03:21:14 AM
I'm in process to port MyRoundCube Addons to v0.3 plugins. See myroundcube - Project Hosting on Google Code (http://myroundcube.googlecode.com)
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: spriebe on September 30, 2009, 03:46:47 AM
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?
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: rosali on September 30, 2009, 05:19:46 AM
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.
Title: plugin install
Post by: genkiz on November 03, 2009, 04:30:49 PM
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
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: tparvais on November 04, 2009, 05:53:09 AM
Quote from: genkiz;22747
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


indeed, I have the same question. How can we activate new plugin from "Myroundcube" to the new release 0.3.1 ?

Thank you
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: rosali on November 04, 2009, 07:39:18 AM
'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.
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: tparvais on November 05, 2009, 05:08:41 PM
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 ?
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: rosali on November 05, 2009, 11:43:25 PM
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"            
  );
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: genkiz on November 06, 2009, 09:57:01 AM
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.
Title: Roundcube with Filter, Calendar, Ext. Adressbook, ...
Post by: toetag on November 06, 2009, 07:22:48 PM
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.