Nextcloud/Benutzerverwaltung: Unterschied zwischen den Versionen

Aus Foxwiki
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
= TMP =
'''topic''' kurze Beschreibung
== Beschreibung ==
== Installation ==
== Anwendungen ==
=== Fehlerbehebung ===
== Syntax ==
=== Optionen ===
=== Parameter ===
=== Umgebungsvariablen ===
=== Exit-Status ===
== Konfiguration ==
=== Dateien ===
== Sicherheit ==
== Dokumentation ==
=== RFC ===
=== Man-Pages ===
=== Info-Pages ===
== Siehe auch ==
== Links ==
=== Projekt-Homepage ===
=== Weblinks ===
=== Einzelnachweise ===
<references />
== Testfragen ==
<div class="toccolours mw-collapsible mw-collapsed">
''Testfrage 1''
<div class="mw-collapsible-content">'''Antwort1'''</div>
</div>
<div class="toccolours mw-collapsible mw-collapsed">
''Testfrage 2''
<div class="mw-collapsible-content">'''Antwort2'''</div>
</div>
<div class="toccolours mw-collapsible mw-collapsed">
''Testfrage 3''
<div class="mw-collapsible-content">'''Antwort3'''</div>
</div>
<div class="toccolours mw-collapsible mw-collapsed">
''Testfrage 4''
<div class="mw-collapsible-content">'''Antwort4'''</div>
</div>
<div class="toccolours mw-collapsible mw-collapsed">
''Testfrage 5''
<div class="mw-collapsible-content">'''Antwort5'''</div>
</div>
 
[[Kategorie:Entwurf]]
 
== Account retention ==
[[File:nextcloudBenutzeraufbewahrung.png|nextcloudBenutzeraufbewahrung.png]]
[[File:nextcloudBenutzeraufbewahrung.png|nextcloudBenutzeraufbewahrung.png]]
= Account retention =
* formerly User retention
* formerly User retention
* Accounts are deleted when they did not log in within the given number of days.  
* Accounts are deleted when they did not log in within the given number of days.  
Zeile 11: Zeile 56:
* Exclude accounts that never logged in (default: enabled)
* Exclude accounts that never logged in (default: enabled)


== Accounts that never logged-in ==
=== Accounts that never logged-in ===
By default, accounts that have never logged in at all, will be spared from removal. To also take them into consideration, set the config flag accordingly:
By default, accounts that have never logged in at all, will be spared from removal. To also take them into consideration, set the config flag accordingly:
  occ config:app:set user_retention keep_users_without_login --value='no'
  occ config:app:set user_retention keep_users_without_login --value='no'
Zeile 45: Zeile 90:
|}
|}


== Reminders ==
=== Reminders ===
It is also possible to send an email reminder to accounts (when an email is configured). To send a reminder '''14 days after''' the last activity:
It is also possible to send an email reminder to accounts (when an email is configured). To send a reminder '''14 days after''' the last activity:
  occ config:app:set user_retention reminder_days --value='14'
  occ config:app:set user_retention reminder_days --value='14'

Version vom 18. November 2022, 18:36 Uhr

topic kurze Beschreibung

Beschreibung

Installation

Anwendungen

Fehlerbehebung

Syntax

Optionen

Parameter

Umgebungsvariablen

Exit-Status

Konfiguration

Dateien

Sicherheit

Dokumentation

RFC

Man-Pages

Info-Pages

Siehe auch

Links

Projekt-Homepage

Weblinks

Einzelnachweise

Testfragen

Testfrage 1

Antwort1

Testfrage 2

Antwort2

Testfrage 3

Antwort3

Testfrage 4

Antwort4

Testfrage 5

Antwort5

Account retention

nextcloudBenutzeraufbewahrung.png

  • formerly User retention
  • Accounts are deleted when they did not log in within the given number of days.
  • This will also delete all files and other data associated with the account.
  • Different retention possible for normal accounts and accounts of the guests app
  • Exclude accounts based on group memberships (default: admin group)
  • Exclude accounts that never logged in (default: enabled)

Accounts that never logged-in

By default, accounts that have never logged in at all, will be spared from removal. To also take them into consideration, set the config flag accordingly:

occ config:app:set user_retention keep_users_without_login --value='no'

In this case the number of days will start counting from the day on which the account has been seen for the first time by the app (first run of the background job after the account was created).

Example

Retention set to 30 days:

Account created Account logged in keep_users_without_login Cleaned up after
7th June 14th June yes/default 14th July
7th June 14th June no 14th July
7th June - yes/default -
7th June - no 7th July

Reminders

It is also possible to send an email reminder to accounts (when an email is configured). To send a reminder 14 days after the last activity:

occ config:app:set user_retention reminder_days --value='14'

You can also provide multiple reminder days as a comma separated list:

occ config:app:set user_retention reminder_days --value='14,21,28'

Note: There is no validation of the reminder days against the retention days.


https://github.com/nextcloud/user_retention