Roundcube Community Forum

 

SieveRules (Managesieve) how to show this in the roudcubemail

Started by prinzzcheese, October 15, 2013, 11:01:44 PM

Previous topic - Next topic

prinzzcheese

Hi

this is the link http://www.tehinterweb.co.uk/roundcube/#pisieverules
were i want to have FILTER plugins that visible in roundcubmail

here is the screenshot: http://www.tehinterweb.co.uk/roundcube/plugins/sieverules.jpg

in the readme file

there is install procedure:

Install
-------
* Place this plugin folder into plugins directory of Roundcube - Done
* Add sieverules to $rcmail_config['plugins'] in your Roundcube config - not sure


Modified:
// List of active plugins (in plugins/ directory)
$rcmail_config['plugins'] = array(sievereules); <----- not sure if this is correct


when i checked to my roundcubemail i saw filter under settings
but the problem is unable to connect to sieve server

thanks





JohnDoh

$rcmail_config['plugins'] = array(sievereules);

should be

$rcmail_config['plugins'] = array('sievereules');

and in the sieverules folder you'll find a file called config.inc.php.dist this should be renamed config.inc.php and you need to go through this file, filling in the config variables to the values you want, like the address of your sieve server. there are comments in the file that explain what the variables are, similar to the main rc config file.
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more...

prinzzcheese

Quote from: JohnDoh on October 16, 2013, 02:55:22 AM
$rcmail_config['plugins'] = array(sievereules);

should be

$rcmail_config['plugins'] = array('sievereules');

and in the sieverules folder you'll find a file called config.inc.php.dist this should be renamed config.inc.php and you need to go through this file, filling in the config variables to the values you want, like the address of your sieve server. there are comments in the file that explain what the variables are, similar to the main rc config file.


Hi

I modified it now under config/main.inc.php
but its not visible in my roundcubemail


// List of active plugins (in plugins/ directory)
$rcmail_config['plugins'] = array('sievereules');


thanks

JohnDoh

Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more...