X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Frm_dummy_runner.rb;h=091d32881bb9940f5f72c5ff2f67c3ba0030010e;hp=9bdd13f5f47fb2dc1b71e7c012545c47c08e7e4a;hb=4e7ef12d3d47aa7ec68419de46c51269c40eb158;hpb=ef1b9dcb21d2e084408de19d844d438b99a00dc2 diff --git a/lib/rm/rm_dummy_runner.rb b/lib/rm/rm_dummy_runner.rb index 9bdd13f..091d328 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_account(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