mscdex
mscdex
Honestly, when I originally wrote this 6.5 years ago, it was more of a proof-of-concept to be able to send/receive RTP audio packets in node rather than be a real...
I'm not sure what the issue is here. `setKeepAlive(true)` should not cause such an error in normal operation. It's used to help detect dead connections. As long as you have...
`setKeepAlive()` is a TCP-level mechanism. In general you can close the connection at any time that you want.
Did you copy the node_modules from another system where the modules was originally installed? I'm betting it was copied either from a different OS (e.g. from macOS to Linux) or...
The UAC scenario isn't well tested/supported as the main focus/use case is UAS where you are accepting `INVITE`s.
Why is there a numeric value as a key? It doesn't seem like that is legit. Can you enable debugging with `debug: console.log` to show the line the parser is...
What version of node-imap are you using?
`ssh2` used to depend on `ssh2-streams` for the protocol implementation, now it does not.
The PEM format returned by `getPrivatePEM()` is for use with OpenSSL and is not currently supported by `parseKey()`, the reason being it's not a common format when dealing with SSH...
I'm not quite sure what kind of setup you have going on there, but on the `imap` connection object, you can listen for the `'error'` event for errors and the...