mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
new file: public_server.tgz add public_server plugin
new file: public_server/README.md add public_server plugin new file: public_server/public_server.php add public_server plugin modified: testdrive.tgz puts content in notification emails modified: testdrive/testdrive.php puts content in notification emails
This commit is contained in:
parent
6cd9da4d5a
commit
2031a7240c
5 changed files with 172 additions and 0 deletions
29
public_server/README.md
Normal file
29
public_server/README.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
Public Server
|
||||
=============
|
||||
|
||||
|
||||
Public Server is a Friendica plugin which implements automatic account & post expiration so that a site may be used as a public
|
||||
test bed with reduced data retention.
|
||||
|
||||
This is a modified version of the testdrive plugin, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE PLUGIN.
|
||||
|
||||
//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;
|
||||
|
||||
Set these in your .htconfig.php file. By default nothing is defined in case the plugin is activated accidentally.
|
||||
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.
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue