]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/rm/plugins/dovecot_mailstore.rb
Rename PostfixadminDb, RoundcubeDb without the Db suffix.
[mailshears.git] / lib / rm / plugins / dovecot_mailstore.rb
diff --git a/lib/rm/plugins/dovecot_mailstore.rb b/lib/rm/plugins/dovecot_mailstore.rb
deleted file mode 100644 (file)
index 8647b01..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-# Needed for rm_r.
-require 'fileutils'
-
-require 'common/dovecot_mailstore_plugin'
-require 'rm/rm_plugin'
-
-class DovecotMailstoreRm
-
-  include DovecotMailstorePlugin
-  include RmPlugin
-
-
-  def delete_domain(domain)
-    # Will raise an exception if the path doesn't exist.
-    domain_path = self.get_domain_path(domain)
-    FileUtils.rm_r(domain_path)
-  end
-
-  def delete_account(account)
-    # Will raise an exception if the path doesn't exist.
-    account_path = self.get_account_path(account)
-    FileUtils.rm_r(account_path)
-  end
-
-end