mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-08 00:48:52 +08:00
26 lines
800 B
JavaScript
26 lines
800 B
JavaScript
'use strict';
|
|
|
|
const config = require('wild-config');
|
|
|
|
const quotes = config.imap.quotes || [
|
|
'All dreams are but another reality. Never forget...',
|
|
'Oh boy, oh boy, oh boy...',
|
|
'Cut the dramatics, would yeh, and follow me!',
|
|
'Oh ho ho ho, duck hunters is da cwaziest peoples! Ha ha ha.',
|
|
'Well, that makes sense. Send a bird to catch a cat!',
|
|
'Piccobello!',
|
|
'No more Mr. Nice Duck!',
|
|
'Not bad for a duck from outer space.'
|
|
];
|
|
|
|
module.exports = {
|
|
handler(command) {
|
|
this.session.selected = this.selected = false;
|
|
this.state = 'Logout';
|
|
|
|
this.clearNotificationListener();
|
|
this.send('* BYE Logout requested');
|
|
this.send(command.tag + ' OK ' + quotes[Math.floor(Math.random() * quotes.length)]);
|
|
this.close();
|
|
}
|
|
};
|