mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-29 11:46:30 +08:00
limit pop3 log output
This commit is contained in:
parent
9c8682de7d
commit
5bda56c259
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class POP3Connection extends EventEmitter {
|
|||
tnx: 'send',
|
||||
cid: this._id,
|
||||
host: this.remoteAddress
|
||||
}, 'S:', payload.length < 128 ? payload : payload.susbtr(0, 128) + '... +' + (payload.length - 128) + ' B');
|
||||
}, 'S:', payload.length < 128 ? payload : payload.substr(0, 128) + '... +' + (payload.length - 128) + ' B');
|
||||
this.write(payload + '\r\n');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue