| 397 | '''Lock account''' |
| 398 | |
| 399 | This feature allows to lock the account permanently. The button is only displayed if the account is not locked. |
| 400 | |
| 401 | To enable this feature: |
| 402 | |
| 403 | {{{ |
| 404 | $use_lockaccount = true; |
| 405 | }}} |
| 406 | |
| 407 | '''Unlock account''' |
| 408 | |
| 409 | This feature allows to unlock the account. It is only displayed if the account is already locked. |
| 410 | |
| 411 | To enable this feature: |
| 412 | |
| 413 | {{{ |
| 414 | $use_unlockaccount = true; |
| 415 | }}} |
| 416 | |
| 417 | '''Dashboards''' |
| 418 | |
| 419 | This page will list all currently locked accounts. |
| 420 | |
| 421 | To enable it: |
| 422 | |
| 423 | {{{ |
| 424 | $use_searchlocked = true; |
| 425 | }}} |
| 426 | |
| 427 | '''Soon expired passwords''' |
| 428 | |
| 429 | This page will list all accounts with a password that will expire in the next days. |
| 430 | |
| 431 | To enable it: |
| 432 | |
| 433 | {{{ |
| 434 | $use_searchwillexpire = true; |
| 435 | }}} |
| 436 | |
| 437 | You can also configure the number of days before expiration: |
| 438 | |
| 439 | {{{ |
| 440 | $willexpiredays = 14; |
| 441 | }}} |
| 442 | |
| 443 | '''Expired passwords''' |
| 444 | |
| 445 | This page will list all accounts with an expired password. |
| 446 | |
| 447 | To enable it: |
| 448 | |
| 449 | {{{ |
| 450 | $use_searchexpired = true; |
| 451 | }}} |
| 452 | |
| 453 | '''Idle accounts''' |
| 454 | |
| 455 | This page will list all accounts never connected, or not connected since a number of days. |
| 456 | |
| 457 | To enable it: |
| 458 | |
| 459 | {{{ |
| 460 | $use_searchidle = true; |
| 461 | }}} |
| 462 | |
| 463 | You can also configure the number of idle days: |
| 464 | |
| 465 | {{{ |
| 466 | $idledays = 60; |
| 467 | }}} |
| 468 | |