forked from EmailVerify/email-verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·155 lines (140 loc) · 5.04 KB
/
index.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
module.exports.verify = function (email, options, callback) {
// Handle optional parameters
if (!email || !options) {
throw new Error("Missing parameters in email-verify.verify()");
}
else if (typeof callback === 'undefined' && options) {
callback = options;
options = {};
}
// Default Values
if (options && !options.port) options.port = 25;
if (options && !options.sender) options.sender = "[email protected]";
if (options && !options.timeout) options.timeout = 0;
if (options && !options.fqdn) options.fqdn = "mail.example.org";
if (options && (!options.ignore || typeof options.ignore !== "number")) options.ignore = false;
var validator = require('email-validator');
if (!validator.validate(email)) {
callback(null, { success: false, info: "Invalid Email Structure", addr: email });
return false;
}
// Get the domain of the email address
var domain = email.split(/[@]/)[1];
var dns = require('dns');
if( options.dns ){
try {
if( Array.isArray(options.dns) ){
dns.setServers(options.dns);
}
else{
dns.setServers([options.dns]);
}
}
catch(e){
throw new Error("Invalid DNS Options");
}
}
// Get the MX Records to find the SMTP server
dns.resolveMx(domain, function(err,addresses) {
if (err || (typeof addresses === 'undefined')) {
callback(err, null);
}
else if (addresses && addresses.length <= 0) {
callback(null, { success: false, info: "No MX Records" });
}
else{
// Find the lowest priority mail server
var priority = 10000;
var index = 0;
for (var i = 0 ; i < addresses.length ; i++) {
if (addresses[i].priority < priority) {
priority = addresses[i].priority;
index = i;
}
}
var smtp = addresses[index].exchange;
var stage = 0;
var net = require('net');
var socket = net.createConnection(options.port, smtp);
var success = false;
var response = "";
var completed = false;
var calledback = false;
var ended = false;
if (options.timeout > 0) {
socket.setTimeout(options.timeout, function() {
if( !calledback ){
calledback = true;
callback(null,
{
success: false,
info: "Connection Timed Out",
addr: email
});
}
socket.destroy()
});
}
socket.on('data', function(data) {
response += data.toString();
completed = response.slice(-1) === '\n';
if (completed) {
switch(stage) {
case 0: if (response.indexOf('220') > -1 && !ended) {
// Connection Worked
socket.write("EHLO "+options.fqdn+"\r\n",function() { stage++; response = ""; });
}
else{
socket.end();
}
break;
case 1: if (response.indexOf('250') > -1 && !ended) {
// Connection Worked
socket.write("MAIL FROM:<"+options.sender+">\r\n",function() { stage++; response = ""; });
}
else{
socket.end();
}
break;
case 2: if (response.indexOf('250') > -1 && !ended) {
// MAIL Worked
socket.write("RCPT TO:<" + email + ">\r\n",function() { stage++; response = ""; });
}
else{
socket.end();
}
break;
case 3: if (response.indexOf('250') > -1 || (options.ignore && response.indexOf(options.ignore) > -1)) {
// RCPT Worked
success = true;
}
stage++;
response = "";
// close the connection cleanly.
if(!ended) socket.write("QUIT\r\n");
break;
case 4:
socket.end();
}
}
}).on('connect', function(data) {
}).on('error', function(err) {
ended = true;
if( !calledback ){
calledback = true;
callback( err, { success: false, info: null, addr: email });
}
}).on('end', function() {
ended = true;
if( !calledback ){
calledback = true;
callback(null, {
success: success,
info: (email + " is " + (success ? "a valid" : "an invalid") + " address"),
addr: email });
}
});
}
});
return true;
}