mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 08:58:49 +00:00
[public_server] Update config file style/name
This commit is contained in:
parent
44d7a0b617
commit
c5f5965148
4 changed files with 45 additions and 44 deletions
|
@ -6,20 +6,21 @@ Public Server is a Friendica addon which implements automatic account & post exp
|
|||
|
||||
This is a modified version of the testdrive addon, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE ADDON.
|
||||
|
||||
[public_server]
|
||||
; When an account is created on the site, it is given a hard expiration date of
|
||||
expiredays = 30
|
||||
; Set the default days for posts to expire here
|
||||
expireposts = 30
|
||||
; Remove users who have never logged in after nologin days
|
||||
nologin = 30
|
||||
; Remove users who last logged in over flagusers days ago
|
||||
flagusers = 146
|
||||
; For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire
|
||||
flagposts = 90
|
||||
flagpostsexpire = 146
|
||||
'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,
|
||||
],
|
||||
|
||||
Set these in your config/addon.ini.php file. By default nothing is defined in case the addon is activated accidentally.
|
||||
Set these in your `config/addon.config.php` file. By default nothing is defined in case the addon 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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue