Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix/close imap #86

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ var async = require('async');
module.exports = MailListener;

function MailListener(options) {
this.closeAtEnd = options.closeAtEnd;
this.markSeen = !! options.markSeen;
this.mailbox = options.mailbox || "INBOX";
if ('string' === typeof options.searchFilter) {
Expand Down Expand Up @@ -138,6 +139,11 @@ function parseUnread() {
f.once('error', function(err) {
self.emit('error', err);
});
if (self.closeAtEnd) {
f.once('end', function () {
self.imap.end();
});
}
}, function(err){
if( err ) {
self.emit('error', err);
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "mail-listener2",
"version": "0.3.1",
"description": "Mail listener library for node.js. Get notification when new email arrived.",
"name": "mail-listener-close",
"version": "0.0.2",
"description": "Mail listener library for node.js. Get emails and close after ends",
"dependencies": {
"imap": "~0.8.14",
"mailparser": "~0.4.6",
"async": "^0.9.0"
},
"repository": {
"type": "git",
"url": "git://github.com/chirag04/mail-listener2.git"
"url": "https://github.com/ivanrios/mail-listener-closet"
},
"homepage": "https://github.com/chirag04/mail-listener2",
"homepage": "https://github.com/ivanrios/mail-listener-close",
"keywords": [
"mail",
"job",
Expand All @@ -21,9 +21,9 @@
"email parser"
],
"author": {
"name": "Chirag Jain",
"email": "jain_chirag04@yahoo.com",
"url": "http://chiragjain.tumblr.com"
"name": "Ivan Rios",
"email": "ivanrios.a@gmail.com",
"url": "https://github.com/ivanrios"
},
"license": "MIT"
}
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# Overview

Mail-listener2 library for node.js. Get notification when new email arrived to inbox or when message metadata (e.g. flags) changes externally. Uses IMAP protocol.
Mail-listener-close library for node.js. Get notification when new email arrived to inbox or when message metadata (e.g. flags) changes externally. Uses IMAP protocol.

We are using these libraries: [node-imap](https://github.com/mscdex/node-imap), [mailparser](https://github.com/andris9/mailparser).

Heavily inspired by [mail-listener](https://github.com/circuithub/mail-listener).
Heavily inspired by [mail-listener2](https://github.com/chirag04/mail-listener2).

## Use

Install

`npm install mail-listener2`
`npm install mail-listener-close`


JavaScript Code:


```javascript

var MailListener = require("mail-listener2");
var MailListener = require("mail-listener-close");

var mailListener = new MailListener({
username: "imap-username",
Expand Down