From: Michael Orlitzky Date: Sun, 26 Dec 2010 21:45:32 +0000 (-0500) Subject: Enable the roundcube_db plugin (in the config file) and add its configuration paramet... X-Git-Tag: 0.0.1~128 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=a63ff0c618bdf48bd2c9e8a384e07d71e84070b2 Enable the roundcube_db plugin (in the config file) and add its configuration parameters to the config file. --- diff --git a/bin/configuration.rb b/bin/configuration.rb index f67bfdd..1d0aa7f 100644 --- a/bin/configuration.rb +++ b/bin/configuration.rb @@ -19,5 +19,15 @@ module Configuration # could also be called, "I_TRUST_MAILSHEARS_NOT_TO_DO_ANYTHING_BAD". I_MEAN_BUSINESS = false - PLUGINS = ['dovecot_mailstore'] + PLUGINS = ['dovecot_mailstore', 'roundcube_db'] + + # Roundcube-specific configuration. + ROUNDCUBE_DBHOST = 'localhost' + ROUNDCUBE_DBPORT = 5432 + ROUNDCUBE_DBOPTS = '' + ROUNDCUBE_DBTTY = '' + ROUNDCUBE_DBUSER = 'postgres' + ROUNDCUBE_DBPASS = '' + ROUNDCUBE_DBNAME = 'roundcube' + end