]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
define configuration settings for account maintenance security
authorEvan Prodromou <evan@status.net>
Mon, 13 Dec 2010 21:28:02 +0000 (16:28 -0500)
committerEvan Prodromou <evan@status.net>
Mon, 13 Dec 2010 21:28:02 +0000 (16:28 -0500)
README
lib/default.php

diff --git a/README b/README
index 3bebb11ee00a56b20f685a223732dde395d1f332..e2e4c580ef501785926091cf70cbb71c1606e0f5 100644 (file)
--- a/README
+++ b/README
@@ -1276,6 +1276,12 @@ Profile management.
 
 biolimit: max character length of bio; 0 means no limit; null means to use
     the site text limit default.
+backup: whether users can backup their own profiles. Defaults to true.
+restore: whether users can restore their profiles from backup files. Defaults
+        to true.
+delete: whether users can delete their own accounts. Defaults to true.
+move: whether users can move their accounts to another server. Defaults
+      to true.  
 
 newuser
 -------
index 029dbb3906b9fd7c4244c46a41d394afc06f39c1..7a44ed875d658c6db363a9013b4e9bd6b09150fc 100644 (file)
@@ -123,7 +123,11 @@ $default =
               'featured' => array()),
         'profile' =>
         array('banned' => array(),
-              'biolimit' => null),
+              'biolimit' => null,
+              'backup' => true,
+              'restore' => true,
+              'delete' => true,
+              'move' => true),
         'avatar' =>
         array('server' => null,
               'dir' => INSTALLDIR . '/avatar/',