]> gitweb.michael.orlitzky.com - mailshears.git/commitdiff
Added the domain/account path to the output.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 13 Jul 2010 19:42:41 +0000 (15:42 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 13 Jul 2010 19:42:41 +0000 (15:42 -0400)
bin/mailshears

index afc430193409c450d0c95ad90f8cac7cf28ff312..06347fb9eafced5b8a3f5d16f331140d444ecc8a 100755 (executable)
@@ -93,7 +93,6 @@ acct_difference = fs_accts - db_accts
 
 # Don't output any unnecessary junk. Cron might mail it to someone.
 if dom_difference.size > 0 or acct_difference.size > 0
 
 # Don't output any unnecessary junk. Cron might mail it to someone.
 if dom_difference.size > 0 or acct_difference.size > 0
-
   # The header that we output before the list of accounts.
   # Just the path of this script, and the current time.
   header = "#{$0}, "
   # The header that we output before the list of accounts.
   # Just the path of this script, and the current time.
   header = "#{$0}, "
@@ -109,7 +108,14 @@ if dom_difference.size > 0 or acct_difference.size > 0
 
   puts header
   puts '-' * header.size # Underline the header.
 
   puts header
   puts '-' * header.size # Underline the header.
-  puts dom_difference
-  puts acct_difference
+
+  dom_difference.each do |domain|
+    puts domain + " (#{dms.get_domain_path(domain)})"
+  end
+
+  acct_difference.each do |account|
+    puts account + " (#{dms.get_account_path(account)})"
+  end
+
   puts ""
 end
   puts ""
 end