mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-07 00:17:37 +08:00
16 lines
330 B
JavaScript
16 lines
330 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
state: 'Selected',
|
|
|
|
handler(command, callback) {
|
|
this.session.selected = this.selected = false;
|
|
this.state = 'Authenticated';
|
|
|
|
this.updateNotificationListener(() => {
|
|
callback(null, {
|
|
response: 'OK'
|
|
});
|
|
});
|
|
}
|
|
};
|