wildduck/imap-core/lib/commands/close.js
2017-12-10 01:19:50 +02:00

45 lines
1.1 KiB
JavaScript

'use strict';
module.exports = {
state: 'Selected',
handler(command, callback) {
// Check if EXPUNGE method is set
if (typeof this._server.onExpunge !== 'function') {
return callback(null, {
response: 'NO',
message: 'EXPUNGE not implemented'
});
}
// Just unselect if in read only mode
if (this.selected.readOnly) {
this.session.selected = this.selected = false;
this.state = 'Authenticated';
return callback(null, {
response: 'OK'
});
}
let mailbox = this.selected.mailbox;
this.session.selected = this.selected = false;
this.state = 'Authenticated';
this._server.onExpunge(
mailbox,
{
isUid: false,
silent: true
},
this.session,
() => {
// don't care if expunging succeeded, the mailbox is now closed anyway
callback(null, {
response: 'OK'
});
}
);
}
};