mail-in-a-box / mailinabox

Mail-in-a-Box helps individuals take back control of their email by defining a one-click, easy-to-deploy SMTP+everything else server: a mail server in a box.
https://mailinabox.email/
Creative Commons Zero v1.0 Universal
14.05k stars 1.44k forks source link

Roundcube vacation plugin updated for v1.3 #1373

Open gromez opened 6 years ago

gromez commented 6 years ago

Vacation plugin has been updated for Roundcube 1.3 : https://github.com/rplessl/roundcube-vacation-plugin

Maybe it can be integrated in mail-in-a-box.

zealot128 commented 5 years ago

That plugin has no tested support for Sieve implementation.

On the other hand, there ist no support needed, as the already included plugin managesieve has vacation support. Just add 3 lines to config.inc.php

https://github.com/rplessl/roundcube-vacation-plugin/issues/3#issuecomment-373492545

in /usr/local/lib/roundcubemail/config/config.inc.php

$config['managesieve_vacation'] = 1;
$config['managesieve_vacation_interval'] = 1;
$config['managesieve_vacation_addresses_init'] = true;

I've provided the PR for the original vacation plugin installation in MAIB but had to find out the installation was removed. But with the new plugin, It should be relatively straight forward to make a PR that just puts those lines into the file. @gromez want to make a PR?