From the list below choose one of our FAQs topics, then select a FAQ to read. If you have a question which is not in this section, please contact us .

What does the Multiple Message Selection plugin do?

The Multiple Message Selection adds a checkbox to select messages. Any action (delete, forward) will be performed for the group of selected messages.

multiple message selection plugin

The Gear (visible in screenshot) allows you to choose the columns displayed.

What are HTML5 desktop notifications and how do I use them for Roundcube?

HTML5 notifications allow Roundcube to post notifications to your operating system.

To enable desktop notifications on a Mac: Roundcube Settings, Preferences, Mailbox View.

desktop notifications plugin

Notifications can be configured to play a sound and display alerts or banners.


Source
https://plugins.roundcube.net/packages/kitist/html5_notifier

Version 0.5.2
https://github.com/kitist/html5_notifier/tree/master

License
GPL-3.0+

What does Roundcube log and how do I access the logs ?

Roundcube Logging to File

Roundcube and plugins save logs to this directory

/usr/local/topicdesk/roundcube/WebApp/logs/

List your available logs:

ls /usr/local/topicdesk/roundcube/WebApp/logs/

The default log settings are currently:
$config['per_user_logging'] = false;
$config['smtp_log'] = true;
$config['log_logins'] = false;
$config['log_session'] = false;
$config['imap_log_session'] = false;

Defaults can change, you should check the defaults for your installation be reviewing this file:

/usr/local/topicdesk/roundcube/WebApp/config/defaults.inc.php

To make changes, add the proper line with your change to:

/usr/local/topicdesk/roundcube/WebApp/config/config.inc.php


Roundcube can display errors as they are encountered, this can be easier than reading a log file.

In your roundcube configuration file: /usr/local/topicdesk/roundcube/WebApp/config/config.inc.php

Add or edit the following line so you have:

$config['debug_level'] = 4;

Remove the line to when done troubleshooting.

What does the Image Paster plugin do?

The Image Paster plugin allows you to paste an image directly into the body of an email.

Very useful when sending screenshots

image_paster plugin


Source
https://plugins.roundcube.net/packages/mat_krauser/image_paster

Version 1.0
https://github.com/mkrauser/roundcube_image_paster/tree/v1.0

License
GPL-3.0+

How do I enable and disable Roundcube plugins?

This article covers how to enable and disable plugins, but does not cover how to configure any specific plugins.

IMPORTANT: A misconfigured plugin could cause roundcube to fail. Always backup before making changes.

To see a list of your available plugins

ls /usr/local/topicdesk/roundcube/WebApp/plugins/
Let’s be friendly and enable: emoticons

Plugins are enabled/disabled in the roundcube configuration file. We’ll use pico to edit the file.

sudo pico /usr/local/topicdesk/roundcube/WebApp/config/config.inc.php

Look for the plugin array, it will look something like this
$config['plugins'] = array('image_paster','html5_notifier','chbox','carddav','managesieve');

To enable show_additional_headers add it to the array, so it looks like this:
$config['plugins'] = array('image_paster','html5_notifier','chbox','carddav','managesieve','emoticons');

Logout and Login to Roundcube and now you have:

Roundcube WebMail Emoticons

To disable plugins

If a plugin causes roundcube to fail or you simply don’t need it – you remove the plugin from the array.

sudo pico /usr/local/topicdesk/roundcube/WebApp/config/config.inc.php