Autoresponder

piotrl

New member
Joined
Oct 5, 2014
Messages
3
Hi,

I've got exim+dovecot+roundcube config.
Is there a way to let user create autoresponder via webmail or only through DA ?
 
Hello,

With Roundcube you can create filters and specify actions.

For this to work Dovecot should be built with pigeonhole support. To complete it run the following commands as root:

Code:
cd /usr/local/directadmin/custombuild
./build update
./build set pigeonhole yes
./build set dovecot yes
./build set dovecot_conf yes
./build dovecot
./build roundcube
 
Hi,

I've got exim+dovecot+roundcube config.
Is there a way to let user create autoresponder via webmail or only through DA ?


Thanks, but it did not help.
I've update openssl to 1.0.1 cause dovecot didn't want to upgrade. But even after that there is no filter option in roundcube.
 
Are you sure you completed all the commands listed above without errors?

Make sure you've got no /usr/local/directadmin/custombuild/custom/roundcube/config.inc.php
But if /usr/local/directadmin/custombuild/custom/roundcube/config.inc.php exists then make sure you've got managesieve plugin enabled there:

PHP:
$config['plugins'] = array(    'managesieve',

the same way need you to check /var/www/html/roundcube/config/config.inc.php (the file should exist and have managesieve plugin enabled).

Then

- connect to RoundCube
- choose "Settings" in the top menu
- in the left column click "Filters"
- click "managesieve" in the middle column with a title "Filter sets"
- and click "+" (a plus sign) under "Filters"
- and fill fields upon your needs


Specify "Filter name", and other requested fileds
Choose action "Reply with memssage"
As soon as you finish, click save.
Test your filters.
 
Back
Top