]> gitweb.michael.orlitzky.com - mailshears.git/blob - mv_plugin.rb
c5647f2c92a6ecee0915fa5ab96504c3f04e615e
[mailshears.git] / 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