Download package from here
Unzip Package into a temporary folder
Each folder represents a plugin. Copy plugin folders you wish to use into [roundcube_folder]/plugins.
Goto each new plugin folder and follow these instructions:
If the plugin has a SQL folder:
Adjust "Roundcube" Database as shown in the mysql.sql script. By default MyRoundcube plugins support MySQL database. We are happy to include SQL scripts for other databases. Your contribution is welcome.
If the plugin has a LOCALIZATION folder:
Check if your native language is present. Roundcube supports the following languages:
Albanian (Shqip): sq_AL Arabic (العربية): ar_SA Armenian (Հայերեն): hy_AM Asturiana (Asturianu): ast Azerbaijani (Azəri): az_AZ Basque (Euskara): eu_ES Bengali (বাংলা): bn_BD Bosnian (Bošnjački): bs_BA Breton (Brezhoneg): br Bulgarian (Български): bg_BG Catalan (Català): ca_ES Chinese (普通话): zh_CN Chinese (國語): zh_TW Croatian (Hrvatski): hr_HR Czech (Česky): cs_CZ Danish (Dansk): da_DK Dari (ﻯﺭﺩ): fa_AF Deutsch (Deutsch): de_DE Deutsch (Schweiz): de_CH Dutch (Nederlands): nl_NL English (GB): en_GB English (US): en_US Esperanto: eo Estonian (Eesti): et_EE Finnish (Suomi): fi_FI Flemish (Vlaams): nl_BE French (Français): fr_FR Galician (Galego): gl_ES Georgian (ქართული): ka_GE Greek (Ελληνικά): el_GR Hebrew (עברית): he_IL Hindi (हिनदी): hi_IN Hungarian (Magyar): hu_HU Icelandic (Íslenska): is_IS Indonesian (Bahasa Indonesia): id_ID Irish (Gaedhilge): ga_IE Italian (Italiano): it_IT Japanese (日本語): ja_JP Korean (한국어): ko_KR Kurdish (Kurmancî): ku Latvian (Latviešu): lv_LV Lithuanian (Lietuviškai): lt_LT Macedonian (Македонски): mk_MK Malay (Bahasa Melayu): ms_MY Marathi (मराठी): mr_IN Nepali (नेपाली): ne_NP Norwegian (Bokmål): nb_NO Norwegian (Nynorsk): nn_NO Pashto: ps Persian (دری): fa Polish (Polski): pl_PL Portuguese (Brasil): pt_BR Portuguese (Português): pt_PT Romanian (Româneşte): ro_RO Russian (Русский): ru_RU Serbian (Српски): sr_CS Sinhalese (සිංහල): si_LK Slovak (Slovenčina): sk_SK Slovenian (Slovenščina): sl_SI Spanish (Argentina): es_AR Spanish (Español): es_ES Swedish (Svenska): sv_SE Thai (ไทย): th_TH Turkish (Türkçe): tr_TR Ukrainian (Українська): uk_UA Vietnamese (Tiếng Việt): vi_VN Welsh (Cymraeg): cy_GB
If the plugin has not been translated yet, please contribute us with a translation. Copy "en_US.inc" to "[lg_LG].inc", translate labels and messages, save the file UTF-8 encoded (without BOM/Signature) and mail us your translation, or use our Translation Tool.
If the plugin has a CONFIG folder or a "config.inc.php.dist" file in the plugin root folder:
Copy "config.inc.php.dist" to "config.inc.php". Open the file and adjust the configuration settings.
Requirement/Dependencies:
Special requirements or dependencies are mentioned on top of the main plugin script. The main plugin script is located at [plugin_name]/[plugin_name].php. Generally plugins which contains "hmail" in their names require hMailserver.
Finally register the plugin ...
Goto [roundcube_folder]/config and open main.inc.php. Add [plugin_name] to $rcmail_config['plugins'] array. Our plugins array looks as follows:
$rcmail_config['plugins'] = array( "sticky_notes", "folderbuttons", "webmail_notifier", "markasjunk2", "template_objects", "blockspamsending", "logout_redirect", "nabble", "searchbox", "webcalendar", "crawler", "copymessage", "compose_addressbook", "wrapper", "globaladdressbook", "google_contacts", "plaxo_contacts", "automatic_addressbook", "keyboard_shortcuts", "new_user_dialog", "forward_as_attachment", "tinymce", "remember_splitter", "dblog", "vcard_attach", "vcard_attachments", "sound_notifier", "terms", "remember_me", "captcha", "listcommands", "moreuserinfo", "demologin", "impressum", "contactus", "sendmessage", "dnsbl", "hmail_login", "hmail_autoban", "hmail_password", "pwtools", "hmail_autoresponder", "hmail_forwarding", "hmail_signature", "hmail_spamfilter", "accounts", "register", "limit_recipients", "contextmenu", "lang_sel", "rss", "listcontrols", "archivefolder", "msglistcols", "checked_identities", "settings", "savepassword", "newuser", "subscriptions_option", "google_analytics", "taskbar", "summary" );
In case of any problems ...