Once you have your web application equipped with the MNA authentication tool you now allow anyone with MNA access to use the web application. In some situations this is not the desired requirement. For example, an application might only need to allow a certain group of users access but would still like to base the authentication on MNA. This group access can be accomplished using the web server's built in access control. This example uses Apache.
AuthName "Rumor Admin (MNA ID and Password)" AuthType Basic AuthAnyUserProg "/usr/local/itlab/bin/authClient atrium.musc.edu 10070" AuthGroupFile /usr/local/apache/groups require valid-user require group rumorThe group is then managed by changing /usr/local/apache/groups. Here is the entry for the Rumor Mill.
rumor: zorncj robertskThis entry allows zorncj and robertsk to log in. Anyone else will be denied. Please see the Apache documentation for further details.