mirror of
https://github.com/webmin/webmin.git
synced 2026-02-15 19:22:38 +00:00
33 lines
730 B
Perl
Executable File
33 lines
730 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Delete all auto-whitelist entries for all users
|
|
|
|
require './spam-lib.pl';
|
|
&error_setup($text{'dawl_err'});
|
|
&ReadParse();
|
|
&set_config_file_in(\%in);
|
|
&can_use_check("awl");
|
|
&ReadParse();
|
|
|
|
&ui_print_unbuffered_header(undef, $text{'dawl_title'}, "");
|
|
|
|
# Do all users
|
|
print $text{'dawl_doing'},"<br>\n";
|
|
$count = $ucount = 0;
|
|
setpwent();
|
|
while(@uinfo = getpwent()) {
|
|
next if (!&can_edit_awl($uinfo[0]));
|
|
&open_auto_whitelist_dbm($uinfo[0]) || next;
|
|
foreach $k (keys %awl) {
|
|
delete($awl{$k});
|
|
$count++;
|
|
}
|
|
&close_auto_whitelist_dbm();
|
|
print "doing $uinfo[0]<br>\n";
|
|
$ucount++;
|
|
}
|
|
endpwent();
|
|
print &text('dawl_done', $ucount, $count),"<p>\n";
|
|
|
|
&ui_print_footer($redirect_url, $text{'index_return'});
|
|
|