From d80888842926eba272ae0e86d7666daeef201dc3 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Wed, 7 Oct 2015 09:38:47 +0200
Subject: [PATCH] added some lines to the htconfig config variables

---
 doc/htconfig.md | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/doc/htconfig.md b/doc/htconfig.md
index 5d98f55a76..d46abb3a0b 100644
--- a/doc/htconfig.md
+++ b/doc/htconfig.md
@@ -77,3 +77,22 @@ line to your .htconfig.php:
 ## theme ##
 
 * hide_eventlist (Boolean) - Don't show the birthdays and events on the profile and network page
+
+# Administrator Options #
+
+Enabling the admin panel for an account, and thus making the account holder
+admin of the node, is done by setting the variable
+
+    $a->config['admin_email'] = "someone@example.com";
+
+where you have to match the email address used for the account with the one you
+enter to the .htconfig file. If more then one account should be able to access
+the admin panel, seperate the email addresses with a comma.
+
+    $a->config['admin_email'] = "someone@example.com,someonelese@example.com";
+
+If you want to have a more personalized closing line for the notification
+emails you can set a variable for the admin_name.
+
+    $a->config['admin_name'] = "Marvin";
+
-- 
2.39.5