On 2018-04-01 20:02, Reindl Harald wrote:
Am 01.04.2018 um 20:57 schrieb mick crane:
On 2018-04-01 19:36, Reindl Harald wrote:
Am 01.04.2018 um 19:59 schrieb mick crane:
having some bother getting managesieve plugin to work. worked with previous install of roundcube, was called managesieve in webpage settings/filters now is called roundcube. Is writing filter rules to ~/sieve/roundcube.sieve but emails are not moved. is Roundcube Webmail 1.3.5. Debian testing. dovecot --version 2.2.35 (b1cb664)
are you aware that sievie normally is a *network service* as you even quoted here and hence normally you don't spit files from a website around to configure your mailserver:
yes well, it is just for me, there is no school near here for this stuff so rely on things like the dovecot wiki pages to set up.
you didn't get it
https://wiki.dovecot.org/Pigeonhole/ManageSieve https://tools.ietf.org/html/rfc5804
you don't create local files from the client - you speak over TCP
last time I think I installed pigeonhole and it *just worked* can't find pigeonhole anymore in debian repository is dovecot-sieve and dovecot-managesieve
https://www.rosehosting.com/blog/how-to-set-up-server-side-email-filtering-w...
copy the default configuration file and set the following:
## cp config.inc.php.dist config.inc.php ## vim config.inc.php ... $rcmail_config['managesieve_port'] = 4190;
before that it says edit Roundcube’s main configuration file and set the following:
## vim +/PLUGINS config/main.inc.php ... $rcmail_config['plugins'] = array('managesieve');
I don't have main.inc.php I guess that is roundcubemail/config.inc.php.
... $rcmail_config['managesieve_default'] = '/etc/dovecot/sieve/default.sieve';
I don't have /etc/dovecot/sieve
edit /etc/dovecot/conf.d/20-managesieve.conf for enable listing on port 4190, >this should be >the top of config file: ## ## ManageSieve specific settings ##
protocols = $protocols sieve
# Service definitions
service managesieve-login { inet_listener sieve { port = 4190 }
this is there at the top