chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:17 +08:00
commit cf8edb9f21
44281 changed files with 1655134 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/usr/local/bin/perl
# Delete a bunch of user mappings
require './qmail-lib.pl';
&ReadParse();
&error_setup($text{'sdelete_err'});
@d = split(/\0/, $in{'d'});
@d || &error($text{'adelete_enone'});
@assigns = &list_assigns();
foreach $d (@d) {
($assign) = grep { $_->{'address'} eq $d } @assigns;
if ($assign) {
&delete_assign($assign);
}
}
&webmin_log("delete", "assigns", scalar(@d));
&redirect("list_assigns.cgi");