Fix requires Email::Sender::Simple thanks to TIBO
This commit is contained in:
parent
e11d9082da
commit
54b407fa11
@ -67,7 +67,7 @@ sub log
|
||||
|
||||
if ($mail_error && $level <= ERROR)
|
||||
{
|
||||
require "Email::Sender::Simple";
|
||||
require Email::Sender::Simple;
|
||||
my $mail = Email::MIME->create(
|
||||
header_str => [
|
||||
From => "Roots assistants <root\@$HOSTNAME.acu.epita.fr>",
|
||||
|
12
utils/lpt
12
utils/lpt
@ -1405,7 +1405,7 @@ sub cmd_account_quota_sync($;$)
|
||||
my $quotaSgoinfreBlock = $entry->get_value("quotaSgoinfreBlock") // $def_quota{block}{sgoinfre};
|
||||
my $quotaSgoinfreFile = $entry->get_value("quotaSgoinfreFile") // $def_quota{file}{sgoinfre};
|
||||
|
||||
require "Quota";
|
||||
require Quota;
|
||||
|
||||
if (Quota::setqlim($dev_quota{home}, $entry->get_value("uidNumber"), int(0.9 * $quotaHomeBlock), $quotaHomeBlock, int(0.9 * $quotaHomeFile), $quotaHomeFile, 1, 0) == 0 and
|
||||
Quota::setqlim($dev_quota{sgoinfre}, $entry->get_value("uidNumber"), int(0.9 * $quotaSgoinfreBlock), $quotaSgoinfreBlock, int(0.9 * $quotaSgoinfreFile), $quotaSgoinfreFile, 1, 0) == 0) {
|
||||
@ -1429,7 +1429,7 @@ sub cmd_account_quota_sync($;$)
|
||||
|
||||
sub cmd_sync_quota(@)
|
||||
{
|
||||
require "Quota";
|
||||
require Quota;
|
||||
|
||||
# Set root quota
|
||||
Quota::setqlim($dev_quota{home}, 0, 0, 0, 0, 0, 1, 0);
|
||||
@ -1512,7 +1512,7 @@ sub cmd_no_strong_auth_view(@)
|
||||
|
||||
sub cmd_no_strong_auth_warn(@)
|
||||
{
|
||||
require "Email::Sender::Simple";
|
||||
require Email::Sender::Simple;
|
||||
|
||||
for my $entry (get_no_strong_auth_user())
|
||||
{
|
||||
@ -1553,7 +1553,7 @@ Les roots ACU";
|
||||
|
||||
sub cmd_no_strong_auth_close(@)
|
||||
{
|
||||
require "Email::Sender::Simple";
|
||||
require Email::Sender::Simple;
|
||||
|
||||
for my $entry (get_no_strong_auth_user())
|
||||
{
|
||||
@ -1706,7 +1706,7 @@ sub cmd_ssh_keys_without_passphrase_view(@)
|
||||
# warn about unprotected keys
|
||||
sub cmd_ssh_keys_without_passphrase_warn(@)
|
||||
{
|
||||
require "Email::Sender::Simple";
|
||||
require Email::Sender::Simple;
|
||||
|
||||
my $process = sub() {
|
||||
my $entry = shift;
|
||||
@ -1760,7 +1760,7 @@ Les roots ACU";
|
||||
# remove unprotected keys
|
||||
sub cmd_ssh_keys_without_passphrase_remove(@)
|
||||
{
|
||||
require "Email::Sender::Simple";
|
||||
require Email::Sender::Simple;
|
||||
|
||||
my $process = sub() {
|
||||
my $entry = shift;
|
||||
|
Reference in New Issue
Block a user