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