Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
This commit is contained in:
Skylar "The Cobra" Widulski 2023-08-26 05:09:32 -04:00
parent cd74eadfcd
commit 50492183b2
Signed by: cobra
GPG Key ID: 4FD8F812083FF6F9
1 changed files with 11 additions and 10 deletions

View File

@ -26,17 +26,18 @@
return $str;
}
$err = $email = $code_err = '';
if (!empty($_GET['email']))
if (filter_var(sanitize($_GET['email']), FILTER_VALIDATE_EMAIL))
if (preg_match("/^" . preg_quote($_GET['email']) . "$/", file_get_contents("/var/spool/list")) !== 1)
if ($_GET['action'] == "sub")
if (empty($_GET['action']))
if (!empty($_GET['email']))
if (filter_var(sanitize($_GET['email']), FILTER_VALIDATE_EMAIL))
if (preg_match("/^" . preg_quote($_GET['email']) . "$/", file_get_contents("/var/spool/list")) !== 1)
if ($_GET['action'] == "sub")
$email = sanitize($_GET['email']);
else $err = "E-mail not in list";
else if ($_GET['action'] == "unsub")
$email = sanitize($_GET['email']);
else $err = "E-mail not in list";
else if ($_GET['action'] == "unsub")
$email = sanitize($_GET['email']);
else $err = "E-mail already in list";
else $err = "Invalid E-mail";
else $err = "E-mail is required";
else $err = "E-mail already in list";
else $err = "Invalid E-mail";
else $err = "E-mail is required";
$filename = "/tmp/list-code-" . $email;