aboutsummaryrefslogtreecommitdiff
path: root/data/config.php.dist
diff options
context:
space:
mode:
Diffstat (limited to 'data/config.php.dist')
-rw-r--r--data/config.php.dist25
1 files changed, 25 insertions, 0 deletions
diff --git a/data/config.php.dist b/data/config.php.dist
index 2615bc6..9fc37ca 100644
--- a/data/config.php.dist
+++ b/data/config.php.dist
@@ -103,4 +103,29 @@ $dbname = 'scuttle';
*/
$dbhost = 'localhost';
+
+/***************************************************
+ * Users
+ */
+
+/**
+ * Contact address for the site administrator.
+ * Used as the FROM address in password retrieval e-mails.
+ *
+ * @var string
+ */
+$adminemail = 'admin@example.org';
+
+/**
+ * Array of user names who have admin rights
+ *
+ * Example:
+ * <code>
+ * $admin_users = array('adminnickname', 'user1nick', 'user2nick');
+ * </code>
+ *
+ * @var array
+ */
+$admin_users = array();
+
?>