Changes between Version 3 and Version 4 of campuswifiandeduroam2023Agenda/pwdca


Ignore:
Timestamp:
Jul 24, 2024, 6:40:11 AM (2 months ago)
Author:
tuwan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • campuswifiandeduroam2023Agenda/pwdca

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