]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mailshears/plugins/roundcube_db.rb
Fix a comment.
[mailshears.git] / lib / mailshears / plugins / roundcube_db.rb
index cb2e055f44f9b720ca436a510e6f7c0fb85bfadf..d563a244fcaa3fd3c25beb45f093bc7d2486352d 100644 (file)
@@ -5,13 +5,14 @@ class RoundcubeDb
   include Plugin
 
   def initialize()
-    @db_host = Configuration::ROUNDCUBE_DBHOST
-    @db_port = Configuration::ROUNDCUBE_DBPORT
-    @db_opts = Configuration::ROUNDCUBE_DBOPTS
-    @db_tty  = Configuration::ROUNDCUBE_DBTTY
-    @db_name = Configuration::ROUNDCUBE_DBNAME
-    @db_user = Configuration::ROUNDCUBE_DBUSER
-    @db_pass = Configuration::ROUNDCUBE_DBPASS
+    cfg = Configuration.new()
+    @db_host = cfg.roundcube_dbhost
+    @db_port = cfg.roundcube_dbport
+    @db_opts = cfg.roundcube_dbopts
+    @db_tty  = cfg.roundcube_dbtty
+    @db_name = cfg.roundcube_dbname
+    @db_user = cfg.roundcube_dbuser
+    @db_pass = cfg.roundcube_dbpass
   end
 
 
@@ -92,7 +93,7 @@ class RoundcubeDb
 
 
   def get_leftover_accounts(db_accounts)
-    # Given a list of all users who have logged in to Roundcube.
+    # Get a list of all users who have logged in to Roundcube.
     rc_accounts = self.get_roundcube_usernames()
     return rc_accounts - db_accounts
   end