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 cd8c1fc commit 88d905fCopy full SHA for 88d905f
src/Connection/ImapConnection.php
@@ -66,7 +66,7 @@ public function connect(string $host, ?int $port = null, array $options = []): v
66
{
67
$transport = strtolower($options['encryption'] ?? '') ?: 'tcp';
68
69
- if (in_array($transport, ['ssl', 'tls'])) {
+ if (in_array($transport, ['ssl', 'tls'])) {
70
$port ??= 993;
71
} else {
72
$port ??= 143;
0 commit comments