2012-05-18 08:12:02 +00:00
Public Server
=============
2018-06-28 13:40:20 +00:00
Public Server is a Friendica addon which implements automatic account & post expiration so that a site may be used as a public test bed with reduced data retention.
2012-05-18 08:12:02 +00:00
2018-01-20 16:01:59 +00:00
This is a modified version of the testdrive addon, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE ADDON.
2012-05-18 08:12:02 +00:00
2018-11-25 07:15:44 +00:00
'public_server' => [
// When an account is created on the site, it is given a hard expiration date of. 0 to disable.
'expiredays' => 0,
// Set the default days for posts to expire here. 0 to disable.
'expireposts' => 0,
// Remove users who have never logged in after nologin days. 0 to disable.
'nologin' => 0,
// Remove users who last logged in over flagusers days ago. 0 to disable.
'flagusers' => 0,
// For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire. 0 to disable.
'flagposts' => 0,
'flagpostsexpire' => 0,
],
2018-06-28 03:18:46 +00:00
2018-11-25 07:15:44 +00:00
Set these in your `config/addon.config.php` file. By default nothing is defined in case the addon is activated accidentally.
2012-05-18 08:12:02 +00:00
They can be ommitted or set to 0 to disable each option.
The default values are those used by friendica.eu, change these as desired.
The expiration date is updated when the user logs in.
2018-06-28 13:40:20 +00:00
An email warning will be sent out approximately five days before the expiration occurs.
Five days later the account is removed completely.