X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Frm_dummy_runner.rb;h=60cf23ab8b32c12eefd06fce87a659c697689f0d;hp=9bdd13f5f47fb2dc1b71e7c012545c47c08e7e4a;hb=72696d3f6e95ef773af9727e9c3459b9038b0fc2;hpb=51f027b01e242737956c3ab5aecdd322d6ceeeed diff --git a/lib/rm/rm_dummy_runner.rb b/lib/rm/rm_dummy_runner.rb index 9bdd13f..60cf23a 100644 --- a/lib/rm/rm_dummy_runner.rb +++ b/lib/rm/rm_dummy_runner.rb @@ -6,14 +6,11 @@ class RmDummyRunner def run(plugin, *targets) targets.each do |target| if target.include?('@') then - puts "Would remove account: #{target}" - # TODO: remove from postfixadmin as well. + user_description = plugin.describe_user(target) + report(plugin, "Would remove user: #{user} (#{user_description})") else - usernames = plugin.get_domain_usernames(target) - usernames.each { |u| run(plugin, u) } - - puts "Would remove domain: #{target}" - # TODO: remove from postfixadmin as well. + domain_description = plugin.describe_domain(target) + report(plugin, "Would remove domain: #{domain} (#{domain_description})") end end