Description
Type string READONLY
dayname contains the abbreviated name ("Mon", "Tue, "Wed", "Thu", "Fri", "Sat" or "Sun") of the day the request was submitted.
Example
switch (dayname)
{
case "Mon":
case "Wed":
case "Fri":
adminusers = {"dan","robyn"};
break;
case "Tue":
case "Thu":
adminusers = {"robyn","cory"};
break;
default:
adminusers = {};
}
if (user in adminusers)
{
runuser = "root";
accept;
}
Description
Type string READONLY
The Active Directory domain name for the submit user if Authentication Services is configured and the client is able to determine the domain name. Otherwise this variable is set to an empty string.
Example
# reject if the user is not in the uxwheel AD group
if (vas_user_is_member(samaccount, "uxwheel", domainname) == false)
reject "user is not in uxwheel group";
Description
Type list READONLY
env contains the list of environment variables configured in the environment where the submit user submitted the request.
Example
index=search(env, "APPL_HOME");
if (index > -1)
{
aval=env[index];
if (dirname(aval ) != "/usr")
{
printf("You are not permitted to run this application from:%s\n",
dirname(aval));
}
}
Description
Type integer READONLY
false contains the constant value 0.
Example
adminusers = {"dan","robyn","cory"};
if ((user in adminusers) == false)
reject;