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;
Description
Type integer READONLY
Read-only constant used with the feature_enabled() function to determine whether LDAP features are available on a particular policy server.
Example
if (!feature_enabled(FEATURE_LDAP)
print("LDAP support is not available on this policy server");
Description
Type integer READONLY
Read-only constant used with the feature_enabled() function to determine whether Authentication Services features are available on a particular policy server.
Example
if (!feature_enabled(FEATURE_VAS)
print("Authentication Services support is not available on this policy server");