From d5103257a57e98f95496a8604fe4b50d818d25d5 Mon Sep 17 00:00:00 2001 From: Arya Kiran Date: Wed, 28 Sep 2022 20:28:50 +0530 Subject: [PATCH] Add nc to reg.php --- register.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/register.php b/register.php index 6b365c5..82695ce 100644 --- a/register.php +++ b/register.php @@ -124,6 +124,9 @@
+ +
+
@@ -153,6 +156,7 @@ if (isset($_POST['matrix'])) $use_matrix = true; if (isset($_POST['fedi'])) $use_fedi = true; if (isset($_POST['git'])) $use_git = true; + if (isset($_POST['nc'])) $use_nc = true; if (isset($_POST['jitsi'])) $use_jitsi = true; if (isset($_POST['xmpp'])) $use_xmpp = true; if (isset($_POST['xmppo'])) $use_xmppo = true; @@ -163,6 +167,7 @@ if ($use_matrix) $message .= ", Matrix"; if ($use_fedi) $message .= ", Mastodon"; if ($use_git) $message .= ", Gitea"; + if ($use_nc) $message .= ", NextCloud"; if ($use_jitsi) $message .= ", Jitsi"; if ($use_xmpp) $message .= ", XMPP"; if ($use_xmppo) $message .= ", XMPP Onion"; @@ -181,6 +186,7 @@ unset($pass_file); } if ($use_git) $contents .= '~/bin/mkguser ' . escapeshellarg($username) . ' ' . escapeshellarg($password0) . ' ' . escapeshellarg($email) . "\n"; + if ($use_nc) $contents .= '~/bin/mknuser ' . escapeshellarg($username) . ' ' . escapeshellarg($password0) . "\n"; if ($use_jitsi) $contents .= '~/bin/mkxuser ' . escapeshellarg($username) . ' ' . escapeshellarg($password0) . " jitsi.vern.cc\n"; if ($use_xmpp) $contents .= '~/bin/mkxuser ' . escapeshellarg($username) . ' ' . escapeshellarg($password0) . " vern.cc\n"; if ($use_xmppo) $contents .= '~/bin/mkxuser ' . escapeshellarg($username) . ' ' . escapeshellarg($password0) . " vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion\n";