X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fmv_plugin.rb;h=958f6d40f98d0fd3d3cfdb76d24000c6fcd7b844;hp=2ccb9a388572acedcb3dbb67bc36120f06381347;hb=6f2bc0181c6bb900e37d04ea722beec54486b87e;hpb=a6ae98f0423603445b621a8eaa17443c8d590b45 diff --git a/lib/mv/mv_plugin.rb b/lib/mv/mv_plugin.rb index 2ccb9a3..958f6d4 100644 --- a/lib/mv/mv_plugin.rb +++ b/lib/mv/mv_plugin.rb @@ -1,6 +1,6 @@ module MvPlugin # - # Plugins for moving (renaming) accounts. + # Plugins for moving (renaming) users. # def MvPlugin.included(c) @@ -15,13 +15,21 @@ module MvPlugin return @includers end + def runner() + return MvRunner + end + + def dummy_runner() + return MvDummyRunner + end + def mv_domain(from, to) # Rename the given domain. raise NotImplementedError end - def mv_account(from, to) - # Rename the given account. + def mv_user(from, to) + # Rename the given user. raise NotImplementedError end