Sentora Support Forums
Archive Folder in RoundCube - Printable Version

+- Sentora Support Forums (https://senforums.mach-hosting.com)
+-- Forum: Sentora Forum Archives (https://senforums.mach-hosting.com/forumdisplay.php?fid=5)
+--- Forum: Sentora Public Support Forums v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=32)
+---- Forum: Email Support v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=35)
+---- Thread: Archive Folder in RoundCube (/showthread.php?tid=792)



Archive Folder in RoundCube - Th0rkel - 12-23-2014

Hi @ all,

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

Thanks in advance for your help,
Th0rkel


RE: Archive Folder in RoundCube - Me.B - 12-23-2014

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');



RE: Archive Folder in RoundCube - Th0rkel - 12-23-2014

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.