create-user: misc updates for Debian Stretch / server changes
[hcoop/scripts.git] / quotacheck
index cd9f82a..d4cb912 100755 (executable)
@@ -54,7 +54,7 @@ use Data::Dumper qw/Dumper/;
 # Warn threshold
 our %threshold = ( user => 0.8, mail => 0.6, db => 0.4 );
 # AFS servers with volumes
-our @servers = qw/fritz/;
+our @servers = qw/gibran/;
 # Which volumes we want?
 # (Your volumes need to be in format (TYPE).USERNAME, otherwise
 # you will have to modify below where we take .USERNAME to mean
@@ -237,7 +237,7 @@ sub email_notify {
                $_ =~ s/\$CRIT{(\w+)}/$warn{$user}{$1} ? " (APPROACHING QUOTA)" : ""/mge;
        }
        #print join('', @msg);
-       open(MAIL, "| mail -s 'Approaching quota limit at HCoop' -a 'From: admins\@hcoop.net' -b 'admins' '$user\@hcoop.net'");
+       open(MAIL, "| mail -s 'Approaching quota limit at HCoop' -a 'From: admins\@hcoop.net' -b 'admins\@hcoop.net' '$user\@hcoop.net'");
        { no warnings; print main::MAIL join('', @msg); }
        close MAIL;
 }