remove test; fix small bugs
parent
2965e3f889
commit
975c6916e5
@ -1,20 +0,0 @@
|
||||
var ImapConnection = require("../lib/imap").ImapConnection,
|
||||
imap = new ImapConnection({
|
||||
username: "pingkitnet@gmail.com",
|
||||
password: "ping5555566666",
|
||||
host: "imap.gmail.com",
|
||||
port: 993,
|
||||
secure: true
|
||||
});
|
||||
|
||||
|
||||
imap.connect(function() {
|
||||
imap.openBox('INBOX', false, function() {
|
||||
//find uid by seqno
|
||||
imap.search([["1:5", "8:10"]], function(e, results) {
|
||||
console.log(e, results);
|
||||
imap.logout();
|
||||
});
|
||||
})
|
||||
});
|
||||
|
Loading…
Reference in New Issue