X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fprune%2Fprune_plugin.rb;h=44fd636f20888e56c255a765aa1a354d464c7f2c;hp=e47a5e4aafbd6370fcf07aca76e30b8804fa34c0;hb=c2737d4d972df30725e417bed0940fc8df8e88bd;hpb=72696d3f6e95ef773af9727e9c3459b9038b0fc2;ds=sidebyside diff --git a/lib/prune/prune_plugin.rb b/lib/prune/prune_plugin.rb index e47a5e4..44fd636 100644 --- a/lib/prune/prune_plugin.rb +++ b/lib/prune/prune_plugin.rb @@ -1,24 +1,20 @@ require 'rm/rm_plugin' module PrunePlugin - include RmPlugin - # # Plugins for the removal of leftover non-PostfixAdmin users, # i.e. after an user has been removed from the PostfixAdmin # database. # + include RmPlugin + extend Plugin::Run - def PrunePlugin.included(c) - # Callback, called whenever another class or module includes this - # one. The parameter given is the name of the class or module - # that included us. - @includers ||= [] - @includers << c + def self.runner() + return PruneRunner end - def PrunePlugin.includers - return @includers + def self.dummy_runner + return PruneDummyRunner end def get_leftover_domains(db_domains)