| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | Overview:---------The session-limit module is designed to allow an administrator to limitthe number of simultaneous sessions a user may have.Installation and configuration:-------------------------------Installation is as simple as copying the module into your 'modules' directory,then enabling the module.The default max sessions is 1. Change default max sessions can be changed in'Configuration >> People >> Session Limit'The path for this is /admin/config/people/session_limitTriggers are available to assign any of the three system actions to either thecollision or disconnect events. That includes displaying a message to the user,sending an email, or redirecting to a different URL.Rules events are available for collision or disconnect events.The precedence of defined session limits are:1. The user's session limit if set, otherwise,2. The highest session limit for a user as set on their roles, if all are set to default then3. The system default session_limitOptional:---------This module is able to use the token module for generating tokenized emailsor showing tokenized messages on the collision and disconnect events.http://drupal.org/project/tokenIf you want to customize the notices that users see, try the String Overridesmodule. Both the message for prompting to disconnect a user and the messagethat the disconnected user sees are passed through Drupal's localize t()function.http://drupal.org/project/stringoverridesRequires:--------- - Drupal 7.xIssue queue:------------http://drupal.org/project/issues/session_limit
 |