This plugin adds the ability for qmail
users to edit their forwards from within
Roundcube
with no need to ask their administrators for doing that via qmailadmin
.
qmailforward
saves the forwards to MySQL
database.
Unlike the managesieve
plugin, from which this plugin is inspired but which only
apparently behaves in the same way, it does not use the sieve rules but it saves
the forwards on the database, also preserving the possibility of saving a record that
enables the copy of messages on the mailbox. In this case the execution of the favorite delivery
agent is launched, which can also be set from the configuration file.
Using this method instead of sieve rules allows qmail
users to keep the SPF policies in effect.
Inspiration and part of the code for this plugin was taken from the sauserprefs
and managesieve
plugins. The latter one provides an identical html form.
vpopmail
configured with virtual aliases--enable-valias
and patched to modify thevalias
database schema. You can manually modify the database schema as shown below.vpopmail
version 5.6.x configured with--enbable-defaultdelivery
if you want to manage thedot-qmail
files and installdovecot-lda
to usesieve
together withqmail
forwards. Look at this page for more info.- you may want to upgrade
qmailadmin
as well if usingvpopmail
version 5.6.x.
- Place this plugin folder into the plugins directory of
Roundcube
- Add
qmailforward
to$config['plugins']
in yourRoundcube
config - If you are switching to valiases the table will be created for you at first
access. If you already have the valias table but it's still empty, just erase
it and let
vpopmail
create it for you. - If your valias table already exists and it contains records that you don't
want to loose, then execute the following query. Drop any
PRIMARY KEY
if you already have one.
USE vpopmail;
ALTER TABLE `valias` ADD `valias_type` TINYINT(1) NOT NULL DEFAULT '1' COMMENT '1=forwarder 0=lda' FIRST;
ALTER TABLE `valias` ADD `copy` TINYINT(1) NOT NULL DEFAULT '0' COMMENT '0=redirect 1=copy&redirect' AFTER `valias_line`;
ALTER TABLE `valias` ADD `id` INT NOT NULL AUTO_INCREMENT FIRST, ADD PRIMARY KEY (`id`);
ALTER TABLE `valias` ADD INDEX (`valias_type`, `alias`, `domain`);
- The default config file is plugins/qmailforward/config.inc.php.dist
- Copy the options you have to modify to plugins/qmailforward/config.inc.php
- You must set at least the database connection string
- en_US - English (US)
- en_GB - English (GB)
- fr_FR - French
- it_IT - Italian
- ru_RU - Russian
Send new translations to the e-mail below.
Roberto Puzzanghera [roberto dot puzzanghera at sagredo dot eu https://notes.sagredo.eu]
This plugin is released under the GNU General Public License Version 3+.
To ask for support post a comment in my blog.
To have a wider view on the idea behind this plugin look at this page.