X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fmv_plugin.rb;fp=lib%2Fmv%2Fmv_plugin.rb;h=c5647f2c92a6ecee0915fa5ab96504c3f04e615e;hp=0000000000000000000000000000000000000000;hb=ec3c9099a29f40d95f055ea0f7fb25a99d913de3;hpb=c6cab6b71770d14dad1115db90a00b990c44a58d diff --git a/lib/mv/mv_plugin.rb b/lib/mv/mv_plugin.rb new file mode 100644 index 0000000..c5647f2 --- /dev/null +++ b/lib/mv/mv_plugin.rb @@ -0,0 +1,16 @@ +module MvPlugin + # + # Plugins for moving (renaming) accounts. + # + + def mv_domain(from. to) + # Rename the given domain. + raise NotImplementedError + end + + def mv_account(from, to) + # Rename the given account. + raise NotImplementedError + end + +end