wildduck/imap-core/lib/commands/logout.js

15 lines
384 B
JavaScript
Raw Normal View History

2017-03-06 05:45:50 +08:00
'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();
});
}
};