wildduck/imap-core/lib/commands/namespace.js
2017-03-05 23:45:50 +02:00

16 lines
264 B
JavaScript

'use strict';
module.exports = {
state: ['Authenticated', 'Selected'],
handler(command, callback) {
// fixed structre
this.send('* NAMESPACE (("" "/")) NIL NIL');
callback(null, {
response: 'OK'
});
}
};