From: Michael Orlitzky Date: Fri, 30 Oct 2015 00:54:51 +0000 (-0400) Subject: Remove "-K" from the shebang, and remove the outdated intro comment. X-Git-Tag: 0.0.1~56 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=b6c036d9c976116a414e5cbf3dd8e51629bdd219 Remove "-K" from the shebang, and remove the outdated intro comment. --- diff --git a/bin/mailshears b/bin/mailshears index f7d5afa..a218b2b 100755 --- a/bin/mailshears +++ b/bin/mailshears @@ -1,17 +1,7 @@ -#!/usr/bin/ruby -wKU +#!/usr/bin/ruby -wU # # mailshears, to prune unused mail directories. # -# Mail users for virtual hosts are stored in SQL, and managed by -# Postfixadmin. However, the physical directories are handled by -# Postfix/Dovecot and are left untouched by Postfixadmin. This is good -# for security, but comes at a cost: Postfixadmin can't remove a -# user's mail directory when his or her account is deleted. -# -# This program compares the list of filesystem users with the ones -# in the database. It outputs any users that exist in the -# filesystem, but not the database. -# # Define a usage string using the program name. exe = File.basename($PROGRAM_NAME)