The pam_acct_mgmt() function is called to determine if the current user's account is valid. It checks for password and account expiration, and verifies access hour restrictions.
This function is typically called after the user has been authenticated with pam_authenticate(3PAM).
The pamh argument is an authentication handle obtained by a prior call to pam_start(). The following flags may be set in the flags
field:
-
PAM_SILENT
- The account management service should not generate any messages.
-
PAM_DISALLOW_NULL_AUTHTOK
- The account management service should return PAM_NEW_AUTHTOK_REQD
if the user has a null authentication token.
|