-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemailval.js
217 lines (184 loc) · 7.46 KB
/
emailval.js
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// $Id: emailval.js,v 1.7 2019/07/15 04:41:35 rswindell Exp $
/*******************************************************************************
Originally based on:
FILE: emailval.js v0.2
BY : Michael J. Ryan (http://tracker1.info/)
ON : 2005-02-14
TABS: 4 character tabstops.
--------------------------------------------------------------------------------
This is a simple telnet email validation script.
Installation instructions for emailval.js (requires SBBS 3.12a+)
STEP 1:
First, make sure that you have two Security Levels setup in order to use the
Email validation system.. one setting for new users (unvalidated) and another
that is intended for validated users.
STEP 2:
Edit ctrl/modopts.ini in a text editor and edit the following values in the
[emailval] section (create if it necessary) to match your pre-validation and
post-validation security levels.
level_before_validation (default: 50)
level_after_validation (default: 60)
flags1_after_validation (default: no change)
flags2_after_validation (default: no change)
flags3_after_validation (default: no change)
flags4_after_validation (default: no change)
exemptions_after_validation (default: no change)
restrictions_after_validation (default: no change)
expiration_after_validation (default: false)
expiration_days_after_validation (default: no change)
Note: the flags, exemptions, and restrictions .ini values support 'A' through
'Z' with the optional '+' (add) and '-' (remove) modifiers.
e.g. "+A-B" to add the A flag and remove the B flag
e.g. "AB" to change the flag set to just "AB"
Numeric values are supported for assignment (not modification).
e.g. 0 = no flags, 1 = A, 2 = B, 4 = C, 8 = D, etc.
STEP 3:
add the following to the [logon] section of your ctrl/modopts.ini file:
email_validation = true
or, if using logon.bin/src
EXEC "?emailval.js"
That's it!
*******************************************************************************/
// TODO: use a user property (see userprops.js) rather than the user's comment
// to store the secret
// Use the [emailval] section of ctlr/modopts.ini
// should match USER LEVEL settings for your BBS
// modify the next two modopts.ini options to match your BBS settings
var options = load("modopts.js", "emailval");
if(!options)
options = {};
if(options.level_before_validation === undefined)
options.level_before_validation = 50;
if(options.level_after_validation === undefined)
options.level_after_validation = 60;
//other constants, shouldn't need changing.
var cValChars='ACDEFHJKLMNPQRTUVWXY23456789!@#$%&*';
var cPrevalText = "telvalcode";
var cValCodeLen = 16;
//include SBBS Definition constants
require("sbbsdefs.js", 'NET_NONE');
//gets the validation code in use, if any, otherwise sets/returns a new code.
function GetValidationCode() {
var val = user.comment;
if (val.indexOf(cPrevalText) == -1)
return SetValidationCode(); //return a new code.
//parse/return the existing code.
return val.substr(val.indexOf(cPrevalText) + cPrevalText.length + 1, cValCodeLen);
}
//sets/returns a new validation code.
function SetValidationCode() {
var val='';
for (var i=0;i<cValCodeLen;i++)
val+=cValChars.substr(parseInt(Math.random() * cValChars.length), 1);
user.comment = cPrevalText + ":" + val;
return val;
}
function SendValidationEmail() {
var val = GetValidationCode(); //reuses the last code emailed, if available.
/* Generate and send email */
var hdrs = new Object();
hdrs.to=user.name;
hdrs.to_net_type=netaddr_type(user.netmail);
if(hdrs.to_net_type!=NET_NONE) {
hdrs.to_net_addr=user.netmail;
} else {
console.print("\r\n\1n\1h\1rCannot send validation code to new email address!\1n \r\n");
console.pause();
return;
}
hdrs.from=system.name;
hdrs.from_net_addr='sysop@'+system.inet_addr;
hdrs.from_net_type=NET_INTERNET;
hdrs.subject="Email validation for " + system.name;
var msgbase = new MsgBase("mail");
if(msgbase.open!=undefined && msgbase.open()==false) {
console.print("\r\n\1n\1h\1rERROR: \1y" + msgbase.last_error + "\1n \r\n");
console.pause();
msgbase.close();
return;
}
var msg="CODE: " + val + "\n\n";
msg += "You may now return to " + system.name + " and validate your account.";
if(!msgbase.save_msg(hdrs,msg)) {
console.print("\r\n\1n\1h\1rERROR: \1y" + msgbase.last_error + "\1n \r\n");
console.pause();
msgbase.close();
return;
}
msgbase.close();
console.print("\1n \r\n\1h\1bValidation code sent to \1n\1h" + user.netmail + "\1h\1b.\1n \r\n");
}
function ChangeEmailAddress() {
var val = SetValidationCode(); //resets the last code used.
console.print("\1n \r\b\1h\1bEnter your email address below.\r\n\1n\1b:\1n ");
user.netmail = console.getstr(user.netmail, 60, K_EDIT | K_LINE);
console.print("\r\n\1n \r\n");
}
function EnterValidationCode() {
var val = GetValidationCode(); //SHOULD get the validation code sent.
console.print("\1n \r\b\1h\1bEnter the validation code you were sent below.\r\n\1n\1b:\1n ");
var valu = console.getstr("", cValCodeLen, K_EDIT | K_UPPER | K_LINE);
if (val.toUpperCase() == valu.toUpperCase()) {
console.print("\r\n\1n \r\n\1hValidated!\1n \r\n\r\n");
user.security.level = options.level_after_validation;
if(options.flags1_after_validation !== undefined)
user.security.flags1 = options.flags1_after_validation;
if(options.flags2_after_validation !== undefined)
user.security.flags2 = options.flags2_after_validation;
if(options.flags3_after_validation !== undefined)
user.security.flags3 = options.flags3_after_validation;
if(options.flags4_after_validation !== undefined)
user.security.flags4 = options.flags4_after_validation;
if(options.exemptions_after_validation !== undefined)
user.security.exemptions = options.exemptions_after_validation;
if(options.restrictions_after_validation !== undefined)
user.security.restrictions = options.restrictions_after_validation;
if(options.expiration_after_validation == true) {
if(options.expiration_days_after_validation)
user.security.expiration_date = time() + options.expiration_days_after_validation * 24 * 60 * 60;
} else
user.security.expiration_date = 0;
user.comment = cPrevalText + ":" + val + " validated on " + (new Date());
} else {
console.print("\r\n\1n \r\n\1h\1rCode doesn't match!\1n \r\n");
}
}
function HangupNow() {
console.clear();
console.print("\1nGoodbye.\r\n");
bbs.hangup();
}
function CheckValidation() {
while (bbs.online && user.security.level == options.level_before_validation) {
console.clear();
//NOTE: could use bbs.menu("FILENAME") to display an ansi here.
console.print("\1h\1bTelnet validation for \1h\1w" + user.alias + " #" + user.number + "\r\n\r\n");
console.print("\1nYou have created an account with an email address that must be validated.\r\n")
console.print("\1n\1b[\1h\1wS\1n\1b] \1h\1bSend validation code to\1n\1c " + user.netmail + "\r\n");
console.print("\1n\1b[\1h\1wV\1n\1b] \1h\1bValidate your account\r\n");
console.print("\1n\1b[\1h\1wE\1n\1b] \1h\1bEdit/Update email address\r\n");
console.print("\1n\1b[\1h\1wH\1n\1b] \1h\1bHangup\r\n");
//display prompt.
console.print("\r\n\1h\1yYour selection? ");
var o = console.getkey().toUpperCase();
console.print("\1n\1h\1c" + o + "\r\n");
switch (o) {
case "S":
SendValidationEmail();
break;
case "V":
EnterValidationCode();
break;
case "E":
ChangeEmailAddress();
break;
case "H":
HangupNow();
return;
break;
default:
console.print("\1h\1yInvalid Selection.\r\n");
}
}
}
CheckValidation();