wildduck/imap-core/lib/commands/setquota.js
2017-06-03 09:51:58 +03:00

25 lines
429 B
JavaScript

'use strict';
module.exports = {
state: ['Authenticated', 'Selected'],
schema: [
{
name: 'quotaroot',
type: 'string'
},
{
name: 'limits',
type: 'array'
}
],
handler(command, callback) {
callback(null, {
response: 'NO',
code: 'CANNOT',
message: 'Permission denied.'
});
}
};