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