Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Andris Reinman committed Apr 24, 2012
1 parent 5bb1b94 commit a415685
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,16 @@
This is a work in progress IMAP client for node.js. Currently it does barely nothing
so if you need something reliable, check out
[/mscdex/node-imap](https://github.com/mscdex/node-imap).


The project consists of two major parts

* IMAP command parser (token based, more or less complete)
* IMAP control for accessing mailboxes (under construction)

## Installation

Install from npm and run the tests (currently there are tests only for the parser)

npm install -dev inbox
npm test inbox
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "simpleimap",
"name": "inbox",
"version": "0.1.0",
"author" : "Andris Reinman",
"maintainers":[
Expand Down
2 changes: 1 addition & 1 deletion tools/clientplayground.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ imap.on("mailbox", function(mailbox){
console.log("INBOX")
console.log(mailbox)
console.log(imap.getMailboxList());
imap._send("UID FETCH 1:* ALL");
imap._send("UID FETCH 1:* ENVELOPE");
});


Expand Down

0 comments on commit a415685

Please sign in to comment.