-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmlmmj.php
More file actions
148 lines (123 loc) · 5.27 KB
/
Copy pathmlmmj.php
File metadata and controls
148 lines (123 loc) · 5.27 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
/* Copyright (C) 2004 Christoph Thiel <ct at kki dot org>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
// error_reporting(E_ALL);
require 'CaptchasDotNet.php';
class mlmmj
{
var $email;
var $mailinglist;
var $job;
var $redirect_success;
var $redirect_failure;
var $delimiter;
var $errors;
function is_email($string="") {
return filter_var($string, FILTER_VALIDATE_EMAIL);
}
function error($string="") {
$this->errors = TRUE;
die($string);
}
function __construct() {
// set mandatory vars...
$this->errors = FALSE;
$this->delimiter = "+";
if (!isset($_POST["email"]) &&
!isset($_POST["mailinglist"]) &&
!isset($_POST["job"]) &&
!isset($_POST["redirect_success"]) &&
!isset($_POST["redirect_failure"]) &&
!isset($_POST["random"]) &&
!isset($_POST["captcha"]))
{
$this->errors = TRUE;
if(isset($_POST["redirect_failure"])) {
header("Location: ".$_POST["redirect_failure"]);
exit;
}
else
die("An error occurred. Please check contrib/web/php-user/README for details.");
}
else {
$captchas = new CaptchasDotNet ('arf20', '7QOD8AEp5n9ib5bp',
'/tmp/captchasnet-random-strings','3600',
'abcdefghkmnopqrstuvwxyz','6',
'240','80','000088');
// Check the random string to be valid and return an error message
// otherwise.
if (!$captchas->validate ($_POST["random"]))
{
$this->error(
"The session key (random) does not exist, please go back and reload form.<br/>"
."In case you are the administrator of this page, "
."please check if random keys are stored correct.<br/>"
."See http://captchas.net/sample/php/ 'Problems with save mode'");
}
// Check, that the right CAPTCHA password has been entered and
// return an error message otherwise.
elseif (!$captchas->verify ($_POST["captcha"]))
{
$this->error("You entered the wrong password. Aren't you human? Please use back button and reload.");
}
if ($this->is_email($_POST["email"]))
$this->email = $_POST["email"];
else
$this->error("ERROR: email is not a valid email address.");
if ($this->is_email($_POST["mailinglist"]))
$this->mailinglist = $_POST["mailinglist"];
else
$this->error("ERROR: mailinglist is not a valid email address.");
$this->job = $_POST["job"];
if (!(($this->job == "subscribe") OR ($this->job == "unsubscribe"))) {
$this->error("ERROR: job unknown.");
}
$this->redirect_failure = $_POST["redirect_failure"];
$this->redirect_success = $_POST["redirect_success"];
}
// now we should try to go ahead and {sub,unsub}scribe... ;)
if(!$this->errors) {
// @ ^= char(64)
$to = str_replace(chr(64),$this->delimiter.$this->job.chr(64),$this->mailinglist);
$subject = $this->job." to ".$this->mailinglist;
$body = $this->job;
$addheader = "";
$addheader .= "Received: from ". $_SERVER["REMOTE_ADDR"]
." by ". $_SERVER["SERVER_NAME"]. " with HTTP;\r\n\t".date("r")."\n";
$addheader .= "X-Originating-IP: ".$_SERVER["REMOTE_ADDR"]."\n";
$addheader .= "X-Mailer: mlmmj-webinterface powered by PHP/". phpversion() ."\n";
$addheader .= "From: ".$this->email."\n";
$addheader .= "Cc: ".$this->email."\n";
if(!mail($to, $subject, $body, $addheader))
$this->error($this->job." failed.");
}
if($this->errors) {
//header("Location: ".$this->redirect_failure);
//exit;
die("Error: ".$this->errors);
} else {
header("Location: ".$this->redirect_success);
exit;
}
}
}
$mailinglist = new mlmmj;
?>