Merge pull request #5389 from nextcloud/enhancement/remove-imap-port

Remove port 585
This commit is contained in:
kesselb 2021-08-03 20:08:24 +02:00 коммит произвёл GitHub
Родитель 85408eac80 20056865cc
Коммит a0d7207720
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -70,7 +70,7 @@ class ImapConnectivityTester {
$users = [$users];
}
$ports = [143, 585, 993];
$ports = [143, 993];
$encryptionProtocols = ['ssl', 'tls', 'none'];
$hostPrefixes = ['', 'imap.'];
foreach ($hostPrefixes as $hostPrefix) {

Просмотреть файл

@ -66,10 +66,10 @@ class ImapConnectivityTesterTest extends TestCase {
$users = ['user'];
$password = 'mypassword';
$name = 'User';
$this->connectivityTester->expects($this->exactly(6))
$this->connectivityTester->expects($this->exactly(4))
->method('canConnect')
->willReturn(true);
$this->imapConnector->expects($this->exactly(18))
$this->imapConnector->expects($this->exactly(12))
->method('connect')
->with($email, $password, $name, $host, $this->anything(), $this->anything(), $users[0])
->willThrowException(new Horde_Imap_Client_Exception());