Skip to main content

Posts

CWP: How to Install tasklist or todolist for Rouncube

This plugin currently supports a local database as well as a Kolab groupware server as backends for tasklists and todo items storage. 1. Install the dependencies with Composer (This has to be done from the Roundcube root directory) # cd /usr/local/cwpsrv/var/services/roundcube # php composer.phar require sabre/vobject 3.3.3 # composer require kolab/tasklist Follow the snapshot instruction Edit the Configurations as Follows # pwd /usr/local/cwpsrv/var/services/roundcube # vi plugins/tasklist/config.inc.php // backend type (database, kolab) $config['tasklist_driver'] = ' database '; // default sorting order of tasks listing (auto, datetime, startdatetime, flagged, complete, changed) $config['tasklist_sort_col'] = 'auto'; // default sorting order for tasks listing (asc or desc) $config['tasklist_sort_order'] = 'asc'; Initialize the tasklist DataBase # cd plugins/tasklist/ # mysql roundcube < drivers/database/SQL/mysql.initia

CWP: How to Install Calendar for Rouncube

Goto the Rouncube Plugin Directory # cd /usr/local/cwpsrv/var/services/roundcube # composer require kolab/calendar Follow the snapshot instruction Edit the configuration as follows # vi plugins/calendar/config.inc.php // backend type (database, google, kolab) $config['calendar_driver'] = "database"; // default calendar view (agendaDay, agendaWeek, month) $config['calendar_default_view'] = "month"; // show a birthdays calendar from the user's address book(s) $config['calendar_contact_birthdays'] = true; // general date format (only set if different from default date format and not user configurable) $config['calendar_date_format'] = "dd-MM-yyyy"; // time format (only set if different from default date format) // $config['calendar_time_format'] = "HH:mm"; // short date format (used for column titles) // $config['calendar_date_short'] = 'M-d'; // long date format (used for

CWP: How to upgrade from RoundCube Mail Version 1.2.3 to RoundCube Mail Version 1.3.8

The new Version of Roundcube 1.3 have clear Interface with modern look also in this version some major security holes were fixed. It is recommended to update the roundcube to latest version. Under latest version you can also configure calendar plugin faultlessly which are available on roundcube plugins site. PHP Configuration As any other PHP application some of its aspects depend on PHP settings. You should use php.ini or .htaccess (Apache module) or .user.ini (CGI/FastCGI SAPI) depending on your server setup. Roundcube when running will check most critical settings, try to set them and let you know if something's wrong. Here's a minimal list of settings that you might need to use (with suggested value): # vi /usr/local/php/php.ini # vi /usr/local/cwp/php71/php.ini Memory limit: memory_limit=64M , Options that control logging: display_errors=Off, log_errors=On, error_log=logs/errors.log , Options that control file uploads (e.g. max attachment size): upload_max_filesize

CWP: How to Install new Theme (Roundcube Plus free skins ) for Roundcube

Visit the following website  https://roundcubeplus.com/portfolio for Roundcube Theme and select ' Skin - Litecube Free' and Follow the next procedure to download. After  successfully registration, You will get the License key and download link . $config['license_key'] = 'RCP-wZpzy---xrq8'; In order to use the skins or plugins, you must add your license key to the Roundcube config file. Edit the file config/config.inc.php and place this line at the end: # vi /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php $config['license_key'] = 'RCP-wZpzy---xrq8'; Roundcube Plus free skins add a new look to the Roundcube program. They are simplified versions of their commercial counterparts: they don't include the mobile support. Installation steps 1. Upload the tar.gz file to /usr/local/src directory 2. Copy the directories 'skins' and 'plugins' to the directory where your Roundcube is installed. # cd /usr/loc

CWP: How to Add/Enable Roundcube Plugins

Go to bottom of the configuration file of  /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php there is a list of plugins that Roundcube loads. The “archive”  ,  “zipdownload”   ,  “managesieve” and   “password”  plugins are already enabled. Go to the Plugin directory and list all the plugins # cd /usr/local/cwpsrv/var/services/roundcube/plugins/ # ll You can check all plugins from the plugins directory. Add the “markasjunk” ,    “emoticons” and   “new_user_dialog”  plugins so that the setting looks like this: # vi /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php $config['plugins'] = array(    'archive',    'zipdownload',    'managesieve',    'password',    'rcguard',   'markasjunk',    'emoticons',    'new_user_dialog', ); Plugin emoticons add smileys, and is responsible for the markasjunk plugin adds a toolbar button that moves the email to the Spam