mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-15 12:27:40 +08:00
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
'use strict';
|
|
|
|
const imapTools = require('../imap-tools');
|
|
|
|
module.exports = {
|
|
handler(command, callback) {
|
|
imapTools.sendCapabilityResponse(this);
|
|
|
|
callback(null, {
|
|
response: 'OK'
|
|
});
|
|
}
|
|
};
|