Author Topic: SieveRules (Managesieve) how to show this in the roudcubemail  (Read 4859 times)

Offline prinzzcheese

  • Newbie
  • *
  • Posts: 2
SieveRules (Managesieve) how to show this in the roudcubemail
« on: October 15, 2013, 11:01:44 PM »
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





Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,855
Re: SieveRules (Managesieve) how to show this in the roudcubemail
« Reply #1 on: October 16, 2013, 02:55:22 AM »
Code: [Select]
$rcmail_config['plugins'] = array(sievereules);
should be

Code: [Select]
$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…

Offline prinzzcheese

  • Newbie
  • *
  • Posts: 2
Re: SieveRules (Managesieve) how to show this in the roudcubemail
« Reply #2 on: October 16, 2013, 04:21:09 AM »
Code: [Select]
$rcmail_config['plugins'] = array(sievereules);
should be

Code: [Select]
$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

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,855
Re: SieveRules (Managesieve) how to show this in the roudcubemail
« Reply #3 on: October 16, 2013, 08:54:10 AM »
try it without the typo
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more…