| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/postfix/ |
Upload File : |
#!/usr/bin/perl
# Update a manually edited map file
require './postfix-lib.pl'; ## no critic
use strict;
use warnings;
our ($err, %access, @files, %in, %text);
&ReadParseMime();
&error_setup($text{'manual_err'});
$access{'manual'} || &error($text{'manual_ecannot'});
@files = &get_maps_files(&get_real_value($in{'map_name'}));
&indexof($in{'file'}, @files) >= 0 || &error($text{'manual_efile'});
# Save the data
$in{'data'} =~ s/\r//g;
my $filefh = "FILE";
&open_lock_tempfile($filefh, ">$in{'file'}");
&print_tempfile($filefh, $in{'data'});
&close_tempfile($filefh);
# Regenerate map
®enerate_map_table($in{'map_name'});
$err = &reload_postfix();
&error($err) if ($err);
&webmin_log("manual", $in{'map_name'}.'s', $in{'file'});
&redirect_to_map_list($in{'map_name'});