|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /usr/libexec/webmin/postfix/ |
Upload File : |
#!/usr/bin/perl
# Update a manually edited map file
require './postfix-lib.pl';
&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;
&open_lock_tempfile(FILE, ">$in{'file'}");
&print_tempfile(FILE, $in{'data'});
&close_tempfile(FILE);
# Regenerate map
®enerate_map_table($in{'map_name'});
&reload_postfix();
&webmin_log("manual", $in{'map_name'}.'s', $in{'file'});
&redirect_to_map_list($in{'map_name'});