mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-09 09:27:38 +08:00
14 lines
384 B
JavaScript
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();
|
|
});
|
|
}
|
|
};
|