Skip to content
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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -749,6 +749,5 @@ TODO
Several things not yet implemented in no particular order:

* Support additional IMAP commands/extensions:
* NOTIFY (via NOTIFY extension -- RFC5465)
* STATUS addition to LIST (via LIST-STATUS extension -- RFC5819)
* QRESYNC (RFC5162)
50 changes: 32 additions & 18 deletions lib/Connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,14 @@ Connection.prototype.serverSupports = function(cap) {
return (this._caps && this._caps.indexOf(cap) > -1);
};

Connection.prototype.serverEnabled = function(cap) {
return (this._enabled && this._enabled.indexOf(cap) > -1);
};

Connection.prototype.escapeBox = function(str) {
return escape(this.serverEnabled("UTF8=ACCEPT") ? (''+str) : utf7.encode(''+str));
}

Connection.prototype.destroy = function() {
this._queue = [];
this._curReq = undefined;
Expand Down Expand Up @@ -325,7 +333,7 @@ Connection.prototype.append = function(data, options, cb) {
else
options.mailbox = this._box.name;
}
var cmd = 'APPEND "' + escape(utf7.encode(''+options.mailbox)) + '"';
var cmd = 'APPEND "' + this.escapeBox(options.mailbox) + '"';
if (options.flags) {
if (!Array.isArray(options.flags))
options.flags = [options.flags];
Expand Down Expand Up @@ -379,7 +387,7 @@ Connection.prototype.getBoxes = function(namespace, cb) {
namespace = '';
}

namespace = escape(utf7.encode(''+namespace));
namespace = this.escapeBox(namespace);

this._enqueue('LIST "' + namespace + '" "*"', cb);
};
Expand Down Expand Up @@ -417,7 +425,7 @@ Connection.prototype.openBox = function(name, readOnly, cb) {
}

name = ''+name;
var encname = escape(utf7.encode(name)),
var encname = this.escapeBox(name),
cmd = (readOnly ? 'EXAMINE' : 'SELECT'),
self = this;

Expand Down Expand Up @@ -478,16 +486,16 @@ Connection.prototype.closeBox = function(shouldExpunge, cb) {
};

Connection.prototype.addBox = function(name, cb) {
this._enqueue('CREATE "' + escape(utf7.encode(''+name)) + '"', cb);
this._enqueue('CREATE "' + this.escapeBox(name) + '"', cb);
};

Connection.prototype.delBox = function(name, cb) {
this._enqueue('DELETE "' + escape(utf7.encode(''+name)) + '"', cb);
this._enqueue('DELETE "' + this.escapeBox(name) + '"', cb);
};

Connection.prototype.renameBox = function(oldname, newname, cb) {
var encoldname = escape(utf7.encode(''+oldname)),
encnewname = escape(utf7.encode(''+newname)),
var encoldname = this.escapeBox(oldname),
encnewname = this.escapeBox(newname),
self = this;

this._enqueue('RENAME "' + encoldname + '" "' + encnewname + '"',
Expand All @@ -507,11 +515,11 @@ Connection.prototype.renameBox = function(oldname, newname, cb) {
};

Connection.prototype.subscribeBox = function(name, cb) {
this._enqueue('SUBSCRIBE "' + escape(utf7.encode(''+name)) + '"', cb);
this._enqueue('SUBSCRIBE "' + this.escapeBox(name) + '"', cb);
};

Connection.prototype.unsubscribeBox = function(name, cb) {
this._enqueue('UNSUBSCRIBE "' + escape(utf7.encode(''+name)) + '"', cb);
this._enqueue('UNSUBSCRIBE "' + this.escapeBox(name) + '"', cb);
};

Connection.prototype.getSubscribedBoxes = function(namespace, cb) {
Expand All @@ -520,7 +528,7 @@ Connection.prototype.getSubscribedBoxes = function(namespace, cb) {
namespace = '';
}

namespace = escape(utf7.encode(''+namespace));
namespace = this.escapeBox(namespace);

this._enqueue('LSUB "' + namespace + '" "*"', cb);
};
Expand All @@ -529,7 +537,7 @@ Connection.prototype.status = function(boxName, cb) {
if (this._box && this._box.name === boxName)
throw new Error('Cannot call status on currently selected mailbox');

boxName = escape(utf7.encode(''+boxName));
boxName = this.escapeBox(boxName);

var info = [ 'MESSAGES', 'RECENT', 'UNSEEN', 'UIDVALIDITY', 'UIDNEXT' ];

Expand Down Expand Up @@ -685,7 +693,7 @@ Connection.prototype._copy = function(which, uids, boxTo, cb) {
+ 'list');
}

boxTo = escape(utf7.encode(''+boxTo));
boxTo = this.escapeBox(boxTo);

this._enqueue(which + 'COPY ' + uids.join(',') + ' "' + boxTo + '"', cb);
};
Expand All @@ -710,7 +718,7 @@ Connection.prototype._move = function(which, uids, boxTo, cb) {
}

uids = uids.join(',');
boxTo = escape(utf7.encode(''+boxTo));
boxTo = escapebox(To);

this._enqueue(which + 'MOVE ' + uids + ' "' + boxTo + '"', cb);
} else if (this._box.permFlags.indexOf('\\Deleted') === -1
Expand Down Expand Up @@ -906,7 +914,7 @@ Connection.prototype._storeLabels = function(which, uids, labels, mode, cb) {
if (!Array.isArray(labels))
labels = [labels];
labels = labels.map(function(v) {
return '"' + escape(utf7.encode(''+v)) + '"';
return '"' + this.escapeBox(v) + '"';
}).join(' ');

uids = uids.join(',');
Expand Down Expand Up @@ -1023,7 +1031,7 @@ Connection.prototype.setQuota = function(quotaRoot, limits, cb) {
triplets += l + ' ' + limits[l];
}

quotaRoot = escape(utf7.encode(''+quotaRoot));
quotaRoot = this.escapeBox(quotaRoot);

this._enqueue('SETQUOTA "' + quotaRoot + '" (' + triplets + ')',
function(err, quotalist) {
Expand All @@ -1036,7 +1044,7 @@ Connection.prototype.setQuota = function(quotaRoot, limits, cb) {
};

Connection.prototype.getQuota = function(quotaRoot, cb) {
quotaRoot = escape(utf7.encode(''+quotaRoot));
quotaRoot = this.escapeBox(quotaRoot);

this._enqueue('GETQUOTA "' + quotaRoot + '"', function(err, quotalist) {
if (err)
Expand All @@ -1047,7 +1055,7 @@ Connection.prototype.getQuota = function(quotaRoot, cb) {
};

Connection.prototype.getQuotaRoot = function(boxName, cb) {
boxName = escape(utf7.encode(''+boxName));
boxName = this.escapeBox(boxName);

this._enqueue('GETQUOTAROOT "' + boxName + '"', function(err, quotalist) {
if (err)
Expand Down Expand Up @@ -1241,8 +1249,14 @@ Connection.prototype._resUntagged = function(info) {
this.namespaces = info.text;
else if (type === 'id')
this._curReq.cbargs.push(info.text);
else if (type === 'capability')
else if (type === 'capability') {
this._caps = info.text.map(function(v) { return v.toUpperCase(); });
if (this.serverSupports('ENABLE'))
this._enqueue('ENABLE UTF8=ACCEPT CONDSTORE', function() {});
if (this.serverSupports('NOTIFY'))
this._enqueue('NOTIFY SET (SELECTED-DELAYED (MESSAGENEW (UID) MESSAGEEXPUNGE))', function() {});
} else if (type === 'enabled')
this._enabled = info.text.map(function(v) { return v.toUpperCase(); });
else if (type === 'preauth')
this.state = 'authenticated';
else if (type === 'sort' || type === 'thread' || type === 'esearch')
Expand Down
3 changes: 2 additions & 1 deletion lib/Parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var CH_LF = 10,
RE_SEQNO = /^\* (\d+)/,
RE_LISTCONTENT = /^\((.*)\)$/,
RE_LITERAL = /\{(\d+)\}$/,
RE_UNTAGGED = /^\* (?:(OK|NO|BAD|BYE|FLAGS|ID|LIST|XLIST|LSUB|SEARCH|STATUS|CAPABILITY|NAMESPACE|PREAUTH|SORT|THREAD|ESEARCH|QUOTA|QUOTAROOT)|(\d+) (EXPUNGE|FETCH|RECENT|EXISTS))(?:(?: \[([^\]]+)\])?(?: (.+))?)?$/i,
RE_UNTAGGED = /^\* (?:(OK|NO|BAD|BYE|FLAGS|ID|LIST|XLIST|LSUB|SEARCH|STATUS|CAPABILITY|ENABLED|NAMESPACE|PREAUTH|SORT|THREAD|ESEARCH|QUOTA|QUOTAROOT)|(\d+) (EXPUNGE|FETCH|RECENT|EXISTS))(?:(?: \[([^\]]+)\])?(?: (.+))?)?$/i,
RE_TAGGED = /^A(\d+) (OK|NO|BAD) ?(?:\[([^\]]+)\] )?(.*)$/i,
RE_CONTINUE = /^\+(?: (?:\[([^\]]+)\] )?(.+))?$/i,
RE_CRLF = /\r\n/g,
Expand Down Expand Up @@ -222,6 +222,7 @@ Parser.prototype._resUntagged = function() {
if (type === 'flags'
|| type === 'search'
|| type === 'capability'
|| type === 'enabled'
|| type === 'sort') {
if (m[5]) {
if (type === 'search' && RE_SEARCH_MODSEQ.test(m[5])) {
Expand Down
66 changes: 66 additions & 0 deletions test/test-connection-notify-utf8accept.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
var assert = require('assert'),
net = require('net'),
Imap = require('../lib/Connection'),
result;

var CRLF = '\r\n';

var RESPONSES = [
['* CAPABILITY IMAP4rev1',
'A0 OK Thats all she wrote!',
''
].join(CRLF),
['* CAPABILITY IMAP4rev1 ENABLE NOTIFY',
'A1 OK authenticated (Success)',
''
].join(CRLF),
['* ENABLED',
'A2 OK Success',
''
].join(CRLF),
['A3 OK Success',
''
].join(CRLF),
['* LIST (\\Noselect) "/" "/"',
'* LIST () "/" "भारत"',
'* LIST () "/" "&-"',
'A4 OK Success',
''
].join(CRLF),
['A5 OK Success',
''
].join(CRLF)
];

var srv = net.createServer(function(sock) {
sock.write('* OK asdf\r\n');
var buf = '', lines;
sock.on('data', function(data) {
buf += data.toString('utf8');
if (buf.indexOf(CRLF) > -1) {
lines = buf.split(CRLF);
buf = lines.pop();
lines.forEach(function() {
sock.write(RESPONSES.shift());
});
}
});
});
srv.listen(0, '127.0.0.1', function() {
var port = srv.address().port;
var imap = new Imap({
user: 'foo',
password: 'bar',
host: '127.0.0.1',
port: port,
keepalive: false,
debug: function(info) {
console.log('Debug:', info);
}
});
imap.on('ready', function() {
srv.close();
imap.end();
});
imap.connect();
});