MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: digitals (531)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //var/usr/webmin-1.941/at/save_allow.cgi
#!/usr/bin/perl
# Update allowed or denied At users
use strict;
use warnings;
our (%access, %text, %in);

require './at-lib.pl';
ReadParse();
&error_setup($text{'allow_err'});
$access{'allow'} || &error($text{'allow_ecannot'});

if ($in{'amode'} == 0) {
	&save_allowed();
	&save_denied();
	}
elsif ($in{'amode'} == 1) {
	my @users = split(/\s+/, $in{'ausers'});
	@users || &error($text{'allow_eusers'});
	&save_allowed(@users);
	&save_denied();
	}
elsif ($in{'amode'} == 2) {
	my @users = split(/\s+/, $in{'ausers'});
	@users || &error($text{'allow_eusers'});
	&save_allowed();
	&save_denied(@users);
	}
&webmin_log("allow");
&redirect("");