]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/mv_plugin.rb
Begin building the framework to rename accounts. A pile of crap right now.
[mailshears.git] / lib / mv / mv_plugin.rb
diff --git a/lib/mv/mv_plugin.rb b/lib/mv/mv_plugin.rb
new file mode 100644 (file)
index 0000000..c5647f2
--- /dev/null
@@ -0,0 +1,16 @@
+module MvPlugin
+  #
+  # Plugins for moving (renaming) accounts.
+  #
+
+  def mv_domain(from. to)
+    # Rename the given domain.
+    raise NotImplementedError
+  end
+
+  def mv_account(from, to)
+    # Rename the given account.
+    raise NotImplementedError
+  end
+
+end