Quote:
|
Originally Posted by falko
|
Final post from the forum above ..
Quote:
To be honest I don't know what's wrong...
__________________
Falko
-----
|
Would be simpler if you just wrote that down here ..
Anyway, I sorted this out.
Look for these
Quote:
.......................
close(QF);
next if (! $used);
my $percent = int($used / $quota * 100);
$lusers{$user} = $percent unless not $percent;
}
}
#send a report to the postmasters
.......................
|
Change it to
Quote:
.......................
close(QF);
next if (! $used);
my $percent = int($used / $quota * 100);
# $lusers{$user} = $percent unless not $percent;
$lusers{$user} = $percent;
}
}
#send a report to the postmasters
.......................
|
Now, I am getting the daily email report with all the informations of the email accounts quota.
Hope that will be of some help to anyone else.
PS : Maybe the author of the guide can update and put a note in that guide.
Thanks again.