mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-13 12:58:00 +08:00
15 lines
263 B
JavaScript
15 lines
263 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = {
|
||
|
state: ['Authenticated', 'Selected'],
|
||
|
|
||
|
handler(command, callback) {
|
||
|
// fixed structre
|
||
|
this.send('* NAMESPACE (("" "/")) NIL NIL');
|
||
|
|
||
|
callback(null, {
|
||
|
response: 'OK'
|
||
|
});
|
||
|
}
|
||
|
};
|