2012-05-18 04:12:02 -04:00
|
|
|
Public Server
|
|
|
|
=============
|
|
|
|
|
|
|
|
|
2018-01-20 11:01:59 -05:00
|
|
|
Public Server is a Friendica addon which implements automatic account & post expiration so that a site may be used as a public
|
2012-05-18 04:12:02 -04:00
|
|
|
test bed with reduced data retention.
|
|
|
|
|
2018-01-20 11:01:59 -05:00
|
|
|
This is a modified version of the testdrive addon, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE ADDON.
|
2012-05-18 04:12:02 -04:00
|
|
|
|
2013-12-20 03:44:51 -05:00
|
|
|
//When an account is created on the site, it is given a hard expiration date of
|
|
|
|
$a->config['public_server']['expiredays'] = 30;
|
|
|
|
//Set the default days for posts to expire here
|
|
|
|
$a->config['public_server']['expireposts'] = 30;
|
|
|
|
//Remove users who have never logged in after nologin days
|
|
|
|
$a->config['public_server']['nologin'] = 30;
|
|
|
|
//Remove users who last logged in over flagusers days ago
|
|
|
|
$a->config['public_server']['flagusers'] = 146;
|
|
|
|
//For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire
|
|
|
|
$a->config['public_server']['flagposts'] = 90;
|
|
|
|
$a->config['public_server']['flagpostsexpire'] = 146;
|
2012-05-18 04:12:02 -04:00
|
|
|
|
2018-01-20 11:01:59 -05:00
|
|
|
Set these in your .htconfig.php file. By default nothing is defined in case the addon is activated accidentally.
|
2012-05-18 04:12:02 -04: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.
|
|
|
|
|
|
|
|
An email warning will be sent out approximately five days before the expiration occurs. Five days later the account is removed completely.
|
|
|
|
|