From 5fd94f54871c0c462302778cd9dfa3247c312aac Mon Sep 17 00:00:00 2001 From: deepend Date: Mon, 25 Mar 2024 02:29:18 +0000 Subject: [PATCH] update includes/signup.php --- includes/signup.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/signup.php b/includes/signup.php index 338821f..6468eaa 100644 --- a/includes/signup.php +++ b/includes/signup.php @@ -15,7 +15,7 @@ $username = strtolower($username); // strip new line characters from the end $pubkey = trim($pubkey); -$from = 'From: www-data '; +$from = 'From: www-data '; $destination_addr = "newuser@thunix.net"; $subject = "New User Registration"; $mailbody = "A new user has tried to register. @@ -25,7 +25,7 @@ Email Address: $email Interest: $interest Pubkey: $pubkey"; -// In the future, here, we *should* be able to build a process that +// In the future, here, we *should* be able to build a process that // somehow auto-verifies the user, and instead of email, it'll kick off the new user process here $user_queue = '/dev/shm/userqueue'; @@ -36,7 +36,7 @@ if ( $tv == "tildeverse" ) { // Success! $success = 'success2'; - + // Check if username already taken if (posix_getpwnam($username)) { $success = 'success3';