=============================== FROM Roundcube 0.6 - Bundle 1.0 =============================== NEWS ==== (*) global_config You get a better performance if you use this plugin. Merge all plugin configuration files into the config file of this plugin. You avaoid unnessecary file stats this way. (*) tinymce This plugin adds a virtual keyboard to the compose page. Copy _Jsvk_ folder into ./program/js/tiny_mce/plugins and register the plugin. (*) planner This is a forked version of https://github.com/roundcube-planner/planner/ REQUIREMENTS ============ The following plugins require _qtip_ plugin: (*) calendar (*) settings No need to register _qtip_ plugin. It is loaded automatically. CONFIGURATION ============= Unregister _savepassword_ and _settings_ plugin. These plugins are loaded automatically now. _config_ folder has been removed. Config file is now in plugin root folder: (*) accounts (*) archivefolder (*) blockspamsending (*) calendar (*) captcha (*) contactus (*) crawler (*) dblog (*) demologin (*) google_ads (*) hmail_autoban (*) hmail_autoresponder (*) hmail_forwarding (*) hmail_login (*) hmail_password (*) hmail_signature (*) hmail_spamfilter (*) idle_timeout (*) impersonate (*) lang_sel (*) logout_redirect (*) moreuserinfo (*) nabble (*) newuser (*) pwtools (*) register (*) request_saver (*) rss_feeds (*) settings (*) sticky_notes (*) summary (*) taskbar (*) terms (*) tinymce (*) webmail_notifier (*) wrapper The following plugins require re-configuration: (*) accounts (*) hmail_autoresponder (*) hmail_forwarding (*) hmail_password (*) hmail_signature (*) hmail_spamfilter (*) moreuserinfo (*) pwtools (*) taskbar =============================== FROM Roundcube 0.6 - Bundle 1.8 =============================== CONFIGURATION ============= (*) calendar The default CalDAV backend definition has to be re-configured: /* default CalDAV backend (null = no default settings) %u will be replaced by $_SESSION['username'] %gu will be replaced by google calendar user (requires google_contacts plugin) %p will be replaced by Roundcube Login Password %gp will be replaced by google calendar password (requires google_contacts plugin) %c will be replaced by the category a CalDAV is associated with */ $rcmail_config['default_caldav_backend'] = array( 'user' => '%gu', 'pass' => '%gp', 'url' => 'https://www.google.com/calendar/dav/%gu/events', 'cat' => 'https://www.google.com/calendar/dav/%gu/%c', 'auth' => 'basic', 'extr' => false, // external reminder service (f.e. google calendar reminders) ); =============================== FROM Roundcube 0.6 - Bundle 1.9 =============================== DATABASE ======== (*) calendar Alter tables 'events', 'events_cache' and 'events_caldav': 1. Field 'recurrence_id' must be type integer, length 10 2. Insert new field 'exdates' type text (accept null) =============================== FROM Roundcube 0.7 - Bundle 1.0 =============================== Notice: If you are using addressbook related plugins: You may get an ERROR 500 if the plugin is not bindend to task 'dummy'. If so, bind these plugins to task 'dummy': 1. Open ./plugins//.php 2. Find: public $task 3. Add 'dummy' to var task f.e.: public $task = 'mail|addressbook|dummy'; ================================= FROM Roundcube 0.7.1 - Bundle 1.0 ================================= DATABASE ======== (*) planner Add field 'created', type datetime, default NULL. ================================= FROM Roundcube 0.7.1 - Bundle 1.3 ================================= CONFIGURATION ============= (*) google_ads Re-configuration is required. We have now support for multiple skins. PATCH ===== (*) scheduled_sending Please apply patch 'sendmail.inc.patch' again. Reason: Hook in trunk passes 'folder' instead of 'mbox'. ================================= FROM Roundcube 0.7.1 - Bundle 1.4 ================================= CONFIGURATION ============= (*) pwtools (*) hmail_ ... Re-configuration is required. =================================== FROM Roundcube 0.7.1 - Bundle 1.4.1 =================================== NEWS ==== (*) plugin_manager Give your users the ability to enable/disable plugins. The plugin is highly configurable. I suggest to manage your plugins by this plugin instead to register them directly in main.inc.php. CONFIGURATION ============= (*) moreuserinfo (*) request_saver (*) calendar [new config values 'cal_tempdir', 'caldav_debug'] Re-configuration is required. REQUIREMENTS ============ (*) calendar: Requires http_auth plugin! (*) rss_feeds: Requires http_auth plugin!