]> gitweb.michael.orlitzky.com - mailshears.git/blob - 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
1 module MvPlugin
2 #
3 # Plugins for moving (renaming) accounts.
4 #
5
6 def mv_domain(from. to)
7 # Rename the given domain.
8 raise NotImplementedError
9 end
10
11 def mv_account(from, to)
12 # Rename the given account.
13 raise NotImplementedError
14 end
15
16 end