X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=bin%2Fconfiguration.rb;h=1d0aa7f82b34b5721778d47df337baa678a02cfb;hp=a5ace5c80d3393d03e538ca446f03d62eb11f0f8;hb=fd60e4e45d24c7efe5bc2710ae23f60bbb6b7be1;hpb=6732f04111887cf7d940349719481dc4b00d5c36 diff --git a/bin/configuration.rb b/bin/configuration.rb index a5ace5c..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 = ['DovecotMailstore'] + 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