]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/plugins/dovecot_mailstore.rb
Rename PostfixadminDb, RoundcubeDb without the Db suffix.
[mailshears.git] / lib / mv / plugins / dovecot_mailstore.rb
diff --git a/lib/mv/plugins/dovecot_mailstore.rb b/lib/mv/plugins/dovecot_mailstore.rb
deleted file mode 100644 (file)
index f16f116..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'common/filesystem'
-require 'common/mailstore'
-require 'common/dovecot_mailstore_plugin'
-require 'mv/mv_plugin'
-
-class DovecotMailstoreMv < Mailstore
-
-  include DovecotMailstorePlugin
-  include MvPlugin
-
-
-  def mv_domain(from, to)
-    from_path = self.get_domain_path(from)
-    to_path = self.get_domain_path(to)
-    FileUtils.mv(from_path, to_path)
-  end
-
-  def mv_account(from, to)
-    from_path = self.get_account_path(from)
-    to_path = self.get_account_path(to)
-    FileUtils.mv(from_path, to_path)
-  end
-
-end