X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=bin%2Fmailshears;h=06347fb9eafced5b8a3f5d16f331140d444ecc8a;hp=d12bbbd6fc27ee7e2b2503f70b56349f6f3ab691;hb=1511b1d4bec6c53bcdb74fe60ee3b0fc4551b104;hpb=80dbad4600f1f19f21773fd199c895423712049c diff --git a/bin/mailshears b/bin/mailshears index d12bbbd..06347fb 100755 --- a/bin/mailshears +++ b/bin/mailshears @@ -15,7 +15,7 @@ # We need Pathname to get the real filesystem path # of this script (and not, for example, the path of -# a symlink which points to it. +# a symlink which points to it). require 'pathname' # This bit of magic adds the parent directory (the @@ -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 - # 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 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