]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/plugins/roundcube_db.rb
Rename PostfixadminDb, RoundcubeDb without the Db suffix.
[mailshears.git] / lib / mv / plugins / roundcube_db.rb
diff --git a/lib/mv/plugins/roundcube_db.rb b/lib/mv/plugins/roundcube_db.rb
deleted file mode 100644 (file)
index fa29aa6..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-require 'pg'
-
-require 'common/roundcube_db_plugin'
-require 'mv/mv_plugin'
-
-class RoundcubeDbMv
-
-  include RoundcubeDbPlugin
-  include MvPlugin
-
-
-  def mv_domain(from, to)
-    # Roundcube doesn't have a concept of domains.
-  end
-
-  def mv_account(from, to)
-    sql_queries = ['UPDATE users SET username = $1 WHERE username = $2;']
-
-    begin
-      connection = PGconn.connect(@db_host,
-                                  @db_port,
-                                  @db_opts,
-                                  @db_tty,
-                                  @db_name,
-                                  @db_user,
-                                  @db_pass)
-
-      sql_queries.each do |sql_query|
-        connection.query(sql_query, [to, from])
-      end
-
-      connection.close()
-
-    rescue PGError => e
-      # Pretend like we're database-agnostic in case we ever are.
-      raise DatabaseError.new(e)
-    end
-
-  end
-
-end