We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dbc664 commit 9918f08Copy full SHA for 9918f08
lib/Connection.js
@@ -117,6 +117,8 @@ Connection.prototype.connect = function() {
117
118
if (config.tls) {
119
tlsOptions = {};
120
+ // servername must be set to prevent issues with some imap server and openssl 1.1.1
121
+ tlsOptions.servername = config.host;
122
tlsOptions.host = config.host;
123
// Host name may be overridden the tlsOptions
124
for (var k in config.tlsOptions)
0 commit comments