X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fmv_plugin.rb;h=4b616032b5cfc312c74e790d685bf70ff167f15b;hp=c5647f2c92a6ecee0915fa5ab96504c3f04e615e;hb=c2737d4d972df30725e417bed0940fc8df8e88bd;hpb=ec3c9099a29f40d95f055ea0f7fb25a99d913de3 diff --git a/lib/mv/mv_plugin.rb b/lib/mv/mv_plugin.rb index c5647f2..4b61603 100644 --- a/lib/mv/mv_plugin.rb +++ b/lib/mv/mv_plugin.rb @@ -1,15 +1,25 @@ module MvPlugin # - # Plugins for moving (renaming) accounts. + # Plugins for moving (renaming) users. # - def mv_domain(from. to) + extend Plugin::Run + + def self.runner() + return MvRunner + end + + def self.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