You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
commands being parsed. However if the server is shutting down, commands such as HELO will still be accepted. Is there a way to add this feature, similar to how we can process onData, onRcptTo, etc? Then we could add if (this._closeTimeout) return setImmediate(() => callback(new Error('Server is shutting down'));.
The text was updated successfully, but these errors were encountered:
titanism
changed the title
If server is closing, then
If server is closing, then HELO commands should not be accepted
Jun 11, 2022
titanism
changed the title
If server is closing, then HELO commands should not be accepted
If server is closing, then HELO etc commands should not be accepted
Jun 11, 2022
Here we have
smtp-server/lib/smtp-connection.js
Line 406 in 2bd0975
if (this._closeTimeout) return setImmediate(() => callback(new Error('Server is shutting down'));
.The text was updated successfully, but these errors were encountered: