Sentora Support Forums

Full Version: Archive Folder in RoundCube
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi @ all,

how can I add an Archive folder to my RoundCube?
I know there is a Plugin for it (https://myroundcube.com/myroundcube-plug...der-plugin), but I don't know how to install it / enable it.

Thanks in advance for your help,
Th0rkel
http://trac.roundcube.net/wiki/Doc_Plugins

Quote:Installing Plugins and Activating Plugins

After downloading a plugin, extract (unzip) it in Roundcube's plugins directory. Doing this correctly should result in a subdirectory plugins/<name of plugin> which contains all of the plugin's files.

A plugin is not used until you enable it by adding its directory name to the config option plugins, as an array element. This is done by editing your local config/config.inc.php file. Only plugins listed in the array will be enabled.

For example, to enable plugins named additional_message_headers and archive, config/config.inc.php should contain this line:

$rcmail_config['plugins'] = array('additional_message_headers', 'archive');
Thank you, I solved it.

For all others wondering, how to enable plugins in RoundCube, it's really simple.

- Download your plugin and copy it to \etc\sentora\panel\etc\apps\webmail\plugins
- Go to \etc\sentora\configs\roundcube
- Open  config.inc.php (Roundcube 1.0.x and newer) or main.inc.php (Roundcube 0.9.5)
- Search for this line: $rcmail_config['plugins'] = array('managesieve');
- Add the name of your plugin to the array ex.: $rcmail_config['plugins'] = array('managesieve', 'archive');
- Login to your Roundcube Webmail and off you go!

For a list of all installed Plugins, click on "About" in the top left corner.

I hope this helps some of you.