mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-27 18:58:54 +08:00
Suppress ETIMEDOUT errors
This commit is contained in:
parent
283be10cc6
commit
0fc0caa0f1
1 changed files with 1 additions and 1 deletions
2
pop3.js
2
pop3.js
|
@ -323,7 +323,7 @@ module.exports = done => {
|
||||||
started = true;
|
started = true;
|
||||||
return done(err);
|
return done(err);
|
||||||
}
|
}
|
||||||
log.error('POP3', err);
|
log.error('POP3', err.message);
|
||||||
});
|
});
|
||||||
|
|
||||||
server.listen(config.pop3.port, config.pop3.host, () => {
|
server.listen(config.pop3.port, config.pop3.host, () => {
|
||||||
|
|
Loading…
Reference in a new issue