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

14 lines
384 B
JavaScript

'use strict';
module.exports = {
handler(command) {
this.session.selected = this.selected = false;
this.state = 'Logout';
this.updateNotificationListener(() => {
this.send('* BYE Logout requested');
this.send(command.tag + ' OK All dreams are but another reality. Never forget...');
this.close();
});
}
};