mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-11 10:09:20 +08:00
17 lines
330 B
JavaScript
17 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'
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
};
|