forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.php
64 lines (51 loc) · 1.37 KB
/
mod.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/*
This page supports the PHP.net automoderation system
with enabling users to confirm their emails via the web.
This script only need to run on the primary php.net box.
*/
$_SERVER['BASE_PAGE'] = 'mod.php';
include_once __DIR__ . '/include/prepend.inc';
site_header("Email confirmation", ["current" => "community"]);
// Only run on main php.net box.
if (!is_primary_site()) {
echo <<<ERROR
<h1>Email confirmation failed</h1>
<p class="formerror">
This server is not capable of handling email confirmations.
</p>
ERROR;
site_footer();
exit;
}
// These sites are handled by automoderation
$sites = ["php.net", "lists.php.net"];
// Get data from the URL
[$none, $site, $token, $sender] = explode("/", $_SERVER["PATH_INFO"]);
// Error in input data
if ($sender == "" || strlen($token) < 32 || !isset($sites[$site])) {
echo <<<ERROR
<h1>Email confirmation failed</h1>
<p class="formerror">
Sorry, the URL is incomplete. Please verify that you used the
complete URL even if it spans multiple lines.
</p>
ERROR;
}
// Data OK, send confirmation mail
else {
mail(
"confirm@" . $sites[$site],
"confirm",
"[confirm: $token $sender]",
"From: $sender"
);
echo <<<THANKS
<h1>Email confirmation successful</h1>
<p>
Thanks for confirming your email address. No further
action is required on your part.
</p>
THANKS;
}
site_footer();