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
+34
View File
@@ -0,0 +1,34 @@
#!/usr/local/bin/perl
require './postfix-lib.pl'; ## no critic
use strict;
use warnings;
our ($err, %access, %in, %text);
&ReadParse();
$access{'bcc'} || &error($text{'bcc_ecannot'});
&error_setup($text{'opts_err'});
&lock_postfix_files();
&before_save();
&save_options(\%in);
&ensure_map("sender_bcc_maps");
&ensure_map("recipient_bcc_maps");
&after_save();
&unlock_postfix_files();
&regenerate_bcc_table();
&regenerate_recipient_bcc_table();
$err = &reload_postfix();
&error($err) if ($err);
&webmin_log("bcc");
&redirect("");