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
+39
View File
@@ -0,0 +1,39 @@
#!/usr/local/bin/perl
#
# postfix-module by Guillaume Cottenceau <gc@mandrakesoft.com>,
# for webmin by Jamie Cameron
#
# Save Postfix options ; special because for sender transport maps
require './postfix-lib.pl'; ## no critic
use strict;
use warnings;
our ($err, %access, %in, %text);
&ReadParse();
$access{'dependent'} || &error($text{'dependent_ecannot'});
&error_setup($text{'opts_err'});
&lock_postfix_files();
&before_save();
&save_options(\%in);
&ensure_map("sender_dependent_default_transport_maps");
&after_save();
&unlock_postfix_files();
&regenerate_dependent_table();
$err = &reload_postfix();
&error($err) if ($err);
&webmin_log("dependent");
&redirect("");