mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-07 00:17:37 +08:00
21 lines
383 B
JavaScript
21 lines
383 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.'
|
|
});
|
|
}
|
|
};
|