]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/rm/rm_dummy_runner.rb
Add a bunch more crap and rewrite a bunch more crap. Now the 'rm' mode at least runs.
[mailshears.git] / lib / rm / rm_dummy_runner.rb
1 class RmDummyRunner
2 include Runner
3
4 def run(plugin, *targets)
5 targets.each do |target|
6 if target.include?('@') then
7 puts "Would remove account: #{target}"
8 else
9 puts "Would remove domain: #{target}"
10 end
11 end
12
13 # TODO: remove from postfixadmin as well.
14 end
15
16 end