wildduck/imap-core/lib/commands/capability.js
2018-12-27 12:54:40 +02:00

13 lines
234 B
JavaScript

'use strict';
const imapTools = require('../imap-tools');
module.exports = {
handler(command, callback) {
imapTools.sendCapabilityResponse(this);
callback(null, {
response: 'OK'
});
}
};