File tree Expand file tree Collapse file tree 5 files changed +8
-12
lines changed
Expand file tree Collapse file tree 5 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -365,10 +365,8 @@ class ImapServerSwitchStream extends Stream.Transform {
365365 case '+' :
366366 case '*' : {
367367 timers_1 . clearTimeout ( this . idleResponsrTime ) ;
368- if ( / ^ R E C E N T $ | ^ F E T C H $ | ^ E X I S T S $ | ^ E X P U N G E $ / i. test ( cmdArray [ 2 ] ) ) {
368+ if ( / ^ R E C E N T $ | ^ E X I S T S $ / i. test ( cmdArray [ 2 ] ) || this . isWaitLogout ) {
369369 newSwitchRet = true ;
370- }
371- if ( / ^ R E C E N T $ / i. test ( cmdArray [ 2 ] ) || this . isWaitLogout ) {
372370 this . idleDoingDown ( ) ;
373371 }
374372 return callback ( ) ;
Original file line number Diff line number Diff line change @@ -446,11 +446,9 @@ class ImapServerSwitchStream extends Stream.Transform {
446446 case '+' :
447447 case '*' : {
448448 clearTimeout ( this . idleResponsrTime )
449- if ( / ^ R E C E N T $ | ^ F E T C H $ | ^ E X I S T S $ | ^ E X P U N G E $ / i. test ( cmdArray [ 2 ] ) ) {
450-
451- newSwitchRet = true
452- }
453- if ( / ^ R E C E N T $ / i. test ( cmdArray [ 2 ] ) || this . isWaitLogout ) {
449+
450+ if ( / ^ R E C E N T $ | ^ E X I S T S $ / i. test ( cmdArray [ 2 ] ) || this . isWaitLogout ) {
451+ newSwitchRet = true
454452 this . idleDoingDown ( )
455453
456454 }
Original file line number Diff line number Diff line change 1515 * limitations under the License.
1616 */
1717Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
18- const DEBUG = true ;
18+ const DEBUG = false ;
1919const port = 3000 ;
2020const path_1 = require ( "path" ) ;
2121const url_1 = require ( "url" ) ;
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- const DEBUG = true
17+ const DEBUG = false
1818const port = 3000
1919
2020import { join } from 'path'
Original file line number Diff line number Diff line change 11{
22 "name" : " conet" ,
3- "version" : " 3.1.1 " ,
3+ "version" : " 3.1.2 " ,
44 "license" : " MIT" ,
55 "description" : " CoNET platform" ,
66 "scripts" : {
4747 "icon" : " resources/qtgate"
4848 },
4949 "dmg" : {
50- "backgroundColor" : " #ffffff" ,
50+ "backgroundColor" : " #ffffff" ,
5151 "contents" : [
5252 {
5353 "x" : 110 ,
You can’t perform that action at this time.
0 commit comments