X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fmv_plugin.rb;h=089e6c772bc7d9ddec80db26359449aae08b2c73;hp=76fad8395cf6454666d3caf1b3ed3e7401dce0cb;hb=f819b178c5c1cb8adda0182c610e5c52fad8bea7;hpb=616d9c0f3260f4d8e9bf26140fa6032c3eabca8b diff --git a/lib/mv/mv_plugin.rb b/lib/mv/mv_plugin.rb index 76fad83..089e6c7 100644 --- a/lib/mv/mv_plugin.rb +++ b/lib/mv/mv_plugin.rb @@ -1,15 +1,20 @@ module MvPlugin # - # Plugins for moving (renaming) accounts. + # Plugins for moving (renaming) users. # - def mv_domain(from, to) - # Rename the given domain. - raise NotImplementedError + extend Plugin::Run + + def self.runner() + return MvRunner + end + + def self.dummy_runner() + return MvDummyRunner end - def mv_account(from, to) - # Rename the given account. + def mv_user(src, dst) + # Rename the given user. raise NotImplementedError end