mirror of
				https://github.com/nodemailer/wildduck.git
				synced 2025-10-31 00:18:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| module.exports = {
 | |
|     state: 'Selected',
 | |
| 
 | |
|     handler(command, callback) {
 | |
|         this.session.selected = this.selected = false;
 | |
|         this.state = 'Authenticated';
 | |
| 
 | |
|         callback(null, {
 | |
|             response: 'OK'
 | |
|         });
 | |
|     }
 | |
| };
 |