|
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
# Delete multiple mappings
require './postfix-lib.pl';
&ReadParse();
&error_setup($text{'delete_err'});
@d = split(/\0/, $in{'d'});
@d || &error($text{'delete_enone'});
$maps = &get_maps($in{'map_name'});
foreach $d (@d) {
($map) = grep { $_->{'name'} eq $d } @$maps;
if ($map) {
&lock_file($map->{'file'});
&delete_mapping($in{'map_name'}, $map);
}
}
&unlock_all_files();
®enerate_map_table($in{'map_name'});
&reload_postfix();
&webmin_log("delete", $in{'map_name'}.'s', scalar(@d));
&redirect_to_map_list($in{'map_name'});